From e2fd3554b94a1d49cf2f47aacdd35747a2aa461a Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Sat, 1 Oct 2022 09:26:00 -0700 Subject: [PATCH 01/17] Ignore output files in gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 7cb866c..6ab4cfe 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,7 @@ MANIFEST # Test Coverage report .coverage + +# Output files +*.csv +*.json From 9ae4fcf2c5d0d4c54c20fce2ccddec6da3f9d9f2 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Sat, 1 Oct 2022 09:43:05 -0700 Subject: [PATCH 02/17] Add opensea local caching --- open_rarity/resolver/opensea_api_helpers.py | 176 ++++++++++++++++---- 1 file changed, 142 insertions(+), 34 deletions(-) diff --git a/open_rarity/resolver/opensea_api_helpers.py b/open_rarity/resolver/opensea_api_helpers.py index 3a18547..5f75731 100644 --- a/open_rarity/resolver/opensea_api_helpers.py +++ b/open_rarity/resolver/opensea_api_helpers.py @@ -1,3 +1,4 @@ +import json import logging import math @@ -163,6 +164,76 @@ def opensea_traits_to_token_metadata(asset_traits: list) -> TokenMetadata: ) +def get_all_collection_tokens( + slug: str, + total_supply: int, + batch_size: int = 30, + use_cache: bool = True, + cache_file_prefix: str | None = "cached_os_collection_data", +) -> list[Token]: + """Returns a list of Token's with all metadata filled, either populated + from Opensea API or fetched from a local cache file. + """ + cached_filename = f"{cache_file_prefix}-{slug}.json" + tokens: list[Token] = [] + # For performance optimization and re-runs for the same collection, + # we optionally check if an already cached file for the collection + # data exists since they tend to be static. + if use_cache: + try: + tokens = read_collection_data_from_file( + filename=cached_filename, + expected_supply=total_supply, + slug=slug, + ) + except FileNotFoundError: + pass + except Exception: + logger.exception( + "Failed to parse valid cache data for %s from %s", + slug, + cached_filename, + exc_info=True, + ) + + # This means either cache file didn't exist or had incomplete data + # So re-fetch from opensea + if len(tokens) != total_supply: + tokens = [] + num_batches = math.ceil(total_supply / batch_size) + initial_token_id = 0 + + # Returns a list of `batch_size` token IDs, such that no token ID + # can exceed `max_token_id` (in which case len(return_value) < `batch_size`) + def get_token_ids( + batch_id: int, max_token_id: int = total_supply - 1 + ) -> list[int]: + token_id_start = initial_token_id + (batch_id * batch_size) + token_id_end = int( + min(token_id_start + batch_size - 1, max_token_id) + ) + return list(range(token_id_start, token_id_end + 1)) + + for batch_id in range(num_batches): + token_ids = get_token_ids(batch_id) + tokens_batch = get_tokens_from_opensea( + opensea_slug=slug, + token_ids=token_ids, + ) + + tokens.extend(tokens_batch) + + assert len(tokens) == total_supply + + # Write to local disk the fetched data for later caching + if use_cache: + write_collection_data_to_file( + filename=cached_filename, slug=slug, tokens=tokens + ) + + return tokens + + def get_tokens_from_opensea( opensea_slug: str, token_ids: list[int] ) -> list[Token]: @@ -232,6 +303,7 @@ def get_tokens_from_opensea( def get_collection_with_metadata_from_opensea( opensea_collection_slug: str, + use_cache: bool, ) -> CollectionWithMetadata: """Fetches collection metadata with OpenSea endpoint and API key and stores it in the Collection object with 0 tokens. @@ -257,17 +329,23 @@ def get_collection_with_metadata_from_opensea( raise ERCStandardError( "We currently do not support non EVM standards at the moment" ) + total_supply = int(stats["total_supply"]) + tokens = get_all_collection_tokens( + slug=opensea_collection_slug, + total_supply=total_supply, + use_cache=use_cache, + ) collection = Collection( name=collection_obj["name"], attributes_frequency_counts=collection_obj["traits"], - tokens=[], + tokens=tokens, ) collection_with_metadata = CollectionWithMetadata( collection=collection, contract_addresses=[contract["address"] for contract in contracts], - token_total_supply=int(stats["total_supply"]), + token_total_supply=total_supply, opensea_slug=opensea_collection_slug, ) @@ -275,20 +353,28 @@ def get_collection_with_metadata_from_opensea( def get_collection_from_opensea( - opensea_collection_slug: str, batch_size: int = 30 + slug: str, + batch_size: int = 30, + use_cache: bool = True, + cache_file_prefix: str | None = "cached_os_collection_data", ) -> Collection: """Fetches collection and token data with OpenSea endpoint and API key - and stores it in the Collection object + and stores it in the Collection object. If local cache file is used and + contains all collection token data, that data will be used instead. Parameters ---------- - opensea_collection_slug : str + slug : str collection slug on opensea's system batch_size: int batch size for the opensea API requests maximum value is 30 + use_cache: bool + set to True to look for a local cached version of the collection and token + metadata fetched from opensea to prevent re-fetching. + Returns ------- Collection @@ -296,9 +382,7 @@ def get_collection_from_opensea( """ # Fetch collection metadata - collection_obj = fetch_opensea_collection_data( - slug=opensea_collection_slug - ) + collection_obj = fetch_opensea_collection_data(slug=slug) contracts = collection_obj["primary_asset_contracts"] interfaces = set([contract["schema_name"] for contract in contracts]) stats = collection_obj["stats"] @@ -309,35 +393,59 @@ def get_collection_from_opensea( total_supply = int(stats["total_supply"]) - # Fetch token metadata - tokens: list[Token] = [] - num_batches = math.ceil(total_supply / batch_size) - initial_token_id = 0 - - # Returns a list of `batch_size` token IDs, such that no token ID - # can exceed `max_token_id` (in which case len(return_value) < `batch_size`) - def get_token_ids( - batch_id: int, max_token_id: int = total_supply - 1 - ) -> list[int]: - token_id_start = initial_token_id + (batch_id * batch_size) - token_id_end = int(min(token_id_start + batch_size - 1, max_token_id)) - return list(range(token_id_start, token_id_end + 1)) - - for batch_id in range(num_batches): - token_ids = get_token_ids(batch_id) - tokens_batch = get_tokens_from_opensea( - opensea_slug=opensea_collection_slug, token_ids=token_ids + tokens = get_all_collection_tokens( + slug=slug, + total_supply=total_supply, + batch_size=batch_size, + use_cache=use_cache, + cache_file_prefix=cache_file_prefix, + ) + + return Collection(name=collection_obj["name"], tokens=tokens) + + +def write_collection_data_to_file( + filename: str, slug: str, tokens: list[Token] +): + json_output = [] + for token in tokens: + # Note: We assume EVM token here + json_output.append( + { + "contract_address": token.token_identifier.contract_address, + "token_id": token.token_identifier.token_id, + "metadata_dict": token.metadata.to_attributes(), + } ) + with open(filename, "w") as jsonfile: + json.dump(json_output, jsonfile, indent=4) - tokens.extend(tokens_batch) - collection = Collection( - name=collection_obj["name"], - attributes_frequency_counts=collection_obj["traits"], - tokens=tokens, - ) - - return collection +def read_collection_data_from_file( + filename: str, expected_supply: int, slug: str +) -> list[Token]: + tokens = [] + with open(filename) as jsonfile: + tokens_data = json.load(jsonfile) + if len(tokens_data) != expected_supply: + logger.warning( + "Not using data cache file for %s collection since file " + "data length %s does not match total supply %s", + slug, + len(tokens_data), + expected_supply, + ) + else: + for token_data in tokens_data: + assert token_data["metadata_dict"] + tokens.append( + Token.from_erc721( + contract_address=token_data["contract_address"], + token_id=token_data["token_id"], + metadata_dict=token_data["metadata_dict"], + ) + ) + return tokens # NFT metadata standard type definitions described here: From fd66cb89b3170cabe1773e925e653e0e9539cc8a Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Mon, 3 Oct 2022 15:34:40 -0700 Subject: [PATCH 03/17] Fixes - score real collection works --- open_rarity/models/token_metadata.py | 14 +++++++ open_rarity/resolver/opensea_api_helpers.py | 45 ++++++++++++++++----- scripts/score_real_collections.py | 1 - 3 files changed, 49 insertions(+), 11 deletions(-) diff --git a/open_rarity/models/token_metadata.py b/open_rarity/models/token_metadata.py index 674324e..12168de 100644 --- a/open_rarity/models/token_metadata.py +++ b/open_rarity/models/token_metadata.py @@ -74,6 +74,9 @@ def __init__(self, name: AttributeName, value: int): self.value = value +Attribute = StringAttribute | NumericAttribute | DateAttribute + + @dataclass class TokenMetadata: """Class represents EIP-721 or EIP-1115 compatible metadata structure @@ -176,3 +179,14 @@ class attribute type numeric_attributes=numeric_attributes, date_attributes=date_attributes, ) + + def to_attributes(self) -> dict[AttributeName, Any]: + """Returns a dictionary of all attributes in this metadata object.""" + attributes = {} + for attr in self.string_attributes.values(): + attributes[attr.name] = attr.value + for attr in self.numeric_attributes.values(): + attributes[attr.name] = attr.value + for attr in self.date_attributes.values(): + attributes[attr.name] = datetime.fromtimestamp(attr.value) + return attributes diff --git a/open_rarity/resolver/opensea_api_helpers.py b/open_rarity/resolver/opensea_api_helpers.py index 5f75731..d53b576 100644 --- a/open_rarity/resolver/opensea_api_helpers.py +++ b/open_rarity/resolver/opensea_api_helpers.py @@ -186,7 +186,13 @@ def get_all_collection_tokens( expected_supply=total_supply, slug=slug, ) + logger.debug( + f"Read {len(tokens)} tokens from cache file: {cached_filename}" + ) except FileNotFoundError: + logger.warning( + f"No opensea cache file found for {slug}: {cached_filename}" + ) pass except Exception: logger.exception( @@ -196,9 +202,8 @@ def get_all_collection_tokens( exc_info=True, ) - # This means either cache file didn't exist or had incomplete data - # So re-fetch from opensea - if len(tokens) != total_supply: + # This means either cache file didn't exist or did not have data + if len(tokens) == 0: tokens = [] num_batches = math.ceil(total_supply / batch_size) initial_token_id = 0 @@ -223,10 +228,31 @@ def get_token_ids( tokens.extend(tokens_batch) - assert len(tokens) == total_supply + # It's possible for some collections to start at 1 instead of 0, + # so attempt fetch of more tokens if they exist + token_id = total_supply + while True: + try: + extra_tokens = get_tokens_from_opensea( + opensea_slug=slug, + token_ids=[token_id], + ) + if len(extra_tokens) == 0: + break + tokens.extend(extra_tokens) + token_id += 1 + except Exception: + break + + if len(tokens) > total_supply: + logger.warning( + f"Warning: Found more tokens ({len(tokens)}) than " + "token supply ({total_supply})" + ) # Write to local disk the fetched data for later caching if use_cache: + logger.info(f"Writing token data to cache file: {cached_filename}") write_collection_data_to_file( filename=cached_filename, slug=slug, tokens=tokens ) @@ -386,13 +412,12 @@ def get_collection_from_opensea( contracts = collection_obj["primary_asset_contracts"] interfaces = set([contract["schema_name"] for contract in contracts]) stats = collection_obj["stats"] - if not interfaces.issubset(set(["ERC721", "ERC1155"])): + if not interfaces.issubset(set(["ERC721"])): raise ERCStandardError( - "We currently do not support non EVM standards at the moment" + "We currently do not support non ERC721 standards at the moment" ) total_supply = int(stats["total_supply"]) - tokens = get_all_collection_tokens( slug=slug, total_supply=total_supply, @@ -429,13 +454,13 @@ def read_collection_data_from_file( tokens_data = json.load(jsonfile) if len(tokens_data) != expected_supply: logger.warning( - "Not using data cache file for %s collection since file " - "data length %s does not match total supply %s", + "Warning: Data cache file for %s collection has data for %s tokens " + "but total supply fetched from opensea is %s", slug, len(tokens_data), expected_supply, ) - else: + if len(tokens_data) > 0: for token_data in tokens_data: assert token_data["metadata_dict"] tokens.append( diff --git a/scripts/score_real_collections.py b/scripts/score_real_collections.py index 96e3ea5..6f53038 100644 --- a/scripts/score_real_collections.py +++ b/scripts/score_real_collections.py @@ -54,7 +54,6 @@ def score_collection_and_output_results(slug: str, output_filename: str): score = rarity_token.score json_output[token_id] = {"rank": rank, "score": score} csv_rows.append([token_id, rank, score]) - print(f"\tToken {token_id} has rank {rank} score: {score}") # Write to json if output_filename.endswith(".json"): From ef5f7916bd731f0ac5bcb7a42799e9ab48617b73 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Mon, 3 Oct 2022 15:38:00 -0700 Subject: [PATCH 04/17] Small fixes to script --- scripts/score_real_collections.py | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/scripts/score_real_collections.py b/scripts/score_real_collections.py index 6f53038..057f85d 100644 --- a/scripts/score_real_collections.py +++ b/scripts/score_real_collections.py @@ -31,10 +31,21 @@ help="Determines output file type. Either 'json' or 'csv'.", ) +parser.add_argument( + "--use_cache", + dest="use_cache", + default=True, + type=bool, + help="Set to false to turn off cache. Otherwise will check + store into " + "a local file the cached token trait data", +) + -def score_collection_and_output_results(slug: str, output_filename: str): +def score_collection_and_output_results( + slug: str, output_filename: str, use_cache: bool +): # Get collection - collection = get_collection_from_opensea(slug) + collection = get_collection_from_opensea(slug, use_cache=use_cache) print( f"Created collection {slug} with {collection.token_total_supply} tokens" ) @@ -98,9 +109,10 @@ def score_collection_and_output_results(slug: str, output_filename: str): `python -m scripts.score_real_collections boredapeyachtclub proof-moonbirds` """ args = parser.parse_args() - print(f"Scoring collections: {args.slugs}") + use_cache = args.use_cache + print(f"Scoring collections: {args.slugs} with {use_cache=}") print( - f"Output file prefix: {args.filename_prefix} with type {args.filetype}" + f"Output file prefix: {args.filename_prefix} with type .{args.filetype}" ) files = [] @@ -110,6 +122,7 @@ def score_collection_and_output_results(slug: str, output_filename: str): score_collection_and_output_results( slug=slug, output_filename=output_filename, + use_cache=use_cache, ) print(f"Outputted results to: {output_filename}") files.append(output_filename) From d34f15558a826e1447cfa5681faab7bcfeb1c703 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Mon, 3 Oct 2022 15:53:06 -0700 Subject: [PATCH 05/17] fix argparse --- open_rarity/resolver/opensea_api_helpers.py | 4 ++++ scripts/score_real_collections.py | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/open_rarity/resolver/opensea_api_helpers.py b/open_rarity/resolver/opensea_api_helpers.py index d53b576..2201ba2 100644 --- a/open_rarity/resolver/opensea_api_helpers.py +++ b/open_rarity/resolver/opensea_api_helpers.py @@ -201,6 +201,10 @@ def get_all_collection_tokens( cached_filename, exc_info=True, ) + else: + logger.info( + f"Not using cache for fetching collection tokens for: {slug}" + ) # This means either cache file didn't exist or did not have data if len(tokens) == 0: diff --git a/scripts/score_real_collections.py b/scripts/score_real_collections.py index 057f85d..5dbf5b6 100644 --- a/scripts/score_real_collections.py +++ b/scripts/score_real_collections.py @@ -32,12 +32,12 @@ ) parser.add_argument( - "--use_cache", + "--cache", + action=argparse.BooleanOptionalAction, dest="use_cache", default=True, - type=bool, - help="Set to false to turn off cache. Otherwise will check + store into " - "a local file the cached token trait data", + help="Determines whether we force refetch all Token and trait data " + "from Opensea or read data from a local cache file", ) From d5b6f3aa239cfc41b5bc436d5274e30c07d2dc2c Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Mon, 3 Oct 2022 22:33:08 -0700 Subject: [PATCH 06/17] Add caching for external providers --- open_rarity/resolver/opensea_api_helpers.py | 10 +- .../external_rarity_provider.py | 274 ++++++++++++++---- open_rarity/resolver/testset_resolver.py | 104 ++++--- 3 files changed, 293 insertions(+), 95 deletions(-) diff --git a/open_rarity/resolver/opensea_api_helpers.py b/open_rarity/resolver/opensea_api_helpers.py index 2201ba2..3cab1bf 100644 --- a/open_rarity/resolver/opensea_api_helpers.py +++ b/open_rarity/resolver/opensea_api_helpers.py @@ -251,7 +251,7 @@ def get_token_ids( if len(tokens) > total_supply: logger.warning( f"Warning: Found more tokens ({len(tokens)}) than " - "token supply ({total_supply})" + f"token supply ({total_supply})" ) # Write to local disk the fetched data for later caching @@ -342,6 +342,10 @@ def get_collection_with_metadata_from_opensea( ---------- opensea_collection_slug : str collection slug on opensea's system + use_cache: bool + If true, reads the token trait data from local cache file if it exists, or + fetches from opensea api and stores the data in a local cached file for + future reuse. Returns ------- @@ -375,7 +379,7 @@ def get_collection_with_metadata_from_opensea( collection_with_metadata = CollectionWithMetadata( collection=collection, contract_addresses=[contract["address"] for contract in contracts], - token_total_supply=total_supply, + token_total_supply=max(total_supply, collection.token_total_supply), opensea_slug=opensea_collection_slug, ) @@ -446,7 +450,7 @@ def write_collection_data_to_file( "metadata_dict": token.metadata.to_attributes(), } ) - with open(filename, "w") as jsonfile: + with open(filename, "w+") as jsonfile: json.dump(json_output, jsonfile, indent=4) diff --git a/open_rarity/resolver/rarity_providers/external_rarity_provider.py b/open_rarity/resolver/rarity_providers/external_rarity_provider.py index eb5f85c..8f47abb 100644 --- a/open_rarity/resolver/rarity_providers/external_rarity_provider.py +++ b/open_rarity/resolver/rarity_providers/external_rarity_provider.py @@ -1,3 +1,5 @@ +from collections import defaultdict +import json import logging import requests @@ -77,7 +79,7 @@ def fetch_trait_sniper_rank_for_evm_token( def fetch_rarity_sniffer_rank_for_collection( contract_address: str, -) -> dict[int, RarityData]: +) -> dict[int, int]: """Fetches all available tokens and ranks for a given collection from rarity sniffer. Only usable for EVM tokens and collections for a single @@ -89,7 +91,7 @@ def fetch_rarity_sniffer_rank_for_collection( Returns ------- - dict[int, RarityData]: Dictionary of token ID # to the RarityData + dict[int, int]: Dictionary of token ID # to the rank Raises ------ @@ -121,14 +123,12 @@ def fetch_rarity_sniffer_rank_for_collection( ) response.raise_for_status() - tokens_to_rarity_data: dict[int, RarityData] = { - int(nft["id"]): RarityData( - provider=RankProvider.RARITY_SNIFFER, rank=nft["positionId"] - ) + tokens_to_ranks: dict[int, int] = { + int(nft["id"]): int(rank=nft["positionId"]) for nft in response.json()["data"] } - return tokens_to_rarity_data + return tokens_to_ranks def get_rarity_sniper_slug(opensea_slug: str) -> str: @@ -161,17 +161,118 @@ def fetch_rarity_sniper_rank_for_evm_token( class ExternalRarityProvider: + # Cached file will have format: + # "external_{provider_name}_cached_ranks-{collection slug}.json" + # The data must be a dictionary of to + CACHE_FILENAME_FORMAT: str = "external_%s_cached_ranks-%s.json" # Cache of rarity sniffer ranking data for given contracts # since rarity sniffer API does a bulk reques for an entire collection - # Key = Contract Address - # Value = Token ID -> RarityData - rarity_sniffer_state: dict[str, dict[int, RarityData]] = {} + # Key = Contract Address (str) + # Value = Token ID (str) -> Rank (int) + rarity_sniffer_state: dict[str, dict[str, int]] = {} + + # Slug -> {token_id (str)->rank (int)} + _trait_sniper_external_rank_cache: dict[str, dict[str, int]] = defaultdict( + dict + ) + _rarity_sniffer_external_rank_cache: dict[ + str, dict[str, int] + ] = defaultdict(dict) + _rarity_sniper_external_rank_cache: dict[ + str, dict[str, int] + ] = defaultdict(dict) + + def cache_filename(self, rank_provider: RankProvider, slug: str) -> str: + rank_name = rank_provider.name.lower() + return self.CACHE_FILENAME_FORMAT % (rank_name, slug) + + def write_cache_to_file(self, slug: str, rank_provider: RankProvider): + cache_data = self._get_provider_rank_cache( + slug=slug, rank_provider=rank_provider + ) + cache_filename = self.cache_filename( + rank_provider=rank_provider, slug=slug + ) + logger.debug( + f"Writing external rank data ({rank_provider}) to cache for: {slug} " + f"to file: {cache_filename}. Contains {len(cache_data)} token ranks." + ) + with open(cache_filename, "w+") as jsonfile: + json.dump(cache_data, jsonfile, indent=4) + + def _get_provider_rank_cache( + self, slug: str, rank_provider: RankProvider + ) -> dict[str, int]: + if rank_provider == RankProvider.TRAITS_SNIPER: + return self._trait_sniper_external_rank_cache[slug] + if rank_provider == RankProvider.RARITY_SNIFFER: + return self._rarity_sniffer_external_rank_cache[slug] + if rank_provider == RankProvider.RARITY_SNIPER: + return self._rarity_sniper_external_rank_cache[slug] + raise Exception(f"Unknown external rank provider: {rank_provider}") + + def _get_cached_rank( + self, slug: str, rank_provider: RankProvider, token_id: int + ) -> int | None: + return self._get_provider_rank_cache(slug, rank_provider).get( + str(token_id), None + ) + + def _is_cache_loaded(self, slug: str, rank_provider: RankProvider): + return ( + len( + self._get_provider_rank_cache( + rank_provider=rank_provider, slug=slug + ) + ) + > 0 + ) + + def _load_cache_from_file( + self, + slug: str, + rank_provider: RankProvider, + force_reload: bool = False, + ) -> bool: + # Short-circuit if cache is already loaded, unless we want to force a reload + if not force_reload and self._is_cache_loaded(slug, rank_provider): + return False + + cache_filename = self.cache_filename( + rank_provider=rank_provider, slug=slug + ) + try: + with open(cache_filename) as jsonfile: + external_rank_data = json.load(jsonfile) + logger.debug( + f"Successfully loaded cached external ranks from: {cache_filename}: " + f"Found {len(external_rank_data)} token ranks" + ) + except FileNotFoundError: + logger.warning(f"Cache file does not exist: {cache_filename}.") + return False + except Exception: + logger.exception( + f"Could not parse cache file: {cache_filename}.", exc_info=True + ) + return False + if rank_provider == RankProvider.TRAITS_SNIPER: + self._trait_sniper_external_rank_cache[slug] = external_rank_data + elif rank_provider == RankProvider.RARITY_SNIFFER: + self._rarity_sniffer_external_rank_cache[slug] = external_rank_data + elif rank_provider == RankProvider.RARITY_SNIPER: + self._rarity_sniper_external_rank_cache[slug] = external_rank_data + else: + raise Exception(f"Unknown external rank provider: {rank_provider}") + + return True def _add_trait_sniper_rarity_data( self, collection_with_metadata: CollectionWithMetadata, tokens_with_rarity: list[TokenWithRarityData], + cache_external_ranks: bool = True, ) -> list[TokenWithRarityData]: """Modifies `tokens_with_rarity` by adding trait sniper rank If trait sniper API is not reachable, rank for that token will not be added. @@ -189,9 +290,12 @@ def _add_trait_sniper_rarity_data( augmented with trait_sniper rank added to rarities field """ logger.debug("Resolving trait sniper rarity") + rank_provider = RankProvider.TRAITS_SNIPER # We're currently using opensea slug to calculate trait sniper slug slug = collection_with_metadata.opensea_slug + if cache_external_ranks: + self._load_cache_from_file(slug=slug, rank_provider=rank_provider) for token_with_rarity in tokens_with_rarity: token = token_with_rarity.token @@ -199,29 +303,40 @@ def _add_trait_sniper_rarity_data( # Needed for type-checking assert isinstance(token_identifer, EVMContractTokenIdentifier) token_id = token_identifer.token_id + rank = None - try: - logger.debug( - f"Resolving trait sniper rarity for {slug=} {token_id=}" - ) - - rank = fetch_trait_sniper_rank_for_evm_token( - collection_slug=slug, token_id=token_id + if cache_external_ranks: + rank = self._get_cached_rank( + slug=slug, rank_provider=rank_provider, token_id=token_id ) - if rank is None: - continue - - token_rarity_data = RarityData( - provider=RankProvider.TRAITS_SNIPER, rank=rank - ) - logger.debug( - f"Resolved trait sniper rarity for {slug=} {token_id=}: {rank}" - ) - token_with_rarity.rarities.append(token_rarity_data) + if rank is None: + try: + rank = fetch_trait_sniper_rank_for_evm_token( + collection_slug=slug, token_id=token_id + ) + + if rank is None: + continue + if cache_external_ranks: + # Cache + self._get_provider_rank_cache( + slug=slug, rank_provider=rank_provider + )[str(token_id)] = rank + + logger.debug( + f"Resolved trait sniper rarity for {slug=} {token_id=}: {rank}" + ) + except Exception: + logger.exception( + "Failed to resolve token_ids Traits Sniper" + ) + + token_rarity_data = RarityData( + provider=RankProvider.TRAITS_SNIPER, rank=rank + ) - except Exception: - logger.exception("Failed to resolve token_ids Traits Sniper") + token_with_rarity.rarities.append(token_rarity_data) return tokens_with_rarity @@ -229,6 +344,7 @@ def _add_rarity_sniffer_rarity_data( self, collection_with_metadata: CollectionWithMetadata, tokens_with_rarity: list[TokenWithRarityData], + cache_external_ranks: bool = True, ) -> list[TokenWithRarityData]: """Modifies `tokens_with_rarity` by adding rarity sniffer rank data Currently only works for EVM collections @@ -244,8 +360,10 @@ def _add_rarity_sniffer_rarity_data( list[TokenWithRarityData] list of augmeneted tokens """ + rank_provider = RankProvider.RARITY_SNIFFER + slug = collection_with_metadata.opensea_slug + logger.debug(f"Resolving rarity sniffer for {slug}") - logger.debug("Resolving rarity sniffer") contract_addresses = collection_with_metadata.contract_addresses if len(contract_addresses) != 1: raise ValueError( @@ -254,31 +372,60 @@ def _add_rarity_sniffer_rarity_data( ) contract_address = contract_addresses[0] - token_rarity_data = {} - try: - # Memoize since caller typically calls this function with the same - # collection but different batches of tokens - if contract_address not in self.rarity_sniffer_state: - self.rarity_sniffer_state[ - contract_address - ] = fetch_rarity_sniffer_rank_for_collection( - contract_address=contract_address - ) - except Exception: - logger.exception("Failed to resolve token_ids Rarity Sniffer") - raise + if cache_external_ranks: + self._load_cache_from_file(slug=slug, rank_provider=rank_provider) - token_rarity_data = self.rarity_sniffer_state[contract_address] + # If there was no cache data available, make API request to fetch data + if not self._is_cache_loaded(slug, rank_provider): + try: + # Memoize since caller typically calls this function with the same + # collection but different batches of tokens + if contract_address not in self.rarity_sniffer_state: + token_ids_to_ranks = ( + fetch_rarity_sniffer_rank_for_collection( + contract_address=contract_address + ) + ) + self.rarity_sniffer_state[ + contract_address + ] = token_ids_to_ranks + # Write to cache + if cache_external_ranks: + self._rarity_sniffer_external_rank_cache[ + slug + ] = token_ids_to_ranks + num_tokens = len( + self.rarity_sniffer_state[contract_address] + ) + logger.debug( + f"Fetched {num_tokens} token ranks from rarity sniffer" + ) + print( + f"Fetched {num_tokens} token ranks from rarity sniffer" + ) + except Exception: + logger.exception("Failed to resolve token_ids Rarity Sniffer") + raise + + token_ids_to_ranks = self.rarity_sniffer_state[contract_address] for token_with_rarity in tokens_with_rarity: token_identifer = token_with_rarity.token.token_identifier assert isinstance(token_identifer, EVMContractTokenIdentifier) - rarity_data = token_rarity_data[int(token_identifer.token_id)] + token_id: int = token_identifer.token_id + + # Get rank either from cache or from API memoization dict + rank = ( + self._get_cached_rank( + slug=slug, rank_provider=rank_provider, token_id=token_id + ) + or token_ids_to_ranks[token_id] + ) - token_with_rarity.rarities.append(rarity_data) - slug = collection_with_metadata.opensea_slug + token_with_rarity.rarities.append( + RarityData(provider=rank_provider, rank=rank) + ) logger.debug( - f"Fetched Rarirty Sniffer rarity score for {slug=} " - f"{token_identifer}: {rarity_data}" + f"Fetched Rarity Sniffer rank for {slug=} {token_id}: {rank}" ) return tokens_with_rarity @@ -287,10 +434,14 @@ def _add_rarity_sniper_rarity_data( self, collection_with_metadata: CollectionWithMetadata, tokens_with_rarity: list[TokenWithRarityData], + cache_external_ranks: bool = True, ) -> list[TokenWithRarityData]: # We're currently using opensea slug to calculate trait sniper slug opensea_slug = collection_with_metadata.opensea_slug slug = get_rarity_sniper_slug(opensea_slug=opensea_slug) + rank_provider = RankProvider.RARITY_SNIPER + if cache_external_ranks: + self._load_cache_from_file(slug=slug, rank_provider=rank_provider) for token_with_rarity in tokens_with_rarity: token = token_with_rarity.token @@ -300,24 +451,21 @@ def _add_rarity_sniper_rarity_data( token_id = token_identifer.token_id try: - logger.debug( - f"Resolving rarity sniper rarity for {slug=} {token_id=}" - ) - - rank = fetch_rarity_sniper_rank_for_evm_token( + rank = self._get_cached_rank( + slug=slug, rank_provider=rank_provider, token_id=token_id + ) or fetch_rarity_sniper_rank_for_evm_token( collection_slug=slug, token_id=token_id ) if rank is None: continue - token_rarity_data = RarityData( - provider=RankProvider.RARITY_SNIPER, rank=rank - ) logger.debug( f"Resolved rarity sniper rarity for {slug=} {token_id=}: {rank}" ) - token_with_rarity.rarities.append(token_rarity_data) + token_with_rarity.rarities.append( + RarityData(provider=rank_provider, rank=rank) + ) except Exception: logger.exception("Failed to resolve token_ids Rarity Sniper") @@ -329,6 +477,7 @@ def fetch_and_update_ranks( collection_with_metadata: CollectionWithMetadata, tokens_with_rarity: list[TokenWithRarityData], rank_providers: list[RankProvider] = EXTERNAL_RANK_PROVIDERS, + cache_external_ranks: bool = True, ) -> list[TokenWithRarityData]: """Fetches ranks from available providers gem, rarity sniper and/or trait sniper and adds them to the rarities field in `tokens_with_rarity` @@ -340,29 +489,36 @@ def fetch_and_update_ranks( tokens_with_rarity: list[TokenWithRaritydata] List of tokens with rarity data. Will modify the objects.rarities field and add the fetched ranking data directly to object. + cache_external_ranks: bool + If set to true, will use local cache file instead of fetching rank data Returns ------- list[tokens_with_rarity] tokens with fetched external rarity data """ - logger.debug(len(tokens_with_rarity)) + logger.debug( + f"Fetching external rarity for {len(tokens_with_rarity)} tokens" + ) for rank_provider in rank_providers: if rank_provider == RankProvider.RARITY_SNIFFER: self._add_rarity_sniffer_rarity_data( collection_with_metadata=collection_with_metadata, tokens_with_rarity=tokens_with_rarity, + cache_external_ranks=cache_external_ranks, ) if rank_provider == RankProvider.TRAITS_SNIPER: self._add_trait_sniper_rarity_data( collection_with_metadata=collection_with_metadata, tokens_with_rarity=tokens_with_rarity, + cache_external_ranks=cache_external_ranks, ) if rank_provider == RankProvider.RARITY_SNIPER: self._add_rarity_sniper_rarity_data( collection_with_metadata=collection_with_metadata, tokens_with_rarity=tokens_with_rarity, + cache_external_ranks=cache_external_ranks, ) return tokens_with_rarity diff --git a/open_rarity/resolver/testset_resolver.py b/open_rarity/resolver/testset_resolver.py index 862865b..662f0ac 100644 --- a/open_rarity/resolver/testset_resolver.py +++ b/open_rarity/resolver/testset_resolver.py @@ -1,11 +1,12 @@ +import argparse import csv import io import json import logging import math import pkgutil +import numpy as np from dataclasses import dataclass -from sys import argv from time import process_time, strftime from open_rarity.models.collection import Collection @@ -23,7 +24,6 @@ ) from open_rarity.resolver.opensea_api_helpers import ( get_collection_with_metadata_from_opensea, - get_tokens_from_opensea, ) from open_rarity.resolver.rarity_providers.external_rarity_provider import ( ExternalRarityProvider, @@ -57,6 +57,23 @@ logger = logging.getLogger("open_rarity_logger") +parser = argparse.ArgumentParser() +parser.add_argument( + "resolve_external_rarity", + type=str, + default=None, + help="Specify 'external' if you want to resolve rarity from external providers", +) + +parser.add_argument( + "--cache", + dest="cache_fetched_data", + action=argparse.BooleanOptionalAction, + default=True, + help="Whether we use local data files to cache external trait + rank data", +) + + @dataclass class OpenRarityScores: arithmetic_scores: RankedTokens @@ -68,9 +85,11 @@ class OpenRarityScores: def get_tokens_with_rarity( collection_with_metadata: CollectionWithMetadata, + external_rank_providers: list[RankProvider], resolve_remote_rarity: bool = True, - batch_size: int = 30, + batch_size: int = 300, max_tokens_to_calculate: int = None, + cache_external_ranks: bool = True, ) -> list[TokenWithRarityData]: """Resolves assets through OpenSea API asset endpoint and turns them into token with rarity data, augmented with rankings from Gem, RaritySniper @@ -85,6 +104,10 @@ def get_tokens_with_rarity( external providers , False if not max_tokens_to_calculate (int, optional): If specified only gets ranking data of first `max_tokens`. Defaults to None. + cache_external_ranks : bool + If set to true, will cache external ranks into local json file and + optionally use cached data if file exists. If cache file already exists, + will not refetch or rewrite cache data. Returns ------- @@ -98,46 +121,46 @@ def get_tokens_with_rarity( collection_with_metadata.token_total_supply, ) num_batches = math.ceil(total_supply / batch_size) - initial_token_id = 0 + tokens = collection_with_metadata.collection.tokens + assert len(tokens) == collection_with_metadata.token_total_supply tokens_with_rarity: list[TokenWithRarityData] = [] - # Returns a list of `batch_size` token IDs, such that no token ID - # can exceed `max_token_id` (in which case len(return_value) < `batch_size`) - def get_token_ids( - batch_id: int, max_token_id: int = total_supply - 1 - ) -> list[int]: - token_id_start = initial_token_id + (batch_id * batch_size) - token_id_end = int(min(token_id_start + batch_size - 1, max_token_id)) - return [ - token_id for token_id in range(token_id_start, token_id_end + 1) - ] - t1_start = process_time() - for batch_id in range(num_batches): - token_ids = get_token_ids(batch_id) + + for batch_id, tokens_batch in enumerate( + np.array_split(tokens, num_batches) + ): logger.debug( f"Starting batch {batch_id} for collection " - f"{slug}: Processing {len(token_ids)} tokens" + f"{slug}: Processing {len(tokens_batch)} tokens" ) - - tokens = get_tokens_from_opensea( - opensea_slug=collection_with_metadata.opensea_slug, - token_ids=token_ids, + print( + f"Starting batch {batch_id} for collection " + f"{slug}: Processing {len(tokens_batch)} tokens" ) # We will store all rarities calculated across providers in this list tokens_rarity_batch = [ - TokenWithRarityData(token=t, rarities=[]) for t in tokens + TokenWithRarityData(token=t, rarities=[]) for t in tokens_batch ] if resolve_remote_rarity: external_rarity_provider.fetch_and_update_ranks( collection_with_metadata=collection_with_metadata, tokens_with_rarity=tokens_rarity_batch, + rank_providers=external_rank_providers, + cache_external_ranks=cache_external_ranks, ) # Add the batch of augmented tokens with rarity into return value tokens_with_rarity.extend(tokens_rarity_batch) + # Cache the data + if cache_external_ranks: + for rank_provider in external_rank_providers: + external_rarity_provider.write_cache_to_file( + slug=slug, rank_provider=rank_provider + ) + t1_stop = process_time() logger.debug( "Elapsed time during the asset resolution in seconds {seconds}".format( @@ -153,6 +176,7 @@ def resolve_collection_data( package_path: str = "open_rarity.data", filename: str = "test_collections.json", max_tokens_to_calculate: int = None, + use_cache: bool = True, ) -> None: """Resolves collection information through OpenSea API @@ -170,6 +194,10 @@ def resolve_collection_data( If specified only gets ranking data of first `max_tokens`, by default None. Note: If this is provided, we cannot calculate OpenRarity ranks since it must be calculated after calculating scoring for entire collection. + use_cache: bool + If set to true, will cache fetched data from external API's in order to ensure + re-runs for same collections are faster. Only use if collection and token + metadata is static - do not work for unrevealed/changing collections. Raises ------ @@ -183,21 +211,28 @@ def resolve_collection_data( data = json.load(io.BytesIO(golden_collections)) for collection_def in data: opensea_slug = collection_def["collection_slug"] + print(f"Fetching collection and token trait data for: {opensea_slug}") # Fetch collection metadata and tokens that belong to this collection # from opensea and other external api's. collection_with_metadata = get_collection_with_metadata_from_opensea( - opensea_collection_slug=opensea_slug + opensea_collection_slug=opensea_slug, + use_cache=use_cache, + ) + print( + f"\t=>Finished fetching collection and token trait data for: {opensea_slug}" ) + print(f"Fetching external rarity ranks for: {opensea_slug}") tokens_with_rarity: list[TokenWithRarityData] = get_tokens_with_rarity( collection_with_metadata=collection_with_metadata, resolve_remote_rarity=resolve_remote_rarity, max_tokens_to_calculate=max_tokens_to_calculate, + cache_external_ranks=use_cache, + external_rank_providers=[RankProvider.TRAITS_SNIPER], ) - old_collection = collection_with_metadata.collection - collection_with_metadata.collection = Collection( - attributes_frequency_counts=old_collection.attributes_frequency_counts, - tokens=[tr.token for tr in tokens_with_rarity], + print( + f"\t=>Finished fetching external rarity ranks for: {opensea_slug}" ) + collection = collection_with_metadata.collection if max_tokens_to_calculate is None: @@ -523,10 +558,7 @@ def serialize_to_csv( command to run: python -m openrarity.resolver.testset_resolver external """ - - resolve_remote_rarity = len(argv) > 1 - print(f"Executing main: with {argv}. Setting {resolve_remote_rarity=}") - + args = parser.parse_args() logger = logging.getLogger("open_rarity_logger") logger.setLevel(logging.DEBUG) @@ -534,5 +566,11 @@ def serialize_to_csv( fh.setLevel(logging.DEBUG) logger.addHandler(fh) + resolve_remote_rarity = args.resolve_external_rarity - resolve_collection_data(resolve_remote_rarity) + print(f"Executing main: with {args}") + resolve_collection_data( + resolve_remote_rarity, + use_cache=args.cache_fetched_data, + filename="test_bayc.json", + ) From cd58f929e7e56e6c3ba274807455c08fc97786d6 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Mon, 3 Oct 2022 22:41:55 -0700 Subject: [PATCH 07/17] refactor --- open_rarity/resolver/opensea_api_helpers.py | 87 ++++++++++----------- 1 file changed, 43 insertions(+), 44 deletions(-) diff --git a/open_rarity/resolver/opensea_api_helpers.py b/open_rarity/resolver/opensea_api_helpers.py index 3cab1bf..8ba9c44 100644 --- a/open_rarity/resolver/opensea_api_helpers.py +++ b/open_rarity/resolver/opensea_api_helpers.py @@ -176,37 +176,23 @@ def get_all_collection_tokens( """ cached_filename = f"{cache_file_prefix}-{slug}.json" tokens: list[Token] = [] + # For performance optimization and re-runs for the same collection, # we optionally check if an already cached file for the collection # data exists since they tend to be static. if use_cache: - try: - tokens = read_collection_data_from_file( - filename=cached_filename, - expected_supply=total_supply, - slug=slug, - ) - logger.debug( - f"Read {len(tokens)} tokens from cache file: {cached_filename}" - ) - except FileNotFoundError: - logger.warning( - f"No opensea cache file found for {slug}: {cached_filename}" - ) - pass - except Exception: - logger.exception( - "Failed to parse valid cache data for %s from %s", - slug, - cached_filename, - exc_info=True, - ) + tokens = read_collection_data_from_file( + filename=cached_filename, + expected_supply=total_supply, + slug=slug, + ) else: logger.info( f"Not using cache for fetching collection tokens for: {slug}" ) - # This means either cache file didn't exist or did not have data + # This means either cache file didn't exist or did not have data. + # Fetch all token trait data from opensea. if len(tokens) == 0: tokens = [] num_batches = math.ceil(total_supply / batch_size) @@ -232,7 +218,7 @@ def get_token_ids( tokens.extend(tokens_batch) - # It's possible for some collections to start at 1 instead of 0, + # It's possible for some collections to start at token id 1 instead of 0, # so attempt fetch of more tokens if they exist token_id = total_supply while True: @@ -251,12 +237,11 @@ def get_token_ids( if len(tokens) > total_supply: logger.warning( f"Warning: Found more tokens ({len(tokens)}) than " - f"token supply ({total_supply})" + f"token supply ({total_supply}) fetched from collection stats" ) # Write to local disk the fetched data for later caching if use_cache: - logger.info(f"Writing token data to cache file: {cached_filename}") write_collection_data_to_file( filename=cached_filename, slug=slug, tokens=tokens ) @@ -452,32 +437,46 @@ def write_collection_data_to_file( ) with open(filename, "w+") as jsonfile: json.dump(json_output, jsonfile, indent=4) + logger.info(f"Wrote token data to cache file: {filename}") def read_collection_data_from_file( filename: str, expected_supply: int, slug: str ) -> list[Token]: tokens = [] - with open(filename) as jsonfile: - tokens_data = json.load(jsonfile) - if len(tokens_data) != expected_supply: - logger.warning( - "Warning: Data cache file for %s collection has data for %s tokens " - "but total supply fetched from opensea is %s", - slug, - len(tokens_data), - expected_supply, - ) - if len(tokens_data) > 0: - for token_data in tokens_data: - assert token_data["metadata_dict"] - tokens.append( - Token.from_erc721( - contract_address=token_data["contract_address"], - token_id=token_data["token_id"], - metadata_dict=token_data["metadata_dict"], - ) + try: + with open(filename) as jsonfile: + tokens_data = json.load(jsonfile) + if len(tokens_data) != expected_supply: + logger.warning( + "Warning: Data cache file for %s collection has data for %s tokens " + "but total supply fetched from opensea is %s", + slug, + len(tokens_data), + expected_supply, ) + if len(tokens_data) > 0: + for token_data in tokens_data: + assert token_data["metadata_dict"] + tokens.append( + Token.from_erc721( + contract_address=token_data["contract_address"], + token_id=token_data["token_id"], + metadata_dict=token_data["metadata_dict"], + ) + ) + logger.debug(f"Read {len(tokens)} tokens from cache file: {filename}") + except FileNotFoundError: + logger.warning(f"No opensea cache file found for {slug}: {filename}") + except Exception: + logger.exception( + "Failed to parse valid cache data for %s from %s", + slug, + filename, + exc_info=True, + ) + return [] + return tokens From 61030f251b9417b44a8f82edb3334cc31a424410 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Mon, 3 Oct 2022 23:08:17 -0700 Subject: [PATCH 08/17] Small fixes --- cached_data/cached_data.md | 3 +++ open_rarity/resolver/opensea_api_helpers.py | 6 +++-- .../external_rarity_provider.py | 22 +++++++++---------- open_rarity/resolver/testset_resolver.py | 3 ++- 4 files changed, 20 insertions(+), 14 deletions(-) create mode 100644 cached_data/cached_data.md diff --git a/cached_data/cached_data.md b/cached_data/cached_data.md new file mode 100644 index 0000000..e9688eb --- /dev/null +++ b/cached_data/cached_data.md @@ -0,0 +1,3 @@ +# About +This folder contains sample cached data that can be used to more efficiency run scripts score_generated_collection or +the resolver to generate OpenRarity and/or external rarity ranks. diff --git a/open_rarity/resolver/opensea_api_helpers.py b/open_rarity/resolver/opensea_api_helpers.py index 8ba9c44..99ca947 100644 --- a/open_rarity/resolver/opensea_api_helpers.py +++ b/open_rarity/resolver/opensea_api_helpers.py @@ -33,6 +33,8 @@ # https://docs.opensea.io/docs/metadata-standards OS_METADATA_TRAIT_TYPE = "display_type" +DEFAULT_OS_CACHE_FILENAME_PREFIX: str = "cached_data/cached_os_trait_data" + # Error is thrown if computatation is requested on a non-ERC721/1155 # token or collection. This is due to library only working for these @@ -169,7 +171,7 @@ def get_all_collection_tokens( total_supply: int, batch_size: int = 30, use_cache: bool = True, - cache_file_prefix: str | None = "cached_os_collection_data", + cache_file_prefix: str | None = DEFAULT_OS_CACHE_FILENAME_PREFIX, ) -> list[Token]: """Returns a list of Token's with all metadata filled, either populated from Opensea API or fetched from a local cache file. @@ -375,7 +377,7 @@ def get_collection_from_opensea( slug: str, batch_size: int = 30, use_cache: bool = True, - cache_file_prefix: str | None = "cached_os_collection_data", + cache_file_prefix: str | None = DEFAULT_OS_CACHE_FILENAME_PREFIX, ) -> Collection: """Fetches collection and token data with OpenSea endpoint and API key and stores it in the Collection object. If local cache file is used and diff --git a/open_rarity/resolver/rarity_providers/external_rarity_provider.py b/open_rarity/resolver/rarity_providers/external_rarity_provider.py index 8f47abb..1285714 100644 --- a/open_rarity/resolver/rarity_providers/external_rarity_provider.py +++ b/open_rarity/resolver/rarity_providers/external_rarity_provider.py @@ -79,7 +79,7 @@ def fetch_trait_sniper_rank_for_evm_token( def fetch_rarity_sniffer_rank_for_collection( contract_address: str, -) -> dict[int, int]: +) -> dict[str, int]: """Fetches all available tokens and ranks for a given collection from rarity sniffer. Only usable for EVM tokens and collections for a single @@ -124,7 +124,7 @@ def fetch_rarity_sniffer_rank_for_collection( response.raise_for_status() tokens_to_ranks: dict[int, int] = { - int(nft["id"]): int(rank=nft["positionId"]) + str(nft["id"]): int(rank=nft["positionId"]) for nft in response.json()["data"] } @@ -162,17 +162,17 @@ def fetch_rarity_sniper_rank_for_evm_token( class ExternalRarityProvider: # Cached file will have format: - # "external_{provider_name}_cached_ranks-{collection slug}.json" + # "cached_{provider_name}_ranks-{collection slug}.json" # The data must be a dictionary of to - CACHE_FILENAME_FORMAT: str = "external_%s_cached_ranks-%s.json" + CACHE_FILENAME_FORMAT: str = "cached_data/cached_%s_ranks-%s.json" # Cache of rarity sniffer ranking data for given contracts # since rarity sniffer API does a bulk reques for an entire collection # Key = Contract Address (str) # Value = Token ID (str) -> Rank (int) - rarity_sniffer_state: dict[str, dict[str, int]] = {} + _rarity_sniffer_state: dict[str, dict[str, int]] = {} - # Slug -> {token_id (str)->rank (int)} + # Dictionary of slug -> {token_id (str) -> rank (int)} _trait_sniper_external_rank_cache: dict[str, dict[str, int]] = defaultdict( dict ) @@ -380,13 +380,13 @@ def _add_rarity_sniffer_rarity_data( try: # Memoize since caller typically calls this function with the same # collection but different batches of tokens - if contract_address not in self.rarity_sniffer_state: + if contract_address not in self._rarity_sniffer_state: token_ids_to_ranks = ( fetch_rarity_sniffer_rank_for_collection( contract_address=contract_address ) ) - self.rarity_sniffer_state[ + self._rarity_sniffer_state[ contract_address ] = token_ids_to_ranks # Write to cache @@ -395,7 +395,7 @@ def _add_rarity_sniffer_rarity_data( slug ] = token_ids_to_ranks num_tokens = len( - self.rarity_sniffer_state[contract_address] + self._rarity_sniffer_state[contract_address] ) logger.debug( f"Fetched {num_tokens} token ranks from rarity sniffer" @@ -407,7 +407,7 @@ def _add_rarity_sniffer_rarity_data( logger.exception("Failed to resolve token_ids Rarity Sniffer") raise - token_ids_to_ranks = self.rarity_sniffer_state[contract_address] + token_ids_to_ranks = self._rarity_sniffer_state[contract_address] for token_with_rarity in tokens_with_rarity: token_identifer = token_with_rarity.token.token_identifier assert isinstance(token_identifer, EVMContractTokenIdentifier) @@ -418,7 +418,7 @@ def _add_rarity_sniffer_rarity_data( self._get_cached_rank( slug=slug, rank_provider=rank_provider, token_id=token_id ) - or token_ids_to_ranks[token_id] + or token_ids_to_ranks[str(token_id)] ) token_with_rarity.rarities.append( diff --git a/open_rarity/resolver/testset_resolver.py b/open_rarity/resolver/testset_resolver.py index 662f0ac..5f9800e 100644 --- a/open_rarity/resolver/testset_resolver.py +++ b/open_rarity/resolver/testset_resolver.py @@ -556,7 +556,8 @@ def serialize_to_csv( """Script to resolve external datasets and compute rarity scores on test collections. Data resolved from opensea api - command to run: python -m openrarity.resolver.testset_resolver external + command to run: + python -m openrarity.resolver.testset_resolver external """ args = parser.parse_args() logger = logging.getLogger("open_rarity_logger") From ece0663aa8fad667921a3afd94fb487cbfee277e Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Mon, 3 Oct 2022 23:10:42 -0700 Subject: [PATCH 09/17] add sample data fix --- ...ached_os_trait_data-boredapeyachtclub.json | 118837 +++++++++++++++ 1 file changed, 118837 insertions(+) create mode 100644 cached_data/cached_os_trait_data-boredapeyachtclub.json diff --git a/cached_data/cached_os_trait_data-boredapeyachtclub.json b/cached_data/cached_os_trait_data-boredapeyachtclub.json new file mode 100644 index 0000000..621ed75 --- /dev/null +++ b/cached_data/cached_os_trait_data-boredapeyachtclub.json @@ -0,0 +1,118837 @@ +[ + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 0, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "clothes": "striped tee", + "background": "orange", + "earring": "silver hoop", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "eyes": "blue beams", + "fur": "robot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2, + "metadata_dict": { + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored cigarette", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3, + "metadata_dict": { + "eyes": "bored", + "mouth": "tongue out", + "fur": "cheetah", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "hat": "party hat 2", + "fur": "golden brown", + "background": "blue", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "bayc t red", + "mouth": "dumbfounded", + "hat": "bayc flipped brim", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "clothes": "tweed suit", + "background": "yellow", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "hat": "stuntman helmet", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8, + "metadata_dict": { + "background": "aquamarine", + "eyes": "robot", + "earring": "gold stud", + "hat": "beanie", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver stud", + "eyes": "sleepy", + "clothes": "stunt jacket", + "mouth": "small grin", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 10, + "metadata_dict": { + "clothes": "navy striped tee", + "eyes": "eyepatch", + "fur": "dmt", + "background": "aquamarine", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 11, + "metadata_dict": { + "hat": "laurel wreath", + "background": "gray", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "fur": "dark brown", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 12, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black holes t", + "hat": "seaman's hat", + "fur": "brown", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 13, + "metadata_dict": { + "eyes": "coins", + "fur": "black", + "background": "yellow", + "mouth": "bored", + "hat": "police motorcycle helmet", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 14, + "metadata_dict": { + "earring": "diamond stud", + "clothes": "tanktop", + "eyes": "3d", + "background": "orange", + "mouth": "small grin", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 15, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "zombie", + "fur": "gray", + "clothes": "black t", + "hat": "girl's hair pink", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 16, + "metadata_dict": { + "hat": "horns", + "mouth": "dumbfounded", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 17, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "tan", + "mouth": "bored unshaven", + "earring": "gold stud", + "clothes": "bayc t black", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 18, + "metadata_dict": { + "background": "purple", + "mouth": "bored cigarette", + "fur": "robot", + "eyes": "cyborg", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 19, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "eyepatch", + "fur": "tan", + "mouth": "rage", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 20, + "metadata_dict": { + "clothes": "bandolier", + "fur": "gray", + "mouth": "phoneme vuh", + "background": "blue", + "eyes": "3d", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 21, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "phoneme ooo", + "fur": "black", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 22, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "s&m hat", + "earring": "gold stud", + "clothes": "tuxedo tee", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 23, + "metadata_dict": { + "fur": "trippy", + "background": "aquamarine", + "mouth": "bored pipe", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 24, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "fez", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "black", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 25, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "fur": "brown", + "clothes": "guayabera", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 26, + "metadata_dict": { + "hat": "stuntman helmet", + "background": "aquamarine", + "eyes": "3d", + "fur": "dark brown", + "clothes": "stunt jacket", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 27, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "gray", + "background": "orange", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 28, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "earring": "silver stud", + "hat": "bayc flipped brim", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 29, + "metadata_dict": { + "background": "blue", + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 30, + "metadata_dict": { + "eyes": "holographic", + "fur": "gray", + "background": "aquamarine", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 31, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "party hat 2", + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "dmt", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 32, + "metadata_dict": { + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "clothes": "hip hop", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 33, + "metadata_dict": { + "eyes": "closed", + "hat": "girl's hair pink", + "fur": "red", + "mouth": "small grin", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 34, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "black", + "background": "orange", + "hat": "bayc hat red", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 35, + "metadata_dict": { + "mouth": "jovial", + "background": "blue", + "eyes": "3d", + "fur": "death bot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 36, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 37, + "metadata_dict": { + "clothes": "striped tee", + "background": "blue", + "eyes": "bored", + "earring": "silver hoop", + "hat": "bowler", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 38, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "fur": "black", + "earring": "cross", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 39, + "metadata_dict": { + "fur": "gray", + "hat": "fez", + "mouth": "dumbfounded", + "background": "aquamarine", + "clothes": "leather jacket", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 40, + "metadata_dict": { + "background": "new punk blue", + "hat": "spinner hat", + "clothes": "biker vest", + "fur": "dark brown", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 41, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "sad", + "fur": "dark brown", + "background": "purple", + "clothes": "navy striped tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 42, + "metadata_dict": { + "hat": "baby's bonnet", + "eyes": "coins", + "clothes": "biker vest", + "fur": "dark brown", + "mouth": "bored pizza", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 43, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "eyes": "coins", + "earring": "silver stud", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 44, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "fur": "gray", + "eyes": "coins", + "clothes": "tweed suit", + "earring": "gold stud" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 45, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 46, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "hat": "fez", + "background": "gray", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 47, + "metadata_dict": { + "eyes": "3d", + "fur": "pink", + "mouth": "bored cigarette", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 48, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "prison jumpsuit", + "fur": "red", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 49, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "earring": "silver stud", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "cheetah", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 50, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "sailor shirt", + "eyes": "bored", + "mouth": "tongue out", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 51, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "background": "orange", + "fur": "dark brown", + "hat": "girl's hair short", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 52, + "metadata_dict": { + "hat": "king's crown", + "clothes": "work vest", + "fur": "black", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 53, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "fur": "brown", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 54, + "metadata_dict": { + "clothes": "leather jacket", + "eyes": "sleepy", + "fur": "pink", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 55, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "mouth": "grin multicolored", + "earring": "gold stud", + "fur": "cheetah", + "hat": "bunny ears", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 56, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "brown", + "background": "yellow", + "clothes": "guayabera", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 57, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "bayc t red", + "hat": "seaman's hat", + "earring": "silver stud", + "fur": "dark brown", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 58, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "navy striped tee", + "background": "yellow", + "hat": "commie hat", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 59, + "metadata_dict": { + "fur": "red", + "background": "gray", + "mouth": "phoneme wah", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 60, + "metadata_dict": { + "eyes": "scumbag", + "background": "aquamarine", + "fur": "pink", + "clothes": "bayc t black", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 61, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "background": "aquamarine", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 62, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "mouth": "rage", + "background": "aquamarine", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 63, + "metadata_dict": { + "fur": "zombie", + "mouth": "grin", + "clothes": "sailor shirt", + "background": "blue", + "hat": "bunny ears", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 64, + "metadata_dict": { + "earring": "gold hoop", + "eyes": "3d", + "hat": "army hat", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 65, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bored", + "clothes": "stunt jacket", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 66, + "metadata_dict": { + "clothes": "blue dress", + "fur": "pink", + "hat": "bayc flipped brim", + "eyes": "bored", + "earring": "cross", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 67, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin", + "fur": "black", + "background": "orange", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 68, + "metadata_dict": { + "clothes": "black t", + "background": "orange", + "eyes": "bloodshot", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 69, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "background": "orange", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 70, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "brown", + "clothes": "bone necklace", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 71, + "metadata_dict": { + "background": "orange", + "eyes": "bloodshot", + "fur": "cheetah", + "hat": "bowler", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 72, + "metadata_dict": { + "hat": "horns", + "clothes": "prison jumpsuit", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 73, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "rage", + "clothes": "work vest", + "earring": "gold stud", + "fur": "solid gold", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 74, + "metadata_dict": { + "mouth": "phoneme vuh", + "clothes": "guayabera", + "fur": "death bot", + "hat": "bowler", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 75, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "bayc t red", + "eyes": "closed", + "hat": "s&m hat", + "fur": "golden brown", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 76, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "hat": "fez", + "eyes": "bored", + "clothes": "toga", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 77, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "coins", + "background": "yellow", + "mouth": "dumbfounded", + "fur": "red", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 78, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "fur": "black", + "eyes": "3d", + "clothes": "lab coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 79, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "clothes": "lab coat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 80, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "earring": "diamond stud", + "clothes": "tanktop", + "background": "orange", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 81, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "fur": "red", + "clothes": "cowboy shirt", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 82, + "metadata_dict": { + "fur": "cream", + "mouth": "jovial", + "earring": "silver hoop", + "background": "army green", + "clothes": "service", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 83, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "coins", + "clothes": "tweed suit", + "background": "blue", + "hat": "ww2 pilot helm" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 84, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "coins", + "hat": "ww2 pilot helm", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 85, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "background": "blue", + "eyes": "bloodshot", + "clothes": "admirals coat", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 86, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "clothes": "tuxedo tee", + "eyes": "bored", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 87, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "hat": "bunny ears", + "fur": "cheetah", + "clothes": "guayabera", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 88, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "earring": "gold hoop", + "background": "blue", + "fur": "black", + "clothes": "pimp coat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 89, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "black", + "eyes": "3d", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 90, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "golden brown", + "mouth": "grin", + "hat": "prussian helmet", + "clothes": "tweed suit", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 91, + "metadata_dict": { + "clothes": "black holes t", + "fur": "brown", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 92, + "metadata_dict": { + "eyes": "heart", + "mouth": "jovial", + "background": "blue", + "fur": "pink", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 93, + "metadata_dict": { + "hat": "fez", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "purple", + "fur": "white", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 94, + "metadata_dict": { + "eyes": "closed", + "clothes": "black holes t", + "background": "aquamarine", + "mouth": "bored unshaven kazoo", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 95, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 96, + "metadata_dict": { + "clothes": "stunt jacket", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "sleepy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 97, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "fur": "dark brown", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 98, + "metadata_dict": { + "mouth": "rage", + "hat": "spinner hat", + "eyes": "bored", + "fur": "death bot", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 99, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "clothes": "black holes t", + "mouth": "grin", + "fur": "dark brown", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 100, + "metadata_dict": { + "hat": "party hat 2", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 101, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "gray", + "hat": "fisherman's hat", + "mouth": "bored", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 102, + "metadata_dict": { + "hat": "irish boho", + "fur": "gray", + "background": "aquamarine", + "clothes": "biker vest", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 103, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "leather jacket", + "fur": "black", + "eyes": "sleepy", + "hat": "short mohawk", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 104, + "metadata_dict": { + "eyes": "holographic", + "hat": "laurel wreath", + "background": "aquamarine", + "mouth": "bored pipe", + "clothes": "bayc t black", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 105, + "metadata_dict": { + "clothes": "striped tee", + "hat": "seaman's hat", + "eyes": "coins", + "mouth": "rage", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 106, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tuxedo tee", + "fur": "cheetah", + "hat": "bunny ears", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 107, + "metadata_dict": { + "clothes": "space suit", + "eyes": "zombie", + "fur": "red", + "background": "blue", + "hat": "short mohawk", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 108, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "earring": "gold stud", + "fur": "dark brown", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 109, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "clothes": "bayc t black", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 110, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "mouth": "bored unshaven", + "hat": "beanie", + "eyes": "bloodshot", + "background": "yellow", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 111, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather jacket", + "background": "orange", + "hat": "bayc flipped brim", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 112, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "fur": "cream", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 113, + "metadata_dict": { + "hat": "horns", + "eyes": "zombie", + "fur": "black", + "background": "gray", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 114, + "metadata_dict": { + "eyes": "holographic", + "hat": "seaman's hat", + "fur": "dark brown", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 115, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "cream", + "clothes": "sleeveless t", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 116, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "coins", + "background": "aquamarine", + "fur": "black", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 117, + "metadata_dict": { + "fur": "tan", + "eyes": "cyborg", + "background": "blue", + "hat": "beanie", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 118, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored kazoo", + "eyes": "blue beams", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 119, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "gray", + "earring": "silver stud", + "background": "blue", + "hat": "beanie", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 120, + "metadata_dict": { + "eyes": "heart", + "clothes": "work vest", + "background": "aquamarine", + "mouth": "bored pizza", + "earring": "silver hoop", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 121, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "background": "blue", + "earring": "gold stud", + "fur": "brown", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 122, + "metadata_dict": { + "eyes": "heart", + "earring": "silver stud", + "background": "orange", + "fur": "pink", + "mouth": "bored cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 123, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "eyes": "coins", + "hat": "spinner hat", + "fur": "white", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 124, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "short mohawk", + "background": "gray", + "fur": "white", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 125, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "background": "orange", + "hat": "army hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 126, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "earring": "silver hoop", + "hat": "safari", + "clothes": "navy striped tee", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 127, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "mouth": "grin", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 128, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "leather punk jacket", + "eyes": "hypnotized", + "fur": "gray", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 129, + "metadata_dict": { + "background": "new punk blue", + "hat": "baby's bonnet", + "mouth": "rage", + "fur": "pink", + "eyes": "bored", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 130, + "metadata_dict": { + "background": "aquamarine", + "fur": "pink", + "eyes": "bored", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 131, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 132, + "metadata_dict": { + "clothes": "black holes t", + "hat": "girl's hair pink", + "earring": "silver stud", + "fur": "red", + "mouth": "bored unshaven kazoo", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 133, + "metadata_dict": { + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "mouth": "bored unshaven", + "clothes": "black holes t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 134, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "hat": "halo", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 135, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "background": "blue", + "earring": "gold stud", + "fur": "pink", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 136, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "mouth": "phoneme vuh", + "background": "blue", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 137, + "metadata_dict": { + "background": "new punk blue", + "hat": "short mohawk", + "clothes": "tanktop", + "fur": "death bot", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 138, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "orange", + "eyes": "bloodshot", + "clothes": "bayc t black", + "fur": "dark brown", + "earring": "cross", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 139, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "army hat", + "background": "army green", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 140, + "metadata_dict": { + "background": "yellow", + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 141, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "silver hoop", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 142, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "gold hoop", + "clothes": "black t", + "background": "blue", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 143, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 144, + "metadata_dict": { + "clothes": "toga", + "mouth": "phoneme vuh", + "background": "orange", + "hat": "fisherman's hat", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 145, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "prussian helmet", + "fur": "black", + "background": "orange", + "eyes": "3d", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 146, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "laser eyes", + "clothes": "sleeveless logo t", + "hat": "faux hawk", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 147, + "metadata_dict": { + "clothes": "black holes t", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 148, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 149, + "metadata_dict": { + "background": "orange", + "eyes": "3d", + "earring": "silver hoop", + "fur": "white", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 150, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "cowboy shirt", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 151, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "bone tee", + "mouth": "bored unshaven cigarette", + "hat": "seaman's hat", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 152, + "metadata_dict": { + "hat": "girl's hair pink", + "earring": "silver stud", + "clothes": "tanktop", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 153, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "eyes": "bored", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 154, + "metadata_dict": { + "hat": "girl's hair short", + "fur": "golden brown", + "eyes": "bloodshot", + "clothes": "toga", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 155, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "fur": "dmt", + "background": "blue", + "earring": "silver hoop", + "hat": "vietnam era helmet", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 156, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "golden brown", + "background": "orange", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 157, + "metadata_dict": { + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 158, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 159, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 160, + "metadata_dict": { + "eyes": "x eyes", + "background": "blue", + "fur": "dark brown", + "hat": "short mohawk", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 161, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "background": "yellow", + "hat": "commie hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 162, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "jovial", + "background": "blue", + "hat": "spinner hat", + "fur": "noise", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 163, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "striped tee", + "background": "aquamarine", + "hat": "bayc flipped brim", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 164, + "metadata_dict": { + "hat": "fez", + "background": "yellow", + "mouth": "bored", + "fur": "white", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 165, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "robot", + "clothes": "tuxedo tee", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 166, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "black t", + "fur": "pink", + "earring": "silver hoop", + "mouth": "phoneme wah", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 167, + "metadata_dict": { + "hat": "irish boho", + "eyes": "coins", + "fur": "black", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 168, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "black", + "earring": "silver hoop", + "hat": "fisherman's hat", + "clothes": "tanktop", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 169, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "blue", + "clothes": "smoking jacket", + "eyes": "bored", + "hat": "faux hawk", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 170, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "mouth": "phoneme ooo", + "clothes": "guayabera", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 171, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "brown", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 172, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 173, + "metadata_dict": { + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "yellow", + "clothes": "guayabera", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 174, + "metadata_dict": { + "clothes": "black holes t", + "earring": "gold hoop", + "mouth": "rage", + "background": "aquamarine", + "fur": "pink", + "eyes": "bloodshot", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 175, + "metadata_dict": { + "eyes": "scumbag", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 176, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "coins", + "hat": "bowler", + "fur": "black", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 177, + "metadata_dict": { + "eyes": "heart", + "hat": "sushi chef headband", + "clothes": "blue dress", + "mouth": "grin", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 178, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "hat": "girl's hair pink", + "background": "aquamarine", + "earring": "silver hoop", + "eyes": "sleepy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 179, + "metadata_dict": { + "clothes": "bayc t black", + "hat": "bowler", + "mouth": "bored", + "background": "army green", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 180, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "eyes": "zombie", + "clothes": "biker vest", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 181, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "dmt", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 182, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 183, + "metadata_dict": { + "earring": "gold stud", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 184, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "prussian helmet", + "clothes": "rainbow suspenders", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 185, + "metadata_dict": { + "hat": "fez", + "clothes": "cowboy shirt", + "background": "orange", + "eyes": "blue beams", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 186, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "fur": "golden brown", + "hat": "army hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 187, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "clothes": "biker vest", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 188, + "metadata_dict": { + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "gray", + "clothes": "prom dress", + "eyes": "sleepy", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 189, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "prussian helmet", + "earring": "cross", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 190, + "metadata_dict": { + "eyes": "bored", + "hat": "girl's hair short", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 191, + "metadata_dict": { + "background": "new punk blue", + "eyes": "3d", + "fur": "dark brown", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 192, + "metadata_dict": { + "background": "yellow", + "fur": "dark brown", + "eyes": "bored", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 193, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "cream", + "mouth": "rage", + "background": "gray", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 194, + "metadata_dict": { + "clothes": "black t", + "mouth": "dumbfounded", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 195, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "work vest", + "background": "blue", + "eyes": "bored", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 196, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver hoop", + "eyes": "bored", + "background": "gray", + "fur": "death bot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 197, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "clothes": "bone necklace", + "fur": "solid gold", + "hat": "bayc hat red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 198, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "hat": "baby's bonnet", + "earring": "gold stud", + "eyes": "crazy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 199, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "eyes": "zombie", + "hat": "girl's hair short", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 200, + "metadata_dict": { + "eyes": "heart", + "clothes": "leather jacket", + "hat": "cowboy hat", + "fur": "death bot", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 201, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 202, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "noise", + "eyes": "bored", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 203, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "horns", + "mouth": "jovial", + "clothes": "tuxedo tee", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 204, + "metadata_dict": { + "fur": "noise", + "mouth": "phoneme vuh", + "background": "new punk blue", + "eyes": "eyepatch" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 205, + "metadata_dict": { + "background": "new punk blue", + "hat": "fez", + "mouth": "bored pipe", + "fur": "black", + "clothes": "guayabera", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 206, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "earring": "diamond stud", + "mouth": "jovial", + "fur": "dark brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 207, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "dmt", + "clothes": "black t", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 208, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "eyes": "coins", + "hat": "fez", + "earring": "silver stud", + "fur": "pink", + "clothes": "prom dress", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 209, + "metadata_dict": { + "fur": "golden brown", + "clothes": "prison jumpsuit", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 210, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "grin", + "fur": "red", + "clothes": "smoking jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 211, + "metadata_dict": { + "fur": "trippy", + "hat": "baby's bonnet", + "eyes": "zombie", + "clothes": "work vest", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 212, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "earring": "diamond stud", + "background": "orange", + "hat": "army hat", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 213, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "brown", + "earring": "silver stud", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 214, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "hat": "irish boho", + "mouth": "dumbfounded", + "earring": "silver stud", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 215, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 216, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "earring": "silver stud", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 217, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "earring": "gold stud", + "fur": "pink", + "eyes": "bloodshot", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 218, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "background": "blue", + "hat": "army hat", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 219, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "hat": "stuntman helmet", + "background": "orange", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 220, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "black holes t", + "fur": "red", + "hat": "short mohawk", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 221, + "metadata_dict": { + "mouth": "phoneme wah", + "clothes": "sailor shirt", + "fur": "dark brown", + "hat": "cowboy hat", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 222, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "bayc t red", + "hat": "stuntman helmet", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "bored pipe", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 223, + "metadata_dict": { + "background": "purple", + "clothes": "leather punk jacket", + "fur": "gray", + "hat": "prussian helmet", + "earring": "silver stud", + "eyes": "3d", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 224, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "eyes": "3d", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 225, + "metadata_dict": { + "clothes": "leather jacket", + "fur": "cheetah", + "background": "purple", + "mouth": "bored", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 226, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "mouth": "bored party horn", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 227, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "clothes": "black holes t", + "background": "aquamarine", + "mouth": "bored bubblegum", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 228, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "hat": "beanie", + "mouth": "bored", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 229, + "metadata_dict": { + "mouth": "grin", + "earring": "silver stud", + "clothes": "tie dye", + "fur": "dark brown", + "hat": "vietnam era helmet", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 230, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "hat": "beanie", + "eyes": "sleepy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 231, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "rage", + "background": "orange", + "fur": "pink", + "hat": "beanie", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 232, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "smoking jacket", + "fur": "solid gold", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 233, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "mouth": "bored unshaven", + "hat": "girl's hair pink", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 234, + "metadata_dict": { + "earring": "silver stud", + "fur": "pink", + "eyes": "bored", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 235, + "metadata_dict": { + "mouth": "grin", + "eyes": "3d", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 236, + "metadata_dict": { + "fur": "pink", + "background": "orange", + "mouth": "bored", + "eyes": "blue beams" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 237, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "sushi chef headband", + "earring": "silver stud", + "background": "orange", + "eyes": "bloodshot", + "mouth": "small grin", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 238, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "clothes": "guayabera", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 239, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless t", + "background": "blue", + "earring": "silver hoop", + "mouth": "bored", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 240, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "tweed suit", + "hat": "party hat 1", + "mouth": "rage", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 241, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "clothes": "rainbow suspenders", + "mouth": "dumbfounded", + "background": "aquamarine", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 242, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "background": "blue", + "clothes": "bone necklace", + "earring": "cross", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 243, + "metadata_dict": { + "clothes": "bayc t red", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "army hat", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 244, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "prussian helmet", + "eyes": "3d", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 245, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "cheetah", + "mouth": "dumbfounded", + "eyes": "robot", + "earring": "gold stud", + "hat": "girl's hair short", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 246, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "fur": "black", + "background": "gray", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 247, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold stud", + "fur": "dark brown", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigar", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 248, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "mouth": "rage", + "earring": "silver stud", + "fur": "dark brown", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 249, + "metadata_dict": { + "mouth": "bored party horn", + "clothes": "cowboy shirt", + "background": "blue", + "fur": "brown", + "hat": "safari", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 250, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "hat": "stuntman helmet", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 251, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "blindfold", + "fur": "dark brown", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 252, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "clothes": "sleeveless t", + "mouth": "bored party horn", + "hat": "army hat", + "earring": "cross", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 253, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "zombie", + "hat": "stuntman helmet", + "clothes": "bayc t black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 254, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "earring": "silver hoop", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 255, + "metadata_dict": { + "fur": "golden brown", + "eyes": "bored", + "mouth": "bored cigarette", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 256, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "brown", + "eyes": "crazy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 257, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "tan", + "clothes": "sleeveless t", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 258, + "metadata_dict": { + "background": "blue", + "hat": "bayc flipped brim", + "fur": "cheetah", + "clothes": "bone necklace", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 259, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "eyes": "zombie", + "clothes": "tweed suit", + "background": "aquamarine", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 260, + "metadata_dict": { + "clothes": "work vest", + "background": "aquamarine", + "mouth": "tongue out", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 261, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "hat": "s&m hat", + "clothes": "sailor shirt", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 262, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "fur": "golden brown", + "mouth": "phoneme vuh", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 263, + "metadata_dict": { + "earring": "silver hoop", + "mouth": "bored cigarette", + "background": "new punk blue", + "hat": "party hat 2", + "fur": "black", + "clothes": "smoking jacket", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 264, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "rage", + "hat": "short mohawk", + "fur": "noise", + "background": "yellow", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 265, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "space suit", + "hat": "baby's bonnet", + "earring": "gold stud", + "fur": "dark brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 266, + "metadata_dict": { + "hat": "fez", + "mouth": "bored bubblegum", + "background": "yellow", + "fur": "robot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 267, + "metadata_dict": { + "eyes": "zombie", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "fur": "black", + "background": "orange", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 268, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "biker vest", + "earring": "silver hoop", + "background": "yellow", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 269, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "3d", + "fur": "brown", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 270, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "eyes": "3d", + "clothes": "toga", + "fur": "brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 271, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "phoneme vuh", + "fur": "cheetah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 272, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "leather punk jacket", + "eyes": "coins", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 273, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "fez", + "clothes": "leather jacket", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 274, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "bandolier", + "hat": "stuntman helmet", + "earring": "silver hoop", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 275, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 276, + "metadata_dict": { + "eyes": "closed", + "hat": "king's crown", + "mouth": "phoneme vuh", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 277, + "metadata_dict": { + "eyes": "blindfold", + "background": "blue", + "earring": "gold stud", + "fur": "dark brown", + "hat": "fisherman's hat", + "clothes": "sleeveless logo t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 278, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "cowboy hat", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 279, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "earring": "gold hoop", + "fur": "black", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 280, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "dumbfounded", + "eyes": "robot", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 281, + "metadata_dict": { + "eyes": "closed", + "clothes": "cowboy shirt", + "hat": "army hat", + "fur": "brown", + "earring": "cross", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 282, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "black", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "sleeveless logo t", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 283, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "clothes": "tanktop", + "fur": "dark brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 284, + "metadata_dict": { + "eyes": "coins", + "hat": "bayc flipped brim", + "background": "yellow", + "clothes": "guayabera", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 285, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "bored unshaven pipe", + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "earring": "silver hoop", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 286, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "blindfold", + "clothes": "black t", + "background": "aquamarine", + "mouth": "small grin", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 287, + "metadata_dict": { + "eyes": "closed", + "fur": "dmt", + "mouth": "phoneme vuh", + "background": "aquamarine", + "hat": "short mohawk", + "earring": "silver hoop", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 288, + "metadata_dict": { + "earring": "diamond stud", + "fur": "black", + "background": "orange", + "clothes": "biker vest", + "eyes": "bloodshot", + "hat": "cowboy hat", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 289, + "metadata_dict": { + "eyes": "x eyes", + "hat": "prussian helmet", + "background": "aquamarine", + "fur": "black", + "mouth": "small grin", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 290, + "metadata_dict": { + "fur": "gray", + "background": "purple", + "clothes": "stunt jacket", + "hat": "safari", + "eyes": "angry", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 291, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin", + "fur": "dmt", + "eyes": "bloodshot", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 292, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "stuntman helmet", + "fur": "red", + "background": "blue", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 293, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "phoneme oh", + "fur": "cream", + "hat": "horns", + "background": "blue", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 294, + "metadata_dict": { + "eyes": "sad", + "background": "new punk blue", + "fur": "trippy", + "clothes": "vietnam jacket", + "hat": "fisherman's hat", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 295, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "hat": "safari", + "mouth": "bored", + "fur": "white", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 296, + "metadata_dict": { + "mouth": "discomfort", + "earring": "diamond stud", + "fur": "black", + "background": "gray", + "hat": "bowler", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 297, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin", + "background": "aquamarine", + "fur": "red", + "eyes": "bored", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 298, + "metadata_dict": { + "fur": "dmt", + "mouth": "bored unshaven pipe", + "clothes": "cowboy shirt", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 299, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "rage", + "clothes": "tie dye", + "eyes": "bored", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 300, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 301, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "pink", + "mouth": "bored", + "hat": "commie hat", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 302, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "fez", + "fur": "black", + "clothes": "stunt jacket", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 303, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "golden brown", + "background": "gray", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 304, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "gray", + "clothes": "black t", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 305, + "metadata_dict": { + "hat": "horns", + "fur": "black", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 306, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "golden brown", + "earring": "gold hoop", + "background": "blue", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 307, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "pink", + "eyes": "3d", + "hat": "army hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 308, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "3d", + "earring": "silver hoop", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 309, + "metadata_dict": { + "background": "gray", + "eyes": "blindfold", + "mouth": "bored", + "fur": "cream" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 310, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless logo t", + "background": "purple", + "mouth": "bored cigar", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 311, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 312, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "hat": "bayc flipped brim", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 313, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "tie dye", + "fur": "pink", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 314, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 315, + "metadata_dict": { + "mouth": "grin", + "earring": "silver stud", + "fur": "pink", + "hat": "vietnam era helmet", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 316, + "metadata_dict": { + "clothes": "bone necklace", + "fur": "noise", + "eyes": "bored", + "earring": "silver hoop", + "hat": "bowler", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 317, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "clothes": "striped tee", + "fur": "golden brown", + "mouth": "dumbfounded", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 318, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "dumbfounded", + "background": "purple", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 319, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "party hat 2", + "background": "new punk blue", + "fur": "pink", + "eyes": "bored", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 320, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "earring": "silver stud", + "mouth": "small grin", + "background": "purple", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 321, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 322, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "tie dye", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 323, + "metadata_dict": { + "fur": "golden brown", + "eyes": "zombie", + "clothes": "smoking jacket", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 324, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven cigarette", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 325, + "metadata_dict": { + "eyes": "blindfold", + "fur": "gray", + "background": "aquamarine", + "hat": "cowboy hat", + "clothes": "sleeveless logo t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 326, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "horns", + "clothes": "blue dress", + "fur": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 327, + "metadata_dict": { + "fur": "red", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 328, + "metadata_dict": { + "fur": "brown", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "orange", + "eyes": "bored", + "clothes": "tanktop", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 329, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "hat": "seaman's hat", + "clothes": "sailor shirt", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 330, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "fur": "black", + "clothes": "service", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 331, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin", + "hat": "seaman's hat", + "background": "aquamarine", + "clothes": "toga", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 332, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "eyes": "3d", + "clothes": "tuxedo tee", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 333, + "metadata_dict": { + "eyes": "closed", + "hat": "baby's bonnet", + "earring": "gold stud", + "mouth": "tongue out", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 334, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "yellow", + "hat": "bayc hat red", + "fur": "death bot", + "earring": "cross", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 335, + "metadata_dict": { + "clothes": "black holes t", + "background": "orange", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 336, + "metadata_dict": { + "mouth": "grin", + "fur": "dmt", + "eyes": "coins", + "background": "aquamarine", + "clothes": "biker vest", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 337, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "mouth": "jovial", + "fur": "brown", + "hat": "bowler", + "earring": "cross", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 338, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "clothes": "black t", + "hat": "fez", + "mouth": "phoneme vuh", + "eyes": "3d", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 339, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme ooo", + "fur": "dark brown", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 340, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "earring": "diamond stud", + "hat": "fez", + "background": "blue", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 341, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "commie hat", + "eyes": "crazy", + "background": "army green", + "fur": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 342, + "metadata_dict": { + "clothes": "work vest", + "mouth": "bored pipe", + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 343, + "metadata_dict": { + "hat": "party hat 2", + "earring": "diamond stud", + "eyes": "coins", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 344, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "hat": "irish boho", + "clothes": "tuxedo tee", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 345, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "hat": "girl's hair short", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 346, + "metadata_dict": { + "fur": "cream", + "clothes": "sleeveless t", + "background": "aquamarine", + "mouth": "bored bubblegum", + "eyes": "bored", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 347, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "cream", + "eyes": "bored", + "background": "gray", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 348, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin gold grill", + "hat": "baby's bonnet", + "clothes": "sailor shirt", + "fur": "red", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 349, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven pipe", + "clothes": "leather jacket", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 350, + "metadata_dict": { + "hat": "baby's bonnet", + "earring": "gold hoop", + "eyes": "coins", + "clothes": "black suit", + "background": "aquamarine", + "fur": "pink", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 351, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "s&m hat", + "background": "gray", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 352, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme ooo", + "earring": "gold hoop", + "hat": "girl's hair short", + "fur": "brown", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 353, + "metadata_dict": { + "fur": "tan", + "hat": "bandana blue", + "clothes": "black holes t", + "background": "aquamarine", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 354, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "blue dress", + "hat": "baby's bonnet", + "fur": "golden brown", + "background": "aquamarine", + "earring": "gold stud", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 355, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "pink", + "eyes": "bored", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 356, + "metadata_dict": { + "fur": "gray", + "eyes": "sleepy", + "clothes": "bone necklace", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 357, + "metadata_dict": { + "eyes": "zombie", + "fur": "dark brown", + "hat": "bowler", + "clothes": "stunt jacket", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 358, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "clothes": "wool turtleneck", + "earring": "silver stud", + "fur": "noise", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 359, + "metadata_dict": { + "eyes": "coins", + "background": "blue", + "clothes": "hawaiian", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 360, + "metadata_dict": { + "eyes": "zombie", + "mouth": "bored unshaven bubblegum", + "hat": "bayc flipped brim", + "clothes": "toga", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 361, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "hat": "fez", + "fur": "pink", + "clothes": "pimp coat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 362, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin", + "eyes": "sleepy", + "fur": "black", + "background": "gray", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 363, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "grin", + "clothes": "black t", + "background": "orange", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 364, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "sushi chef headband", + "mouth": "grin", + "earring": "gold stud", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 365, + "metadata_dict": { + "eyes": "coins", + "background": "aquamarine", + "fur": "red", + "clothes": "tie dye", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 366, + "metadata_dict": { + "fur": "cream", + "clothes": "caveman pelt", + "background": "blue", + "eyes": "bored", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 367, + "metadata_dict": { + "hat": "horns", + "clothes": "black t", + "background": "aquamarine", + "mouth": "jovial", + "fur": "red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 368, + "metadata_dict": { + "hat": "sea captain's hat", + "background": "orange", + "clothes": "guayabera", + "mouth": "bored", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 369, + "metadata_dict": { + "eyes": "sleepy", + "fur": "dark brown", + "hat": "beanie", + "background": "purple", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 370, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "hat": "irish boho", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 371, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "clothes": "rainbow suspenders", + "mouth": "dumbfounded", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 372, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "zombie", + "earring": "silver hoop", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 373, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 374, + "metadata_dict": { + "fur": "golden brown", + "hat": "baby's bonnet", + "eyes": "coins", + "earring": "diamond stud", + "clothes": "guayabera", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 375, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 376, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "fur": "golden brown", + "hat": "fez", + "background": "yellow", + "earring": "cross", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 377, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "hat": "sushi chef headband", + "mouth": "grin", + "fur": "dark brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 378, + "metadata_dict": { + "hat": "irish boho", + "fur": "dmt", + "earring": "gold stud", + "background": "orange", + "clothes": "tuxedo tee", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 379, + "metadata_dict": { + "clothes": "striped tee", + "background": "aquamarine", + "mouth": "bored cigarette", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 380, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "jovial", + "fur": "pink", + "clothes": "bayc t black", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 381, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "eyes": "bored", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 382, + "metadata_dict": { + "eyes": "coins", + "mouth": "phoneme vuh", + "fur": "dark brown", + "clothes": "prom dress", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 383, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "fur": "noise", + "hat": "fisherman's hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 384, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "hat": "stuntman helmet", + "background": "orange", + "clothes": "prom dress", + "eyes": "sleepy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 385, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "eyes": "bloodshot", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 386, + "metadata_dict": { + "mouth": "bored dagger", + "background": "yellow", + "fur": "black", + "hat": "bowler", + "eyes": "sleepy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 387, + "metadata_dict": { + "fur": "tan", + "clothes": "bayc t red", + "mouth": "rage", + "background": "blue", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 388, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "black", + "hat": "army hat", + "mouth": "tongue out", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 389, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "hat": "seaman's hat", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 390, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "orange", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 391, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "golden brown", + "earring": "silver hoop", + "background": "yellow", + "clothes": "stunt jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 392, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "brown", + "eyes": "robot", + "mouth": "bored", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 393, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "hat": "horns", + "fur": "dmt", + "earring": "silver stud", + "clothes": "caveman pelt", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 394, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "sushi chef headband", + "clothes": "leather jacket", + "eyes": "3d", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 395, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "smoking jacket", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 396, + "metadata_dict": { + "clothes": "sailor shirt", + "earring": "silver stud", + "fur": "dark brown", + "mouth": "tongue out", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 397, + "metadata_dict": { + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 398, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "wool turtleneck", + "mouth": "phoneme ooo", + "hat": "baby's bonnet", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 399, + "metadata_dict": { + "hat": "irish boho", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 400, + "metadata_dict": { + "clothes": "tie dye", + "fur": "dark brown", + "hat": "fisherman's hat", + "mouth": "phoneme wah", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 401, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "earring": "silver stud", + "fur": "red", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 402, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "fur": "pink", + "mouth": "bored cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 403, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme vuh", + "fur": "black", + "background": "orange", + "clothes": "sleeveless logo t", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 404, + "metadata_dict": { + "eyes": "closed", + "mouth": "discomfort", + "hat": "seaman's hat", + "clothes": "black t", + "fur": "noise", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 405, + "metadata_dict": { + "eyes": "heart", + "hat": "bandana blue", + "clothes": "black t", + "background": "orange", + "mouth": "bored unshaven cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 406, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin gold grill", + "hat": "baby's bonnet", + "fur": "gray", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 407, + "metadata_dict": { + "background": "gray", + "mouth": "dumbfounded", + "clothes": "stunt jacket", + "hat": "short mohawk", + "earring": "silver hoop", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 408, + "metadata_dict": { + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "navy striped tee", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 409, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "girl's hair pink", + "fur": "pink", + "eyes": "3d", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 410, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "bored pipe", + "clothes": "bayc t black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 411, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "prison jumpsuit", + "hat": "fez", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 412, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme oh", + "fur": "golden brown", + "clothes": "sleeveless logo t", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 413, + "metadata_dict": { + "earring": "diamond stud", + "background": "yellow", + "mouth": "phoneme vuh", + "fur": "pink", + "eyes": "bloodshot", + "hat": "beanie", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 414, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "fur": "red", + "background": "aquamarine", + "earring": "gold stud", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 415, + "metadata_dict": { + "clothes": "black t", + "background": "blue", + "hat": "beanie", + "mouth": "bored", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 416, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "fur": "brown", + "mouth": "bored unshaven cigarette", + "hat": "bowler", + "clothes": "guayabera", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 417, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "fur": "pink", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 418, + "metadata_dict": { + "mouth": "jovial", + "background": "blue", + "earring": "gold stud", + "fur": "pink", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 419, + "metadata_dict": { + "background": "new punk blue", + "hat": "sushi chef headband", + "eyes": "hypnotized", + "fur": "golden brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 420, + "metadata_dict": { + "eyes": "3d", + "fur": "noise", + "clothes": "bayc t black", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 421, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "heart", + "clothes": "wool turtleneck", + "mouth": "dumbfounded", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 422, + "metadata_dict": { + "fur": "cheetah", + "mouth": "bored unshaven", + "eyes": "crazy", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 423, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "bored", + "fur": "death bot", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 424, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "golden brown", + "earring": "gold hoop", + "eyes": "3d", + "background": "yellow", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 425, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "background": "blue", + "clothes": "tanktop", + "fur": "death bot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 426, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "clothes": "striped tee", + "mouth": "bored pipe", + "background": "orange", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 427, + "metadata_dict": { + "mouth": "grin gold grill", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 428, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "silver stud", + "background": "orange", + "clothes": "guayabera", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 429, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 430, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "mouth": "grin", + "eyes": "coins", + "hat": "bayc flipped brim", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 431, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "fur": "dark brown", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 432, + "metadata_dict": { + "mouth": "phoneme wah", + "clothes": "biker vest", + "fur": "dark brown", + "hat": "vietnam era helmet", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 433, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "tan", + "clothes": "lumberjack shirt", + "hat": "party hat 1", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 434, + "metadata_dict": { + "background": "blue", + "earring": "silver hoop", + "mouth": "bored", + "fur": "white", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 435, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven bubblegum", + "background": "blue", + "hat": "fisherman's hat", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 436, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bone necklace", + "eyes": "bored", + "hat": "bowler", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 437, + "metadata_dict": { + "fur": "gray", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "biker vest", + "hat": "short mohawk", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 438, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "3d", + "fur": "dark brown", + "hat": "bayc flipped brim", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 439, + "metadata_dict": { + "clothes": "prison jumpsuit", + "earring": "gold stud", + "fur": "dark brown", + "eyes": "bored", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 440, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "sleeveless t", + "hat": "girl's hair pink", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 441, + "metadata_dict": { + "clothes": "bandolier", + "background": "blue", + "hat": "bunny ears", + "eyes": "blue beams", + "fur": "death bot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 442, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "clothes": "tuxedo tee", + "hat": "fisherman's hat", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 443, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "holographic", + "hat": "fez", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 444, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "lumberjack shirt", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "bunny ears", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 445, + "metadata_dict": { + "eyes": "blindfold", + "earring": "gold hoop", + "background": "blue", + "fur": "black", + "clothes": "smoking jacket", + "hat": "safari", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 446, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "zombie", + "mouth": "phoneme vuh", + "clothes": "cowboy shirt", + "background": "gray", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 447, + "metadata_dict": { + "fur": "tan", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 448, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "blue dress", + "earring": "gold stud", + "background": "orange", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 449, + "metadata_dict": { + "fur": "tan", + "clothes": "bandolier", + "hat": "seaman's hat", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 450, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "bayc t black", + "hat": "army hat", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 451, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "background": "orange", + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "ww2 pilot helm", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 452, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 453, + "metadata_dict": { + "fur": "cream", + "hat": "sushi chef headband", + "earring": "gold hoop", + "clothes": "tweed suit", + "mouth": "bored pipe", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 454, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "blue dress", + "hat": "short mohawk", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 455, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "fur": "pink", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 456, + "metadata_dict": { + "background": "new punk blue", + "hat": "baby's bonnet", + "earring": "silver stud", + "eyes": "robot", + "mouth": "bored unshaven kazoo", + "fur": "dark brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 457, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "fur": "dark brown", + "background": "purple", + "earring": "cross", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 458, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "black t", + "earring": "silver stud", + "fur": "red", + "mouth": "tongue out", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 459, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "mouth": "rage", + "clothes": "prison jumpsuit", + "earring": "gold stud", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 460, + "metadata_dict": { + "fur": "gray", + "mouth": "phoneme vuh", + "background": "orange", + "eyes": "bloodshot", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 461, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "dmt", + "eyes": "coins", + "background": "yellow", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 462, + "metadata_dict": { + "mouth": "bored cigarette", + "eyes": "blindfold", + "background": "orange", + "fur": "dark brown", + "clothes": "navy striped tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 463, + "metadata_dict": { + "eyes": "laser eyes", + "background": "aquamarine", + "mouth": "bored cigarette", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 464, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "hat": "seaman's hat", + "earring": "gold hoop", + "background": "orange", + "mouth": "bored cigar", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 465, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "fur": "gray", + "background": "blue", + "clothes": "biker vest", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 466, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "black", + "background": "purple", + "clothes": "hip hop", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 467, + "metadata_dict": { + "hat": "s&m hat", + "fur": "gray", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 468, + "metadata_dict": { + "fur": "golden brown", + "clothes": "work vest", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 469, + "metadata_dict": { + "background": "gray", + "eyes": "coins", + "mouth": "bored", + "fur": "noise" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 470, + "metadata_dict": { + "fur": "tan", + "clothes": "black t", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 471, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "dark brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 472, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "background": "blue", + "clothes": "tie dye", + "hat": "short mohawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 473, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "discomfort", + "earring": "gold stud", + "clothes": "smoking jacket", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 474, + "metadata_dict": { + "background": "gray", + "clothes": "toga", + "mouth": "bored bubblegum", + "earring": "silver hoop", + "hat": "fisherman's hat", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 475, + "metadata_dict": { + "hat": "bayc hat black", + "background": "gray", + "eyes": "3d", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 476, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "pink", + "eyes": "bored", + "background": "gray", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 477, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "hat": "ww2 pilot helm", + "clothes": "stunt jacket", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 478, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "coins", + "background": "aquamarine", + "hat": "commie hat", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 479, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 480, + "metadata_dict": { + "fur": "tan", + "clothes": "tweed suit", + "mouth": "bored pipe", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 481, + "metadata_dict": { + "mouth": "bored unshaven dagger", + "earring": "gold stud", + "eyes": "3d", + "clothes": "bayc t black", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 482, + "metadata_dict": { + "clothes": "bandolier", + "hat": "seaman's hat", + "background": "blue", + "fur": "brown", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 483, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "dark brown", + "background": "gray", + "clothes": "navy striped tee", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 484, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "jovial", + "clothes": "cowboy shirt", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 485, + "metadata_dict": { + "fur": "brown", + "background": "yellow", + "mouth": "bored", + "eyes": "eyepatch" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 486, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bloodshot", + "clothes": "bayc t black", + "fur": "dark brown", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 487, + "metadata_dict": { + "fur": "tan", + "clothes": "wool turtleneck", + "hat": "s&m hat", + "background": "blue", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 488, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "prussian helmet", + "background": "blue", + "mouth": "bored pizza" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 489, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "noise", + "eyes": "bored", + "clothes": "tanktop", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 490, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "grin multicolored", + "hat": "fez", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 491, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "baby's bonnet", + "background": "blue", + "clothes": "smoking jacket", + "earring": "silver hoop", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 492, + "metadata_dict": { + "mouth": "grin", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "dark brown", + "hat": "army hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 493, + "metadata_dict": { + "earring": "gold hoop", + "fur": "black", + "mouth": "bored unshaven cigar", + "clothes": "sleeveless logo t", + "hat": "beanie", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 494, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "vietnam era helmet", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 495, + "metadata_dict": { + "fur": "pink", + "eyes": "bored", + "hat": "bowler", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 496, + "metadata_dict": { + "fur": "tan", + "eyes": "3d", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 497, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "sailor shirt", + "mouth": "phoneme vuh", + "background": "orange", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 498, + "metadata_dict": { + "fur": "brown", + "eyes": "bloodshot", + "background": "gray", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 499, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "mouth": "grin diamond grill", + "eyes": "robot", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 500, + "metadata_dict": { + "eyes": "coins", + "background": "blue", + "hat": "army hat", + "fur": "cheetah", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 501, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "background": "blue", + "mouth": "bored bubblegum", + "clothes": "smoking jacket", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 502, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "work vest", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 503, + "metadata_dict": { + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "eyes": "bloodshot", + "hat": "ww2 pilot helm", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 504, + "metadata_dict": { + "mouth": "bored party horn", + "background": "aquamarine", + "fur": "black", + "hat": "beanie", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 505, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "hat": "vietnam era helmet", + "fur": "robot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 506, + "metadata_dict": { + "fur": "cream", + "hat": "stuntman helmet", + "clothes": "work vest", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 507, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven cigarette", + "clothes": "black t", + "hat": "girl's hair pink", + "background": "gray", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 508, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "bandolier", + "eyes": "robot", + "hat": "fisherman's hat", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 509, + "metadata_dict": { + "mouth": "grin diamond grill", + "background": "aquamarine", + "fur": "black", + "hat": "beanie", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 510, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored cigar", + "fur": "golden brown", + "eyes": "sad", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 511, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "fur": "red", + "background": "blue", + "hat": "faux hawk", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 512, + "metadata_dict": { + "clothes": "space suit", + "mouth": "grin", + "eyes": "coins", + "background": "aquamarine", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 513, + "metadata_dict": { + "mouth": "discomfort", + "hat": "short mohawk", + "fur": "white", + "background": "army green", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 514, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "tweed suit", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 515, + "metadata_dict": { + "clothes": "blue dress", + "hat": "seaman's hat", + "mouth": "bored bubblegum", + "fur": "cheetah", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 516, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "biker vest", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 517, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored party horn", + "hat": "beanie", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 518, + "metadata_dict": { + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored", + "clothes": "navy striped tee", + "hat": "police motorcycle helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 519, + "metadata_dict": { + "clothes": "striped tee", + "fur": "gray", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "background": "yellow", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 520, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "clothes": "blue dress", + "earring": "diamond stud", + "background": "blue", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 521, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "mouth": "rage", + "earring": "silver stud", + "clothes": "tuxedo tee", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 522, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "fur": "brown", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 523, + "metadata_dict": { + "eyes": "zombie", + "mouth": "jovial", + "fur": "dark brown", + "background": "yellow", + "clothes": "hip hop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 524, + "metadata_dict": { + "mouth": "grin", + "clothes": "tweed suit", + "fur": "black", + "background": "gray", + "eyes": "sleepy", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 525, + "metadata_dict": { + "eyes": "coins", + "hat": "stuntman helmet", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "background": "yellow", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 526, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "phoneme vuh", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 527, + "metadata_dict": { + "hat": "horns", + "eyes": "bloodshot", + "mouth": "tongue out", + "fur": "brown", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 528, + "metadata_dict": { + "clothes": "black holes t", + "earring": "gold stud", + "eyes": "bloodshot", + "hat": "short mohawk", + "mouth": "small grin", + "fur": "solid gold", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 529, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "background": "blue", + "hat": "spinner hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 530, + "metadata_dict": { + "eyes": "closed", + "earring": "diamond stud", + "mouth": "dumbfounded", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 531, + "metadata_dict": { + "clothes": "prison jumpsuit", + "eyes": "3d", + "background": "yellow", + "fur": "white", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 532, + "metadata_dict": { + "background": "new punk blue", + "mouth": "small grin", + "fur": "brown", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 533, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 534, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "fur": "red", + "eyes": "bored", + "background": "gray", + "hat": "vietnam era helmet", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 535, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "black", + "clothes": "lab coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 536, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "biker vest", + "hat": "bowler", + "background": "purple", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 537, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "sunglasses", + "mouth": "rage", + "background": "blue", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 538, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "bored unshaven pipe", + "eyes": "3d", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 539, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "hat": "seaman's hat", + "eyes": "coins", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 540, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "earring": "gold hoop", + "clothes": "prom dress", + "background": "blue", + "eyes": "3d", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 541, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "fur": "black", + "clothes": "tanktop", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 542, + "metadata_dict": { + "clothes": "kings robe", + "fur": "gray", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored cigar", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 543, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "phoneme ooo", + "earring": "gold hoop", + "background": "blue", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 544, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "eyepatch", + "hat": "sushi chef headband", + "earring": "silver stud", + "clothes": "tuxedo tee", + "fur": "solid gold", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 545, + "metadata_dict": { + "mouth": "grin", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "hat": "bunny ears", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 546, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "sushi chef headband", + "background": "aquamarine", + "clothes": "cowboy shirt", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 547, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "eyes": "coins", + "fur": "black", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 548, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "phoneme ooo", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 549, + "metadata_dict": { + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 550, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin diamond grill", + "earring": "silver stud", + "hat": "short mohawk", + "background": "gray", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 551, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "hat": "seaman's hat", + "background": "aquamarine", + "clothes": "work vest", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 552, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "brown", + "hat": "girl's hair short", + "background": "gray", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 553, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "discomfort", + "fur": "dark brown", + "hat": "safari", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 554, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "zombie", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 555, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "robot", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 556, + "metadata_dict": { + "hat": "irish boho", + "fur": "gray", + "mouth": "bored unshaven cigar", + "background": "yellow", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 557, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "prussian helmet", + "clothes": "tweed suit", + "fur": "dark brown", + "background": "purple", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 558, + "metadata_dict": { + "eyes": "scumbag", + "fur": "dark brown", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 559, + "metadata_dict": { + "clothes": "black t", + "mouth": "dumbfounded", + "background": "orange", + "hat": "bayc flipped brim", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 560, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "background": "orange", + "eyes": "bloodshot", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 561, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 562, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "background": "blue", + "earring": "gold stud", + "eyes": "bloodshot", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 563, + "metadata_dict": { + "background": "yellow", + "fur": "tan", + "eyes": "blindfold", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 564, + "metadata_dict": { + "hat": "horns", + "background": "gray", + "mouth": "jovial", + "earring": "gold stud", + "clothes": "biker vest", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 565, + "metadata_dict": { + "clothes": "striped tee", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 566, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "work vest", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 567, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "3d", + "fur": "dark brown", + "mouth": "bored", + "clothes": "sleeveless logo t", + "earring": "cross", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 568, + "metadata_dict": { + "eyes": "bloodshot", + "mouth": "bored", + "fur": "death bot", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 569, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "hat": "s&m hat", + "background": "orange", + "clothes": "sleeveless logo t", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 570, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "coins", + "mouth": "jovial", + "background": "orange", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 571, + "metadata_dict": { + "clothes": "vietnam jacket", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 572, + "metadata_dict": { + "fur": "robot", + "clothes": "black t", + "mouth": "small grin", + "earring": "silver hoop", + "hat": "commie hat", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 573, + "metadata_dict": { + "fur": "tan", + "background": "blue", + "hat": "short mohawk", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 574, + "metadata_dict": { + "eyes": "holographic", + "clothes": "sleeveless t", + "mouth": "dumbfounded", + "background": "blue", + "fur": "black", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 575, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "eyes": "coins", + "clothes": "biker vest", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 576, + "metadata_dict": { + "fur": "brown", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 577, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "hat": "sushi chef headband", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 578, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "diamond stud", + "eyes": "sleepy", + "hat": "short mohawk", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 579, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "hat": "bayc flipped brim", + "eyes": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 580, + "metadata_dict": { + "eyes": "zombie", + "background": "orange", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "hat": "halo", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 581, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "zombie", + "earring": "gold hoop", + "mouth": "phoneme vuh", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 582, + "metadata_dict": { + "fur": "cheetah", + "background": "purple", + "mouth": "bored", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 583, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "earring": "silver stud", + "fur": "black", + "clothes": "tuxedo tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 584, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "hat": "fisherman's hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 585, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "fur": "tan", + "clothes": "leather punk jacket", + "background": "orange", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 586, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "phoneme oh", + "background": "aquamarine", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 587, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "earring": "gold stud", + "clothes": "bayc t black", + "hat": "fisherman's hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 588, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "background": "aquamarine", + "hat": "army hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 589, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver hoop", + "hat": "commie hat", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 590, + "metadata_dict": { + "eyes": "scumbag", + "background": "gray", + "fur": "brown", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 591, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "leather jacket", + "eyes": "blue beams", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 592, + "metadata_dict": { + "fur": "tan", + "mouth": "jovial", + "background": "orange", + "hat": "ww2 pilot helm", + "eyes": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 593, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "mouth": "dumbfounded", + "eyes": "3d", + "hat": "cowboy hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 594, + "metadata_dict": { + "mouth": "grin", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "fur": "noise", + "hat": "bunny ears", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 595, + "metadata_dict": { + "fur": "tan", + "clothes": "wool turtleneck", + "eyes": "bloodshot", + "mouth": "bored", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 596, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "work vest", + "background": "orange", + "fur": "cheetah", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 597, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme vuh", + "background": "gray", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 598, + "metadata_dict": { + "background": "gray", + "fur": "brown", + "mouth": "bored", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 599, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "background": "blue", + "mouth": "bored", + "clothes": "navy striped tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 600, + "metadata_dict": { + "earring": "gold hoop", + "fur": "pink", + "clothes": "guayabera", + "mouth": "bored cigarette", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 601, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "mouth": "rage", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 602, + "metadata_dict": { + "eyes": "heart", + "background": "gray", + "clothes": "tie dye", + "fur": "brown", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 603, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "grin", + "fur": "dark brown", + "hat": "beanie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 604, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc flipped brim", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 605, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "clothes": "rainbow suspenders", + "hat": "king's crown", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 606, + "metadata_dict": { + "eyes": "closed", + "hat": "spinner hat", + "fur": "dark brown", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 607, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "irish boho", + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 608, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "striped tee", + "mouth": "dumbfounded", + "fur": "dark brown", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 609, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme oh", + "fur": "dark brown", + "background": "yellow", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 610, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored bubblegum", + "fur": "pink", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 611, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "wool turtleneck", + "fur": "golden brown", + "mouth": "grin", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 612, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "clothes": "tweed suit", + "background": "blue", + "fur": "dark brown", + "hat": "army hat", + "earring": "silver hoop", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 613, + "metadata_dict": { + "eyes": "scumbag", + "fur": "gray", + "mouth": "bored unshaven bubblegum", + "hat": "party hat 1", + "background": "aquamarine", + "earring": "gold stud", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 614, + "metadata_dict": { + "hat": "horns", + "clothes": "space suit", + "earring": "gold hoop", + "mouth": "rage", + "background": "orange", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 615, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold stud", + "eyes": "bored", + "hat": "girl's hair short", + "fur": "brown", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 616, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "discomfort", + "background": "gray", + "fur": "brown", + "hat": "fez", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 617, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "earring": "gold stud", + "eyes": "bloodshot", + "mouth": "phoneme wah", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 618, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "eyes": "bored", + "mouth": "tongue out", + "hat": "police motorcycle helmet", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 619, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "bored party horn", + "fur": "black", + "background": "orange", + "eyes": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 620, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "eyes": "3d", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 621, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "coins", + "background": "orange", + "fur": "dark brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 622, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin", + "fur": "dmt", + "earring": "silver stud", + "background": "purple", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 623, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "clothes": "cowboy shirt", + "fur": "pink", + "background": "orange", + "eyes": "bored", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 624, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "grin", + "clothes": "tie dye", + "hat": "bayc hat red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 625, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "rage", + "eyes": "bloodshot", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 626, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "eyes": "bloodshot", + "fur": "noise", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 627, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "stunt jacket", + "hat": "girl's hair short", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 628, + "metadata_dict": { + "clothes": "striped tee", + "background": "gray", + "hat": "fez", + "fur": "brown", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 629, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black holes t", + "eyes": "coins", + "earring": "silver stud", + "fur": "dark brown", + "hat": "army hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 630, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "holographic", + "hat": "s&m hat", + "fur": "black", + "background": "orange", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 631, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "leather jacket", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 632, + "metadata_dict": { + "eyes": "heart", + "background": "aquamarine", + "fur": "noise", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 633, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "seaman's hat", + "earring": "silver stud", + "mouth": "tongue out", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 634, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "clothes": "sailor shirt", + "background": "orange", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 635, + "metadata_dict": { + "eyes": "x eyes", + "hat": "horns", + "fur": "dark brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 636, + "metadata_dict": { + "fur": "dmt", + "eyes": "zombie", + "mouth": "dumbfounded", + "clothes": "cowboy shirt", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 637, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "clothes": "smoking jacket", + "eyes": "bored", + "fur": "brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 638, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "fur": "dark brown", + "mouth": "small grin", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 639, + "metadata_dict": { + "fur": "cream", + "clothes": "blue dress", + "eyes": "coins", + "mouth": "jovial", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 640, + "metadata_dict": { + "clothes": "tweed suit", + "earring": "silver stud", + "background": "orange", + "mouth": "bored", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 641, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "background": "gray", + "clothes": "bone necklace", + "fur": "death bot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 642, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "mouth": "jovial", + "fur": "black", + "earring": "silver hoop", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 643, + "metadata_dict": { + "hat": "bayc flipped brim", + "clothes": "bayc t black", + "mouth": "small grin", + "background": "yellow", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 644, + "metadata_dict": { + "background": "new punk blue", + "hat": "bandana blue", + "mouth": "grin", + "fur": "black", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 645, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "background": "yellow", + "fur": "brown", + "hat": "vietnam era helmet", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 646, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin multicolored", + "clothes": "work vest", + "fur": "pink", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 647, + "metadata_dict": { + "mouth": "discomfort", + "fur": "golden brown", + "eyes": "coins", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 648, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "dmt", + "background": "aquamarine", + "clothes": "hip hop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 649, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven party horn", + "background": "aquamarine", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 650, + "metadata_dict": { + "fur": "red", + "mouth": "bored kazoo", + "eyes": "3d", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 651, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black suit", + "fur": "dark brown", + "mouth": "tongue out", + "eyes": "sleepy", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 652, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "grin multicolored", + "background": "yellow", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 653, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored", + "clothes": "rainbow suspenders" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 654, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "aquamarine", + "clothes": "tanktop", + "hat": "beanie", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 655, + "metadata_dict": { + "clothes": "black t", + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 656, + "metadata_dict": { + "fur": "trippy", + "mouth": "grin", + "eyes": "3d", + "clothes": "toga", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 657, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "hypnotized", + "fur": "dark brown", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 658, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "spinner hat", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 659, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "spinner hat", + "fur": "black", + "earring": "silver hoop", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 660, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 661, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "blindfold", + "fur": "red", + "background": "blue", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 662, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "sailor shirt", + "earring": "silver hoop", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 663, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "fur": "black", + "eyes": "bored", + "clothes": "toga", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 664, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "golden brown", + "hat": "fez", + "background": "orange", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 665, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "clothes": "work vest", + "mouth": "bored unshaven kazoo", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 666, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "holographic", + "hat": "spinner hat", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 667, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "scumbag", + "earring": "diamond stud", + "background": "blue", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 668, + "metadata_dict": { + "background": "aquamarine", + "hat": "vietnam era helmet", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 669, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "coins", + "earring": "silver stud", + "fur": "brown", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 670, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 671, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "eyepatch", + "fur": "tan", + "clothes": "prison jumpsuit", + "hat": "bayc flipped brim", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 672, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "gray", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 673, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "pink", + "clothes": "guayabera", + "eyes": "bored", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 674, + "metadata_dict": { + "mouth": "dumbfounded", + "earring": "silver stud", + "clothes": "admirals coat", + "background": "army green", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 675, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "fur": "black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 676, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "clothes": "stunt jacket", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 677, + "metadata_dict": { + "background": "blue", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 678, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "background": "orange", + "eyes": "crazy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 679, + "metadata_dict": { + "fur": "tan", + "hat": "cowboy hat", + "background": "gray", + "eyes": "crazy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 680, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "clothes": "biker vest", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 681, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "background": "blue", + "mouth": "bored bubblegum", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 682, + "metadata_dict": { + "fur": "golden brown", + "hat": "king's crown", + "earring": "gold stud", + "eyes": "bloodshot", + "mouth": "bored pizza", + "clothes": "lab coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 683, + "metadata_dict": { + "mouth": "discomfort", + "fur": "dark brown", + "background": "blue", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 684, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "phoneme vuh", + "fur": "red", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 685, + "metadata_dict": { + "eyes": "blindfold", + "hat": "seaman's hat", + "earring": "gold hoop", + "mouth": "dumbfounded", + "fur": "pink", + "background": "gray", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 686, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "clothes": "tuxedo tee", + "fur": "death bot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 687, + "metadata_dict": { + "hat": "party hat 2", + "fur": "cream", + "mouth": "rage", + "background": "aquamarine", + "clothes": "leather jacket", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 688, + "metadata_dict": { + "hat": "party hat 2", + "earring": "gold hoop", + "fur": "black", + "eyes": "bored", + "clothes": "lab coat", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 689, + "metadata_dict": { + "mouth": "phoneme wah", + "eyes": "closed", + "clothes": "sleeveless logo t", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 690, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "pink", + "background": "orange", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 691, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "tweed suit", + "background": "aquamarine", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 692, + "metadata_dict": { + "hat": "bayc hat black", + "background": "purple", + "mouth": "bored cigarette", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 693, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored pipe", + "background": "blue", + "fur": "cheetah", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 694, + "metadata_dict": { + "eyes": "zombie", + "earring": "gold stud", + "background": "orange", + "mouth": "small grin", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 695, + "metadata_dict": { + "mouth": "phoneme vuh", + "earring": "gold stud", + "eyes": "3d", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 696, + "metadata_dict": { + "clothes": "kings robe", + "hat": "laurel wreath", + "fur": "golden brown", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 697, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "tan", + "mouth": "phoneme vuh", + "background": "aquamarine", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 698, + "metadata_dict": { + "clothes": "puffy vest", + "background": "aquamarine", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 699, + "metadata_dict": { + "fur": "gray", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 700, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 701, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "eyes": "zombie", + "clothes": "tweed suit", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 702, + "metadata_dict": { + "clothes": "admirals coat", + "fur": "gray", + "background": "gray", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 703, + "metadata_dict": { + "background": "aquamarine", + "hat": "bayc flipped brim", + "eyes": "bored", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 704, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven pipe", + "eyes": "bloodshot", + "hat": "bunny ears", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 705, + "metadata_dict": { + "background": "new punk blue", + "clothes": "prison jumpsuit", + "mouth": "jovial", + "fur": "black", + "earring": "silver hoop", + "hat": "bowler", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 706, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "clothes": "leather punk jacket", + "earring": "gold stud", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 707, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "black", + "earring": "silver hoop", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 708, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "fur": "cheetah", + "mouth": "phoneme wah", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 709, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "seaman's hat", + "fur": "gray", + "background": "aquamarine", + "clothes": "bayc t black", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 710, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 711, + "metadata_dict": { + "mouth": "bored party horn", + "fur": "black", + "eyes": "bored", + "clothes": "toga", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 712, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "phoneme ooo", + "hat": "prussian helmet", + "clothes": "prison jumpsuit", + "fur": "red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 713, + "metadata_dict": { + "mouth": "discomfort", + "hat": "seaman's hat", + "background": "aquamarine", + "fur": "noise", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 714, + "metadata_dict": { + "eyes": "holographic", + "clothes": "puffy vest", + "mouth": "jovial", + "fur": "black", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 715, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "orange", + "eyes": "bored", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 716, + "metadata_dict": { + "hat": "prussian helmet", + "eyes": "bored", + "earring": "silver hoop", + "fur": "cheetah", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 717, + "metadata_dict": { + "clothes": "bandolier", + "hat": "s&m hat", + "mouth": "phoneme ooo", + "fur": "black", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 718, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "prussian helmet", + "background": "aquamarine", + "mouth": "jovial", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 719, + "metadata_dict": { + "mouth": "grin", + "background": "purple", + "hat": "bunny ears", + "fur": "cheetah", + "eyes": "sleepy", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 720, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "earring": "silver stud", + "eyes": "3d", + "hat": "girl's hair short", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 721, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "silver stud", + "hat": "bayc flipped brim", + "eyes": "bored", + "fur": "brown", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 722, + "metadata_dict": { + "fur": "tan", + "clothes": "bone tee", + "earring": "silver hoop", + "background": "purple", + "mouth": "phoneme wah", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 723, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "hat": "fisherman's hat", + "mouth": "bored", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 724, + "metadata_dict": { + "hat": "fez", + "background": "aquamarine", + "clothes": "work vest", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 725, + "metadata_dict": { + "eyes": "holographic", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 726, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "black", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 727, + "metadata_dict": { + "mouth": "bored party horn", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "toga", + "fur": "brown", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 728, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "tan", + "earring": "silver stud", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 729, + "metadata_dict": { + "eyes": "x eyes", + "fur": "dark brown", + "hat": "army hat", + "earring": "cross", + "background": "purple", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 730, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme ooo", + "clothes": "tweed suit", + "background": "blue", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 731, + "metadata_dict": { + "mouth": "jovial", + "fur": "red", + "eyes": "crazy", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 732, + "metadata_dict": { + "clothes": "wool turtleneck", + "earring": "diamond stud", + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "hat": "bunny ears", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 733, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "clothes": "tweed suit", + "background": "orange", + "hat": "faux hawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 734, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "fur": "golden brown", + "hat": "prussian helmet", + "eyes": "3d", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 735, + "metadata_dict": { + "background": "purple", + "fur": "black", + "eyes": "sleepy", + "mouth": "rage" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 736, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "fur": "cheetah", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 737, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "bored", + "clothes": "prom dress", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 738, + "metadata_dict": { + "mouth": "bored", + "fur": "white", + "eyes": "wide eyed", + "hat": "beanie", + "earring": "silver hoop", + "clothes": "lab coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 739, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "tan", + "mouth": "phoneme oh", + "eyes": "zombie", + "earring": "silver hoop", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 740, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "fur": "black", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 741, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "eyes": "bored", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 742, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "tanktop", + "fur": "cheetah", + "background": "purple", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 743, + "metadata_dict": { + "fur": "dmt", + "mouth": "bored unshaven bubblegum", + "hat": "girl's hair pink", + "earring": "gold stud", + "eyes": "bored", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 744, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "clothes": "bone necklace", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 745, + "metadata_dict": { + "fur": "golden brown", + "eyes": "bloodshot", + "hat": "short mohawk", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 746, + "metadata_dict": { + "hat": "party hat 1", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "tanktop", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 747, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "gray", + "mouth": "jovial", + "clothes": "leather jacket", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 748, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "orange", + "eyes": "bloodshot", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 749, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "scumbag", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 750, + "metadata_dict": { + "background": "new punk blue", + "hat": "bandana blue", + "eyes": "sleepy", + "mouth": "bored unshaven cigarette", + "clothes": "prom dress", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 751, + "metadata_dict": { + "fur": "black", + "eyes": "x eyes", + "hat": "prussian helmet", + "clothes": "sailor shirt", + "mouth": "jovial", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 752, + "metadata_dict": { + "fur": "brown", + "background": "gray", + "mouth": "bored", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 753, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "blindfold", + "background": "aquamarine", + "mouth": "bored unshaven cigar", + "fur": "brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 754, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "background": "aquamarine", + "fur": "brown", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 755, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "dmt", + "clothes": "tie dye", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 756, + "metadata_dict": { + "fur": "tan", + "background": "aquamarine", + "clothes": "lab coat", + "hat": "beanie", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 757, + "metadata_dict": { + "fur": "tan", + "background": "orange", + "mouth": "bored", + "eyes": "angry", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 758, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "clothes": "sleeveless logo t", + "hat": "bayc hat red", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 759, + "metadata_dict": { + "fur": "red", + "background": "blue", + "clothes": "tanktop", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 760, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "horns", + "background": "orange", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 761, + "metadata_dict": { + "fur": "cream", + "eyes": "zombie", + "mouth": "jovial", + "clothes": "tanktop", + "background": "gray", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 762, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "coins", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "lab coat", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 763, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "fur": "black", + "eyes": "3d", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 764, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "mouth": "grin", + "background": "blue", + "fur": "black", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 765, + "metadata_dict": { + "clothes": "service", + "mouth": "phoneme vuh", + "background": "gray", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 766, + "metadata_dict": { + "fur": "cream", + "clothes": "black holes t", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 767, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "background": "blue", + "hat": "faux hawk", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 768, + "metadata_dict": { + "hat": "baby's bonnet", + "mouth": "bored unshaven party horn", + "clothes": "cowboy shirt", + "earring": "silver hoop", + "background": "yellow", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 769, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "bored kazoo", + "fur": "cheetah", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 770, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 771, + "metadata_dict": { + "earring": "diamond stud", + "eyes": "coins", + "clothes": "leather jacket", + "fur": "pink", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 772, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bloodshot", + "clothes": "prom dress", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 773, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "earring": "gold hoop", + "hat": "fez", + "background": "gray", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 774, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "cheetah", + "hat": "safari", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 775, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "earring": "gold stud", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 776, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "hat": "s&m hat", + "mouth": "grin", + "earring": "gold hoop", + "fur": "brown", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 777, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver stud", + "fur": "cheetah", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 778, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "smoking jacket", + "fur": "dark brown", + "background": "gray", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 779, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "black", + "background": "yellow", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 780, + "metadata_dict": { + "mouth": "bored kazoo", + "hat": "irish boho", + "fur": "gray", + "eyes": "3d", + "background": "orange", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 781, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored kazoo", + "hat": "fez", + "fur": "red", + "eyes": "bored", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 782, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bandolier", + "earring": "silver stud", + "background": "orange", + "eyes": "bloodshot", + "fur": "pink", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 783, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored pipe", + "fur": "black", + "earring": "gold stud", + "eyes": "bloodshot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 784, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "earring": "silver stud", + "clothes": "pimp coat", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 785, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "eyes": "robot", + "background": "orange", + "hat": "army hat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 786, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "background": "orange", + "fur": "dark brown", + "eyes": "bloodshot", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 787, + "metadata_dict": { + "hat": "bowler", + "mouth": "bored pipe", + "fur": "black", + "eyes": "bored", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 788, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "background": "yellow", + "hat": "bowler", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 789, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "leather punk jacket", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 790, + "metadata_dict": { + "fur": "golden brown", + "background": "yellow", + "eyes": "heart", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 791, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 792, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "holographic", + "hat": "sushi chef headband", + "fur": "pink", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 793, + "metadata_dict": { + "hat": "stuntman helmet", + "mouth": "bored pipe", + "fur": "solid gold", + "background": "yellow", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 794, + "metadata_dict": { + "hat": "bayc hat black", + "background": "blue", + "fur": "black", + "earring": "gold stud", + "mouth": "bored cigarette", + "clothes": "caveman pelt", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 795, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "background": "blue", + "hat": "spinner hat", + "clothes": "tanktop", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 796, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "striped tee", + "fur": "golden brown", + "earring": "silver stud", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 797, + "metadata_dict": { + "clothes": "bandolier", + "background": "orange", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 798, + "metadata_dict": { + "clothes": "service", + "background": "purple", + "mouth": "bored", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 799, + "metadata_dict": { + "hat": "king's crown", + "mouth": "phoneme vuh", + "eyes": "robot", + "background": "yellow", + "clothes": "stunt jacket", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 800, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "hat": "spinner hat", + "background": "orange", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 801, + "metadata_dict": { + "fur": "gray", + "hat": "bunny ears", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 802, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "zombie", + "fur": "gray", + "background": "purple", + "earring": "cross", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 803, + "metadata_dict": { + "mouth": "phoneme l", + "background": "blue", + "eyes": "bored", + "fur": "cheetah", + "hat": "bunny ears", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 804, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "earring": "silver stud", + "mouth": "bored", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 805, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "mouth": "bored", + "clothes": "toga", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 806, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "yellow", + "fur": "dark brown", + "hat": "beanie", + "clothes": "hip hop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 807, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "clothes": "cowboy shirt", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 808, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "red", + "mouth": "bored", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 809, + "metadata_dict": { + "eyes": "heart", + "hat": "bandana blue", + "background": "blue", + "earring": "gold stud", + "clothes": "tuxedo tee", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 810, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "earring": "gold stud", + "clothes": "lab coat", + "background": "gray", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 811, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "rage", + "clothes": "biker vest", + "fur": "solid gold", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 812, + "metadata_dict": { + "eyes": "x eyes", + "fur": "dmt", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 813, + "metadata_dict": { + "eyes": "closed", + "hat": "horns", + "mouth": "phoneme vuh", + "fur": "brown", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 814, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "mouth": "jovial", + "background": "orange", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 815, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "dmt", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 816, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "3d", + "fur": "dark brown", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 817, + "metadata_dict": { + "fur": "tan", + "hat": "s&m hat", + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "bloodshot", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 818, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "background": "blue", + "fur": "dark brown", + "hat": "faux hawk", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 819, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "background": "orange", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 820, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "trippy", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "hat": "vietnam era helmet", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 821, + "metadata_dict": { + "fur": "cheetah", + "mouth": "bored", + "eyes": "bored", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 822, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "laurel wreath", + "eyes": "sleepy", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 823, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "eyes": "bored", + "fur": "brown", + "clothes": "stunt jacket", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 824, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "pimp coat", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "mouth": "phoneme wah", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 825, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "gray", + "mouth": "bored", + "fur": "robot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 826, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 827, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "dumbfounded", + "fur": "black", + "eyes": "3d", + "hat": "cowboy hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 828, + "metadata_dict": { + "eyes": "coins", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 829, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "seaman's hat", + "earring": "gold stud", + "background": "orange", + "fur": "noise", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 830, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "bored", + "fur": "solid gold", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 831, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "girl's hair short", + "eyes": "crazy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 832, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "bandana blue", + "fur": "golden brown", + "background": "blue", + "clothes": "caveman pelt", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 833, + "metadata_dict": { + "eyes": "scumbag", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 834, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "fisherman's hat", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 835, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "clothes": "leather jacket", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 836, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "grin", + "hat": "seaman's hat", + "fur": "golden brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 837, + "metadata_dict": { + "background": "new punk blue", + "eyes": "3d", + "hat": "bowler", + "mouth": "bored", + "fur": "white", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 838, + "metadata_dict": { + "fur": "dmt", + "background": "yellow", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 839, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "background": "purple", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 840, + "metadata_dict": { + "background": "orange", + "clothes": "biker vest", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 841, + "metadata_dict": { + "background": "blue", + "fur": "dark brown", + "hat": "faux hawk", + "mouth": "bored", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 842, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin multicolored", + "earring": "gold stud", + "fur": "dark brown", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 843, + "metadata_dict": { + "clothes": "striped tee", + "hat": "seaman's hat", + "mouth": "bored party horn", + "background": "aquamarine", + "eyes": "3d", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 844, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 845, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "fur": "tan", + "mouth": "phoneme l", + "clothes": "prison jumpsuit", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 846, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "hat": "short mohawk", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 847, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "clothes": "black holes t", + "background": "blue", + "fur": "dark brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 848, + "metadata_dict": { + "fur": "golden brown", + "clothes": "leather jacket", + "eyes": "robot", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 849, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "zombie", + "mouth": "jovial", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 850, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "fur": "red", + "clothes": "sleeveless logo t", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 851, + "metadata_dict": { + "hat": "bandana blue", + "fur": "cream", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 852, + "metadata_dict": { + "clothes": "bandolier", + "background": "blue", + "fur": "black", + "eyes": "bored", + "hat": "safari", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 853, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "girl's hair pink", + "background": "blue", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 854, + "metadata_dict": { + "eyes": "closed", + "mouth": "discomfort", + "fur": "red", + "hat": "fisherman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 855, + "metadata_dict": { + "hat": "horns", + "fur": "black", + "clothes": "tuxedo tee", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 856, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin multicolored", + "eyes": "hypnotized", + "background": "aquamarine", + "fur": "white", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 857, + "metadata_dict": { + "fur": "tan", + "hat": "fez", + "background": "orange", + "mouth": "bored cigarette", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 858, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 859, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "bored unshaven", + "earring": "gold hoop", + "fur": "death bot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 860, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "tan" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 861, + "metadata_dict": { + "eyes": "scumbag", + "fur": "pink", + "mouth": "small grin", + "background": "gray", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 862, + "metadata_dict": { + "fur": "golden brown", + "eyes": "robot", + "clothes": "smoking jacket", + "background": "orange", + "mouth": "small grin", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 863, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "blindfold", + "background": "orange", + "clothes": "bayc t black", + "earring": "silver hoop", + "fur": "brown", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 864, + "metadata_dict": { + "clothes": "black holes t", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 865, + "metadata_dict": { + "fur": "red", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 866, + "metadata_dict": { + "fur": "tan", + "mouth": "grin multicolored", + "hat": "bayc hat red", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 867, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "wide eyed", + "mouth": "bored party horn", + "earring": "silver stud", + "fur": "dark brown", + "clothes": "caveman pelt", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 868, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "girl's hair pink", + "background": "orange", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 869, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "party hat 2", + "earring": "gold hoop", + "fur": "pink", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 870, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "holographic", + "clothes": "black holes t", + "earring": "gold hoop", + "fur": "red", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 871, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "black", + "eyes": "3d", + "mouth": "tongue out", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 872, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "heart", + "background": "purple", + "fur": "cream" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 873, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "zombie", + "fur": "black", + "hat": "spinner hat", + "clothes": "admirals coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 874, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "bayc t red", + "fur": "black", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 875, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "fur": "red", + "background": "orange", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 876, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "clothes": "biker vest", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 877, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "background": "orange", + "eyes": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 878, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "clothes": "space suit", + "background": "orange", + "fur": "dark brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 879, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "clothes": "tie dye", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 880, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 881, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "jovial", + "fur": "dark brown", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 882, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "hat": "fez", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 883, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "black", + "hat": "spinner hat", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 884, + "metadata_dict": { + "hat": "party hat 2", + "fur": "cream", + "mouth": "jovial", + "clothes": "bayc t black", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 885, + "metadata_dict": { + "clothes": "bayc t black", + "background": "purple", + "mouth": "bored", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 886, + "metadata_dict": { + "mouth": "phoneme vuh", + "earring": "gold stud", + "eyes": "bored", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 887, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "clothes": "tuxedo tee", + "mouth": "tongue out", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 888, + "metadata_dict": { + "eyes": "hypnotized", + "earring": "gold hoop", + "hat": "fez", + "fur": "black", + "background": "orange", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 889, + "metadata_dict": { + "clothes": "striped tee", + "earring": "diamond stud", + "background": "blue", + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 890, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "blue beams", + "fur": "brown", + "clothes": "bone necklace", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 891, + "metadata_dict": { + "fur": "tan", + "hat": "stuntman helmet", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 892, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "tan", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 893, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "fisherman's hat", + "fur": "gray", + "earring": "silver stud", + "background": "purple", + "clothes": "toga", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 894, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "hat": "ww2 pilot helm", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 895, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "red", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 896, + "metadata_dict": { + "hat": "fez", + "background": "blue", + "fur": "black", + "eyes": "bored", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 897, + "metadata_dict": { + "fur": "red", + "eyes": "3d", + "hat": "bayc hat red", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 898, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "blindfold", + "mouth": "phoneme ooo", + "fur": "dmt", + "hat": "stuntman helmet", + "earring": "silver stud", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 899, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "gray", + "eyes": "3d", + "mouth": "small grin", + "hat": "faux hawk", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 900, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "clothes": "hawaiian", + "mouth": "small grin", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 901, + "metadata_dict": { + "fur": "trippy", + "eyes": "hypnotized", + "hat": "ww2 pilot helm", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 902, + "metadata_dict": { + "fur": "black", + "eyes": "3d", + "hat": "bunny ears", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 903, + "metadata_dict": { + "earring": "gold hoop", + "background": "aquamarine", + "fur": "black", + "hat": "bowler", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 904, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "bored", + "background": "yellow", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 905, + "metadata_dict": { + "eyes": "wide eyed", + "mouth": "phoneme vuh", + "background": "yellow", + "fur": "white", + "hat": "police motorcycle helmet", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 906, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "coins", + "background": "blue", + "fur": "pink", + "earring": "silver hoop", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 907, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "orange", + "clothes": "stunt jacket", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 908, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "dumbfounded", + "clothes": "cowboy shirt", + "background": "blue", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 909, + "metadata_dict": { + "earring": "diamond stud", + "mouth": "dumbfounded", + "fur": "black", + "eyes": "3d", + "clothes": "toga", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 910, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "golden brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 911, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "black t", + "fur": "pink", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 912, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "lumberjack shirt", + "mouth": "grin", + "background": "blue", + "fur": "pink", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 913, + "metadata_dict": { + "fur": "tan", + "clothes": "bandolier", + "mouth": "rage", + "background": "blue", + "earring": "gold stud", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 914, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "hat": "seaman's hat", + "clothes": "black t", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 915, + "metadata_dict": { + "eyes": "heart", + "clothes": "lumberjack shirt", + "mouth": "bored unshaven cigarette", + "fur": "dark brown", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 916, + "metadata_dict": { + "mouth": "rage", + "earring": "silver stud", + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 917, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "black t", + "mouth": "dumbfounded", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 918, + "metadata_dict": { + "eyes": "eyepatch", + "background": "aquamarine", + "hat": "army hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 919, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "black t", + "earring": "silver stud", + "hat": "fisherman's hat", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 920, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "fur": "dark brown", + "clothes": "lab coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 921, + "metadata_dict": { + "eyes": "coins", + "fur": "brown", + "background": "gray", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 922, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "sailor shirt", + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 923, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "clothes": "toga", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 924, + "metadata_dict": { + "mouth": "bored cigarette", + "clothes": "sleeveless t", + "fur": "golden brown", + "hat": "army hat", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 925, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "fur": "brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 926, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "background": "gray", + "hat": "beanie", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 927, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "cream", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 928, + "metadata_dict": { + "eyes": "coins", + "mouth": "rage", + "background": "aquamarine", + "fur": "black", + "clothes": "tuxedo tee", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 929, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "blue dress", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 930, + "metadata_dict": { + "hat": "fez", + "background": "aquamarine", + "clothes": "tuxedo tee", + "fur": "brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 931, + "metadata_dict": { + "background": "orange", + "hat": "short mohawk", + "mouth": "small grin", + "eyes": "bored", + "clothes": "pimp coat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 932, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "clothes": "biker vest", + "mouth": "bored", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 933, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "clothes": "tuxedo tee", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 934, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "baby's bonnet", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 935, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "biker vest", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 936, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "black holes t", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "bored", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 937, + "metadata_dict": { + "clothes": "black t", + "mouth": "phoneme vuh", + "fur": "dark brown", + "hat": "bowler", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 938, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "mouth": "bored", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 939, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "dmt", + "clothes": "sailor shirt", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 940, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin multicolored", + "clothes": "rainbow suspenders", + "fur": "black", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 941, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "background": "blue", + "clothes": "stunt jacket", + "hat": "girl's hair short", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 942, + "metadata_dict": { + "mouth": "discomfort", + "hat": "seaman's hat", + "fur": "gray", + "background": "aquamarine", + "eyes": "bored", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 943, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "black", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 944, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "background": "aquamarine", + "fur": "black", + "clothes": "tie dye", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 945, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "fur": "pink", + "hat": "short mohawk", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 946, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "background": "blue", + "fur": "dark brown", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 947, + "metadata_dict": { + "background": "gray", + "fur": "black", + "mouth": "bored", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 948, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "eyes": "3d", + "clothes": "biker vest", + "earring": "silver hoop", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 949, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "fur": "black", + "mouth": "bored unshaven party horn" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 950, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "eyes": "blue beams", + "fur": "cheetah", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 951, + "metadata_dict": { + "earring": "silver stud", + "clothes": "leather jacket", + "fur": "dark brown", + "mouth": "bored", + "background": "yellow", + "eyes": "sleepy", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 952, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "grin multicolored", + "fur": "dark brown", + "hat": "girl's hair short", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 953, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "fur": "black", + "hat": "bayc flipped brim", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 954, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "background": "yellow", + "mouth": "bored", + "clothes": "bone tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 955, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc flipped brim", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 956, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "eyes": "bored", + "hat": "vietnam era helmet", + "fur": "white", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 957, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "red", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 958, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "background": "blue", + "eyes": "3d", + "clothes": "guayabera", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 959, + "metadata_dict": { + "eyes": "closed", + "hat": "spinner hat", + "background": "orange", + "fur": "dark brown", + "mouth": "tongue out", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 960, + "metadata_dict": { + "hat": "horns", + "fur": "dmt", + "background": "gray", + "mouth": "bored", + "eyes": "crazy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 961, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 962, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "background": "orange", + "hat": "bayc hat red", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 963, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "clothes": "biker vest", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 964, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "mouth": "bored unshaven bubblegum", + "background": "orange", + "fur": "dark brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 965, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "dmt", + "clothes": "smoking jacket", + "eyes": "bored", + "hat": "cowboy hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 966, + "metadata_dict": { + "mouth": "grin", + "clothes": "sleeveless logo t", + "hat": "army hat", + "fur": "brown", + "background": "yellow", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 967, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "clothes": "leather jacket", + "hat": "spinner hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 968, + "metadata_dict": { + "eyes": "coins", + "fur": "red", + "background": "gray", + "clothes": "admirals coat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 969, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "dark brown", + "hat": "army hat", + "earring": "silver hoop", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 970, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "fur": "brown", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 971, + "metadata_dict": { + "hat": "baby's bonnet", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 972, + "metadata_dict": { + "hat": "irish boho", + "mouth": "rage", + "eyes": "bloodshot", + "background": "gray", + "fur": "death bot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 973, + "metadata_dict": { + "clothes": "work vest", + "background": "orange", + "fur": "dark brown", + "hat": "cowboy hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 974, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "red", + "eyes": "robot", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 975, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "earring": "gold stud", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 976, + "metadata_dict": { + "fur": "pink", + "eyes": "bored", + "background": "purple", + "hat": "halo", + "mouth": "rage" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 977, + "metadata_dict": { + "hat": "irish boho", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "clothes": "prom dress", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 978, + "metadata_dict": { + "eyes": "holographic", + "background": "orange", + "hat": "short mohawk", + "clothes": "bone necklace", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 979, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "scumbag", + "background": "gray", + "hat": "beanie", + "fur": "death bot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 980, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "clothes": "tweed suit", + "hat": "girl's hair pink", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 981, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "space suit", + "fur": "red", + "hat": "army hat", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 982, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "eyes": "robot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 983, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "rage", + "hat": "fez", + "background": "blue", + "clothes": "bayc t black", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 984, + "metadata_dict": { + "hat": "halo", + "background": "purple", + "eyes": "bored", + "fur": "brown", + "clothes": "guayabera", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 985, + "metadata_dict": { + "fur": "red", + "background": "blue", + "eyes": "bored", + "hat": "ww2 pilot helm", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 986, + "metadata_dict": { + "earring": "gold hoop", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 987, + "metadata_dict": { + "background": "new punk blue", + "hat": "irish boho", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 988, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "noise", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 989, + "metadata_dict": { + "fur": "black", + "earring": "silver hoop", + "clothes": "toga", + "background": "yellow", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 990, + "metadata_dict": { + "eyes": "holographic", + "hat": "seaman's hat", + "background": "orange", + "fur": "dark brown", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 991, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "coins", + "mouth": "bored unshaven pipe", + "earring": "silver hoop", + "background": "purple", + "hat": "police motorcycle helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 992, + "metadata_dict": { + "eyes": "wide eyed", + "background": "aquamarine", + "fur": "black", + "hat": "fisherman's hat", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 993, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "phoneme ooo", + "eyes": "coins", + "fur": "black", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 994, + "metadata_dict": { + "background": "new punk blue", + "hat": "fez", + "eyes": "robot", + "fur": "pink", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 995, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "s&m hat", + "clothes": "biker vest", + "eyes": "bloodshot", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 996, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 997, + "metadata_dict": { + "mouth": "bored cigarette", + "earring": "silver hoop", + "hat": "faux hawk", + "background": "purple", + "eyes": "crazy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 998, + "metadata_dict": { + "mouth": "bored pipe", + "fur": "pink", + "eyes": "sleepy", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 999, + "metadata_dict": { + "clothes": "bandolier", + "background": "blue", + "fur": "black", + "mouth": "tongue out", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1000, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "hat": "prussian helmet", + "background": "aquamarine", + "clothes": "toga", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1001, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "eyes": "robot", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1002, + "metadata_dict": { + "eyes": "coins", + "clothes": "prison jumpsuit", + "background": "orange", + "fur": "dark brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1003, + "metadata_dict": { + "eyes": "eyepatch", + "background": "gray", + "clothes": "tweed suit", + "mouth": "small grin", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1004, + "metadata_dict": { + "clothes": "sailor shirt", + "earring": "silver stud", + "fur": "black", + "mouth": "small grin", + "background": "purple", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1005, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored", + "fur": "cream", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1006, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "smoking jacket", + "background": "orange", + "hat": "cowboy hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1007, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "fur": "red", + "mouth": "bored unshaven cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1008, + "metadata_dict": { + "fur": "gray", + "mouth": "grin diamond grill", + "clothes": "biker vest", + "eyes": "bored", + "hat": "army hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1009, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "robot", + "fur": "black", + "clothes": "smoking jacket", + "hat": "commie hat", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1010, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "black", + "eyes": "crazy", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1011, + "metadata_dict": { + "clothes": "sailor shirt", + "eyes": "bored", + "background": "yellow", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1012, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1013, + "metadata_dict": { + "fur": "gray", + "clothes": "tuxedo tee", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1014, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "silver hoop", + "hat": "army hat", + "eyes": "crazy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1015, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "clothes": "sleeveless t", + "fur": "black", + "mouth": "bored bubblegum", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1016, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "eyes": "coins", + "background": "blue", + "hat": "faux hawk", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1017, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "black", + "clothes": "bayc t black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1018, + "metadata_dict": { + "fur": "cream", + "hat": "irish boho", + "mouth": "phoneme ooo", + "eyes": "zombie", + "earring": "diamond stud", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1019, + "metadata_dict": { + "mouth": "bored party horn", + "clothes": "bayc t black", + "hat": "bowler", + "fur": "death bot", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1020, + "metadata_dict": { + "fur": "brown", + "background": "yellow", + "mouth": "bored", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1021, + "metadata_dict": { + "eyes": "scumbag", + "fur": "black", + "hat": "short mohawk", + "background": "gray", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1022, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1023, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "coins", + "clothes": "smoking jacket", + "background": "orange", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1024, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "golden brown", + "earring": "diamond stud", + "hat": "party hat 1", + "mouth": "rage", + "eyes": "3d", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1025, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1026, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1027, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "silver stud", + "fur": "red", + "background": "gray", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1028, + "metadata_dict": { + "eyes": "coins", + "hat": "party hat 1", + "mouth": "dumbfounded", + "earring": "silver hoop", + "fur": "brown", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1029, + "metadata_dict": { + "mouth": "rage", + "hat": "fez", + "background": "blue", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "lab coat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1030, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "biker vest", + "background": "orange", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1031, + "metadata_dict": { + "mouth": "bored dagger", + "eyes": "zombie", + "hat": "fez", + "background": "blue", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1032, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "black t", + "fur": "black", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1033, + "metadata_dict": { + "clothes": "work vest", + "background": "orange", + "eyes": "bored", + "hat": "vietnam era helmet", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1034, + "metadata_dict": { + "eyes": "wide eyed", + "mouth": "phoneme vuh", + "fur": "pink", + "clothes": "smoking jacket", + "earring": "silver hoop", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1035, + "metadata_dict": { + "eyes": "closed", + "hat": "baby's bonnet", + "fur": "black", + "earring": "gold stud", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1036, + "metadata_dict": { + "fur": "golden brown", + "background": "aquamarine", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1037, + "metadata_dict": { + "earring": "gold hoop", + "background": "blue", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1038, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "mouth": "phoneme ooo", + "fur": "golden brown", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1039, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "phoneme vuh", + "clothes": "smoking jacket", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1040, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "silver stud", + "fur": "pink", + "mouth": "tongue out", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1041, + "metadata_dict": { + "fur": "brown", + "background": "yellow", + "eyes": "sleepy", + "clothes": "bayc t red", + "mouth": "grin", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1042, + "metadata_dict": { + "eyes": "x eyes", + "background": "blue", + "earring": "gold stud", + "clothes": "biker vest", + "mouth": "bored", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1043, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "yellow", + "clothes": "guayabera", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1044, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "earring": "diamond stud", + "fur": "brown", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1045, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "vietnam jacket", + "hat": "stuntman helmet", + "background": "orange", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1046, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "pink", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1047, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "aquamarine", + "fur": "black", + "hat": "ww2 pilot helm", + "clothes": "navy striped tee", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1048, + "metadata_dict": { + "hat": "baby's bonnet", + "mouth": "bored unshaven party horn", + "clothes": "sailor shirt", + "fur": "black", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1049, + "metadata_dict": { + "mouth": "jovial", + "fur": "black", + "clothes": "smoking jacket", + "hat": "army hat", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1050, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "pink", + "clothes": "stunt jacket", + "background": "orange", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1051, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "coins", + "hat": "party hat 1", + "background": "yellow", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1052, + "metadata_dict": { + "eyes": "bloodshot", + "hat": "beanie", + "background": "purple", + "mouth": "bored", + "fur": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1053, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "hat": "fez", + "background": "aquamarine", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1054, + "metadata_dict": { + "mouth": "grin", + "fur": "dmt", + "background": "aquamarine", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1055, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "bandolier", + "hat": "seaman's hat", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1056, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "earring": "silver stud", + "fur": "red", + "clothes": "navy striped tee", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1057, + "metadata_dict": { + "clothes": "striped tee", + "hat": "bandana blue", + "mouth": "rage", + "eyes": "robot", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1058, + "metadata_dict": { + "eyes": "zombie", + "mouth": "phoneme vuh", + "background": "aquamarine", + "earring": "gold stud", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1059, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "clothes": "cowboy shirt", + "eyes": "3d", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1060, + "metadata_dict": { + "eyes": "closed", + "mouth": "jovial", + "fur": "dark brown", + "hat": "commie hat", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1061, + "metadata_dict": { + "mouth": "rage", + "hat": "spinner hat", + "clothes": "tie dye", + "background": "yellow", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1062, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "sleepy", + "background": "yellow", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1063, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "eyes": "blue beams" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1064, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "clothes": "blue dress", + "earring": "silver hoop", + "hat": "bunny ears", + "mouth": "phoneme wah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1065, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1066, + "metadata_dict": { + "earring": "diamond stud", + "clothes": "sailor shirt", + "background": "blue", + "mouth": "bored unshaven cigarette", + "fur": "robot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1067, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "blindfold", + "fur": "gray", + "background": "aquamarine", + "clothes": "biker vest", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1068, + "metadata_dict": { + "eyes": "coins", + "fur": "brown", + "background": "blue", + "hat": "bayc flipped brim", + "clothes": "bayc t black", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1069, + "metadata_dict": { + "eyes": "heart", + "clothes": "black holes t", + "mouth": "grin", + "background": "blue", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1070, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "black t", + "earring": "gold stud", + "background": "orange", + "fur": "dark brown", + "hat": "fisherman's hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1071, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "space suit", + "background": "orange", + "mouth": "small grin", + "fur": "brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1072, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "cream", + "background": "orange", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1073, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "yellow", + "fur": "white", + "eyes": "angry", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1074, + "metadata_dict": { + "earring": "silver stud", + "clothes": "work vest", + "background": "blue", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1075, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "blue", + "clothes": "guayabera", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1076, + "metadata_dict": { + "fur": "gray", + "hat": "prussian helmet", + "eyes": "robot", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1077, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t red", + "mouth": "grin", + "eyes": "bored", + "earring": "silver hoop", + "fur": "brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1078, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "black", + "hat": "beanie", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1079, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "cowboy shirt", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1080, + "metadata_dict": { + "fur": "brown", + "mouth": "dumbfounded", + "eyes": "bloodshot", + "hat": "cowboy hat", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1081, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "gray", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1082, + "metadata_dict": { + "eyes": "closed", + "clothes": "bayc t red", + "fur": "cream", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1083, + "metadata_dict": { + "hat": "prussian helmet", + "earring": "gold stud", + "clothes": "tanktop", + "background": "purple", + "mouth": "bored", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1084, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "orange", + "hat": "short mohawk", + "earring": "cross", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1085, + "metadata_dict": { + "eyes": "scumbag", + "hat": "stuntman helmet", + "fur": "red", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1086, + "metadata_dict": { + "eyes": "blindfold", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "prom dress", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1087, + "metadata_dict": { + "eyes": "heart", + "clothes": "leather punk jacket", + "earring": "diamond stud", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1088, + "metadata_dict": { + "eyes": "holographic", + "clothes": "tie dye", + "fur": "cheetah", + "hat": "beanie", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1089, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver stud", + "background": "orange", + "hat": "beanie", + "clothes": "guayabera", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1090, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "black t", + "earring": "silver stud", + "background": "orange", + "fur": "cheetah", + "mouth": "bored cigar", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1091, + "metadata_dict": { + "background": "new punk blue", + "hat": "bandana blue", + "mouth": "dumbfounded", + "clothes": "cowboy shirt", + "eyes": "bloodshot", + "fur": "dark brown", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1092, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "earring": "silver stud", + "hat": "short mohawk", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1093, + "metadata_dict": { + "fur": "golden brown", + "eyes": "robot", + "earring": "gold stud", + "mouth": "tongue out", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1094, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "tweed suit", + "background": "aquamarine", + "fur": "pink", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1095, + "metadata_dict": { + "clothes": "black holes t", + "earring": "gold hoop", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1096, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "mouth": "bored pipe", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1097, + "metadata_dict": { + "eyes": "hypnotized", + "background": "orange", + "fur": "noise", + "hat": "ww2 pilot helm", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1098, + "metadata_dict": { + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1099, + "metadata_dict": { + "eyes": "holographic", + "clothes": "space suit", + "fur": "golden brown", + "background": "orange", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1100, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "blue dress", + "background": "aquamarine", + "earring": "cross", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1101, + "metadata_dict": { + "eyes": "scumbag", + "fur": "red", + "mouth": "bored unshaven pipe", + "clothes": "smoking jacket", + "background": "gray", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1102, + "metadata_dict": { + "clothes": "rainbow suspenders", + "fur": "dark brown", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "hat": "ww2 pilot helm", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1103, + "metadata_dict": { + "fur": "golden brown", + "hat": "sea captain's hat", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "tongue out", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1104, + "metadata_dict": { + "eyes": "x eyes", + "fur": "red", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1105, + "metadata_dict": { + "fur": "cream", + "clothes": "black holes t", + "hat": "fez", + "mouth": "phoneme vuh", + "earring": "silver stud", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1106, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "sailor shirt", + "fur": "red", + "background": "blue", + "earring": "silver hoop", + "eyes": "crazy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1107, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "fur": "gray", + "eyes": "3d", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1108, + "metadata_dict": { + "earring": "gold stud", + "background": "orange", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "hat": "beanie", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1109, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "sailor shirt", + "earring": "silver stud", + "background": "orange", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1110, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "bayc t red", + "background": "aquamarine", + "fur": "dark brown", + "hat": "short mohawk", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1111, + "metadata_dict": { + "eyes": "zombie", + "clothes": "sleeveless logo t", + "hat": "spinner hat", + "background": "orange", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1112, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "hat": "short mohawk", + "eyes": "bored", + "earring": "silver hoop", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1113, + "metadata_dict": { + "fur": "tan", + "mouth": "dumbfounded", + "eyes": "3d", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1114, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "bored", + "background": "gray", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1115, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored dagger", + "fur": "golden brown", + "clothes": "black t", + "earring": "silver stud", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1116, + "metadata_dict": { + "eyes": "holographic", + "hat": "irish boho", + "fur": "dark brown", + "clothes": "tanktop", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1117, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1118, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "clothes": "navy striped tee", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1119, + "metadata_dict": { + "fur": "trippy", + "clothes": "leather jacket", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1120, + "metadata_dict": { + "earring": "silver stud", + "clothes": "biker vest", + "fur": "dark brown", + "background": "orange", + "eyes": "blue beams", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1121, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1122, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "fur": "black", + "eyes": "bloodshot", + "clothes": "admirals coat", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1123, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "clothes": "lab coat", + "mouth": "bored unshaven cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1124, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "zombie", + "background": "purple", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1125, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "prison jumpsuit", + "background": "orange", + "fur": "dark brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1126, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "clothes": "tanktop", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1127, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "fur": "tan", + "hat": "party hat 2", + "mouth": "grin", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1128, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1129, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1130, + "metadata_dict": { + "earring": "gold hoop", + "background": "orange", + "fur": "dark brown", + "hat": "cowboy hat", + "clothes": "sleeveless logo t", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1131, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "clothes": "black t", + "background": "blue", + "hat": "bayc flipped brim", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1132, + "metadata_dict": { + "eyes": "heart", + "mouth": "jovial", + "background": "orange", + "fur": "brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1133, + "metadata_dict": { + "mouth": "rage", + "clothes": "tie dye", + "hat": "ww2 pilot helm", + "eyes": "bored", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1134, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "background": "purple", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1135, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "holographic", + "fur": "dmt", + "clothes": "sailor shirt", + "background": "blue", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1136, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "jovial", + "fur": "pink", + "background": "orange", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1137, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "cream", + "clothes": "sleeveless t", + "hat": "girl's hair pink", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1138, + "metadata_dict": { + "mouth": "grin", + "hat": "baby's bonnet", + "eyes": "zombie", + "fur": "gray", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1139, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "fur": "pink", + "eyes": "bloodshot", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1140, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "laurel wreath", + "eyes": "coins", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1141, + "metadata_dict": { + "clothes": "kings robe", + "background": "blue", + "eyes": "3d", + "earring": "silver hoop", + "hat": "beanie", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1142, + "metadata_dict": { + "eyes": "closed", + "hat": "stuntman helmet", + "fur": "red", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1143, + "metadata_dict": { + "clothes": "caveman pelt", + "hat": "short mohawk", + "fur": "brown", + "eyes": "angry", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1144, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "fur": "noise", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1145, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black t", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1146, + "metadata_dict": { + "hat": "horns", + "mouth": "grin diamond grill", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "eyes": "crazy", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1147, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "black", + "background": "orange", + "clothes": "lab coat", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1148, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "mouth": "jovial", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1149, + "metadata_dict": { + "eyes": "closed", + "clothes": "bayc t red", + "hat": "horns", + "fur": "red", + "background": "blue", + "earring": "silver hoop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1150, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "laurel wreath", + "fur": "dark brown", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1151, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "dmt", + "eyes": "bored", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1152, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "dark brown", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1153, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "earring": "silver stud", + "mouth": "jovial", + "clothes": "cowboy shirt", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1154, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "mouth": "dumbfounded", + "fur": "red", + "hat": "fisherman's hat", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1155, + "metadata_dict": { + "hat": "irish boho", + "clothes": "bone tee", + "eyes": "coins", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1156, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1157, + "metadata_dict": { + "background": "aquamarine", + "mouth": "small grin", + "hat": "girl's hair short", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1158, + "metadata_dict": { + "hat": "party hat 2", + "fur": "tan", + "clothes": "leather punk jacket", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1159, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven", + "background": "orange", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1160, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "stuntman helmet", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1161, + "metadata_dict": { + "eyes": "wide eyed", + "background": "aquamarine", + "fur": "pink", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1162, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "background": "aquamarine", + "clothes": "tuxedo tee", + "fur": "death bot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1163, + "metadata_dict": { + "eyes": "zombie", + "clothes": "work vest", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1164, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1165, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "black holes t", + "background": "aquamarine", + "fur": "pink", + "mouth": "small grin", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1166, + "metadata_dict": { + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "clothes": "bone necklace", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1167, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "eyes": "coins", + "clothes": "guayabera", + "background": "purple", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1168, + "metadata_dict": { + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1169, + "metadata_dict": { + "clothes": "black t", + "background": "purple", + "fur": "noise", + "mouth": "bored", + "hat": "bowler", + "eyes": "sleepy", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1170, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1171, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "black holes t", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1172, + "metadata_dict": { + "fur": "tan", + "clothes": "blue dress", + "background": "blue", + "eyes": "bored", + "hat": "faux hawk", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1173, + "metadata_dict": { + "hat": "fez", + "eyes": "3d", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1174, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin gold grill", + "fur": "golden brown", + "hat": "army hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1175, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "aquamarine", + "eyes": "robot", + "earring": "gold stud", + "mouth": "jovial", + "fur": "black", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1176, + "metadata_dict": { + "fur": "tan", + "mouth": "bored kazoo", + "clothes": "striped tee", + "hat": "sea captain's hat", + "background": "orange", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1177, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "sleeveless logo t", + "hat": "ww2 pilot helm", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1178, + "metadata_dict": { + "fur": "red", + "background": "orange", + "mouth": "tongue out", + "hat": "bayc hat red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1179, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "red", + "eyes": "robot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1180, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "irish boho", + "earring": "diamond stud", + "fur": "red", + "clothes": "pimp coat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1181, + "metadata_dict": { + "mouth": "grin", + "fur": "brown", + "clothes": "tuxedo tee", + "background": "gray", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1182, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1183, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "clothes": "sailor shirt", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1184, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "eyes": "bloodshot", + "hat": "cowboy hat", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1185, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin", + "hat": "king's crown", + "earring": "silver stud", + "fur": "dark brown", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1186, + "metadata_dict": { + "mouth": "grin multicolored", + "eyes": "coins", + "hat": "short mohawk", + "earring": "silver hoop", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1187, + "metadata_dict": { + "eyes": "heart", + "fur": "brown", + "mouth": "phoneme vuh", + "clothes": "tuxedo tee", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1188, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "seaman's hat", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1189, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "heart", + "fur": "tan", + "hat": "fez", + "background": "orange", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1190, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "grin", + "earring": "gold stud", + "fur": "brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1191, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "eyes": "bloodshot", + "hat": "bowler", + "clothes": "guayabera", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1192, + "metadata_dict": { + "eyes": "coins", + "earring": "diamond stud", + "hat": "fez", + "background": "purple", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1193, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "gray", + "fur": "brown", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1194, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin", + "background": "yellow", + "earring": "silver stud", + "fur": "dark brown", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1195, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "dmt", + "mouth": "bored unshaven cigar", + "background": "gray", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1196, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "cream", + "background": "purple", + "clothes": "navy striped tee", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1197, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "blue dress", + "background": "aquamarine", + "fur": "dark brown", + "hat": "army hat", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1198, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "earring": "silver hoop", + "hat": "commie hat", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1199, + "metadata_dict": { + "background": "yellow", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored unshaven dagger", + "eyes": "angry", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1200, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "purple", + "hat": "short mohawk", + "fur": "cheetah", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1201, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "black", + "background": "gray", + "hat": "bayc hat red", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1202, + "metadata_dict": { + "mouth": "jovial", + "background": "purple", + "fur": "brown", + "hat": "bunny ears", + "eyes": "cyborg", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1203, + "metadata_dict": { + "eyes": "closed", + "fur": "dmt", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "purple", + "hat": "commie hat", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1204, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven party horn", + "fur": "dark brown", + "hat": "beanie", + "clothes": "stunt jacket", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1205, + "metadata_dict": { + "fur": "tan", + "mouth": "grin diamond grill", + "hat": "short mohawk", + "earring": "silver hoop", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1206, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "dark brown", + "clothes": "bone necklace", + "hat": "commie hat", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1207, + "metadata_dict": { + "mouth": "grin", + "clothes": "blue dress", + "eyes": "coins", + "hat": "prussian helmet", + "earring": "gold stud", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1208, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "short mohawk", + "clothes": "bone necklace", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1209, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "blue", + "clothes": "bayc t black", + "eyes": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1210, + "metadata_dict": { + "eyes": "heart", + "clothes": "service", + "mouth": "bored", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1211, + "metadata_dict": { + "eyes": "blindfold", + "fur": "gray", + "background": "orange", + "mouth": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1212, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "background": "blue", + "hat": "bowler", + "eyes": "sleepy", + "earring": "cross", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1213, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "seaman's hat", + "earring": "gold stud", + "fur": "pink", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1214, + "metadata_dict": { + "mouth": "bored kazoo", + "hat": "prussian helmet", + "clothes": "cowboy shirt", + "fur": "pink", + "eyes": "3d", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1215, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1216, + "metadata_dict": { + "eyes": "scumbag", + "earring": "diamond stud", + "clothes": "black t", + "fur": "pink", + "hat": "army hat", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1217, + "metadata_dict": { + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "admirals coat", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1218, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "scumbag", + "fur": "black", + "hat": "beanie", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1219, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "fur": "noise", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1220, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "hat": "fez", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1221, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "zombie", + "hat": "fez", + "earring": "silver stud", + "mouth": "bored unshaven cigarette", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1222, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "black t", + "eyes": "sad", + "mouth": "bored", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1223, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "robot", + "background": "orange", + "fur": "dark brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1224, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "brown", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1225, + "metadata_dict": { + "eyes": "blindfold", + "hat": "sushi chef headband", + "mouth": "grin multicolored", + "clothes": "hawaiian", + "background": "orange", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1226, + "metadata_dict": { + "fur": "dmt", + "clothes": "prison jumpsuit", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1227, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "earring": "gold hoop", + "clothes": "sailor shirt", + "fur": "brown", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1228, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah", + "hat": "commie hat", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1229, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tweed suit", + "background": "orange", + "fur": "noise", + "hat": "beanie", + "earring": "cross", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1230, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "bored unshaven party horn", + "earring": "silver stud", + "background": "gray", + "clothes": "guayabera", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1231, + "metadata_dict": { + "eyes": "scumbag", + "fur": "black", + "background": "orange", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1232, + "metadata_dict": { + "hat": "s&m hat", + "fur": "dmt", + "background": "gray", + "clothes": "prom dress", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1233, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1234, + "metadata_dict": { + "clothes": "leather jacket", + "mouth": "bored bubblegum", + "hat": "fisherman's hat", + "eyes": "sleepy", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1235, + "metadata_dict": { + "eyes": "heart", + "hat": "baby's bonnet", + "earring": "silver stud", + "clothes": "leather jacket", + "mouth": "bored", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1236, + "metadata_dict": { + "mouth": "discomfort", + "fur": "black", + "clothes": "guayabera", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1237, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "fur": "black", + "hat": "short mohawk", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1238, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "clothes": "work vest", + "earring": "gold stud", + "hat": "commie hat", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1239, + "metadata_dict": { + "background": "new punk blue", + "eyes": "sunglasses", + "fur": "black", + "hat": "beanie", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1240, + "metadata_dict": { + "mouth": "bored pipe", + "earring": "gold stud", + "fur": "black", + "background": "yellow", + "eyes": "sunglasses", + "hat": "bayc hat black", + "clothes": "lumberjack shirt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1241, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven cigarette", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "ww2 pilot helm", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1242, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "trippy", + "background": "aquamarine", + "earring": "silver hoop", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1243, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "phoneme oh", + "fur": "tan", + "background": "orange", + "hat": "army hat", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1244, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "background": "blue", + "hat": "bayc flipped brim", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1245, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "eyes": "bored", + "hat": "vietnam era helmet", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1246, + "metadata_dict": { + "mouth": "bored dagger", + "background": "gray", + "clothes": "smoking jacket", + "fur": "brown", + "hat": "bayc hat red", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1247, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "background": "blue", + "earring": "gold stud", + "eyes": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1248, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "eyes": "zombie", + "earring": "silver stud", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1249, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "black holes t", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1250, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "hat": "bayc flipped brim", + "clothes": "lab coat", + "fur": "cheetah", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1251, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "dmt", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1252, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "earring": "gold hoop", + "fur": "brown", + "eyes": "bored", + "clothes": "admirals coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1253, + "metadata_dict": { + "eyes": "zombie", + "mouth": "bored unshaven bubblegum", + "background": "orange", + "fur": "dark brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1254, + "metadata_dict": { + "fur": "tan", + "eyes": "blindfold", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1255, + "metadata_dict": { + "background": "blue", + "clothes": "leather jacket", + "fur": "pink", + "earring": "silver hoop", + "eyes": "bored", + "hat": "safari", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1256, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "dmt", + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "bored", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1257, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1258, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "dark brown", + "eyes": "bored", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1259, + "metadata_dict": { + "fur": "red", + "hat": "beanie", + "clothes": "stunt jacket", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1260, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "fur": "black", + "hat": "army hat", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1261, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "earring": "silver stud", + "eyes": "bloodshot", + "fur": "noise", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1262, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven party horn", + "clothes": "prison jumpsuit", + "eyes": "bloodshot", + "hat": "short mohawk", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1263, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "hat": "prussian helmet", + "background": "aquamarine", + "clothes": "toga", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1264, + "metadata_dict": { + "fur": "red", + "background": "blue", + "clothes": "smoking jacket", + "hat": "bowler", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1265, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "mouth": "bored", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1266, + "metadata_dict": { + "hat": "prussian helmet", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1267, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "coins", + "mouth": "phoneme vuh", + "fur": "dark brown", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1268, + "metadata_dict": { + "fur": "brown", + "background": "orange", + "eyes": "bored", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1269, + "metadata_dict": { + "eyes": "closed", + "hat": "fez", + "background": "blue", + "fur": "pink", + "mouth": "small grin", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1270, + "metadata_dict": { + "hat": "beanie", + "eyes": "bloodshot", + "clothes": "bayc t black", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1271, + "metadata_dict": { + "eyes": "blindfold", + "fur": "golden brown", + "hat": "seaman's hat", + "earring": "gold stud", + "background": "orange", + "mouth": "bored unshaven cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1272, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "mouth": "bored bubblegum", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1273, + "metadata_dict": { + "mouth": "grin multicolored", + "eyes": "hypnotized", + "fur": "golden brown", + "hat": "spinner hat", + "clothes": "tuxedo tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1274, + "metadata_dict": { + "fur": "cream", + "mouth": "dumbfounded", + "eyes": "3d", + "hat": "girl's hair short", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1275, + "metadata_dict": { + "fur": "cream", + "earring": "gold hoop", + "eyes": "3d", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1276, + "metadata_dict": { + "eyes": "holographic", + "mouth": "grin", + "hat": "seaman's hat", + "clothes": "sailor shirt", + "background": "blue", + "earring": "cross", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1277, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "gold hoop", + "background": "orange", + "eyes": "bored", + "clothes": "tanktop", + "hat": "vietnam era helmet", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1278, + "metadata_dict": { + "background": "orange", + "hat": "fisherman's hat", + "mouth": "bored", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1279, + "metadata_dict": { + "clothes": "striped tee", + "fur": "pink", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1280, + "metadata_dict": { + "clothes": "leather jacket", + "eyes": "3d", + "mouth": "bored", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1281, + "metadata_dict": { + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1282, + "metadata_dict": { + "fur": "cream", + "mouth": "bored pipe", + "eyes": "robot", + "background": "blue", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1283, + "metadata_dict": { + "fur": "dmt", + "eyes": "coins", + "hat": "stuntman helmet", + "clothes": "leather jacket", + "mouth": "tongue out", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1284, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "background": "blue", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1285, + "metadata_dict": { + "hat": "seaman's hat", + "background": "yellow", + "mouth": "bored", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1286, + "metadata_dict": { + "background": "blue", + "earring": "gold stud", + "fur": "black", + "mouth": "small grin", + "hat": "safari", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1287, + "metadata_dict": { + "clothes": "blue dress", + "eyes": "robot", + "fur": "pink", + "mouth": "small grin", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1288, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "sushi chef headband", + "mouth": "phoneme ooo", + "earring": "gold hoop", + "eyes": "sleepy", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1289, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "wide eyed", + "clothes": "leather jacket", + "fur": "black", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1290, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "black", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1291, + "metadata_dict": { + "clothes": "bone necklace", + "background": "yellow", + "fur": "red", + "hat": "bowler", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1292, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "phoneme vuh", + "fur": "black", + "earring": "silver hoop", + "hat": "safari", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1293, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "dark brown", + "mouth": "bored", + "hat": "fisherman's hat", + "background": "yellow", + "earring": "cross", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1294, + "metadata_dict": { + "hat": "s&m hat", + "fur": "red", + "background": "purple", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1295, + "metadata_dict": { + "eyes": "closed", + "fur": "red", + "background": "yellow", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1296, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "coins", + "fur": "dark brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1297, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1298, + "metadata_dict": { + "clothes": "striped tee", + "fur": "gray", + "earring": "gold hoop", + "background": "aquamarine", + "mouth": "bored pipe", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1299, + "metadata_dict": { + "clothes": "wool turtleneck", + "earring": "gold hoop", + "background": "orange", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1300, + "metadata_dict": { + "eyes": "zombie", + "earring": "silver stud", + "mouth": "jovial", + "fur": "red", + "clothes": "hip hop", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1301, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "fur": "dark brown", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1302, + "metadata_dict": { + "mouth": "discomfort", + "hat": "sea captain's hat", + "fur": "black", + "earring": "silver hoop", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1303, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "background": "aquamarine", + "fur": "pink", + "eyes": "bloodshot", + "hat": "ww2 pilot helm" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1304, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "earring": "gold hoop", + "eyes": "bored", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1305, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "cream", + "hat": "king's crown", + "background": "aquamarine", + "clothes": "tie dye" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1306, + "metadata_dict": { + "clothes": "striped tee", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1307, + "metadata_dict": { + "fur": "red", + "eyes": "zombie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1308, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "mouth": "bored unshaven", + "background": "blue", + "earring": "silver hoop", + "fur": "brown", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1309, + "metadata_dict": { + "eyes": "heart", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1310, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored kazoo", + "clothes": "black t", + "earring": "gold stud", + "fur": "dark brown", + "hat": "faux hawk", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1311, + "metadata_dict": { + "hat": "faux hawk", + "mouth": "jovial", + "background": "orange", + "clothes": "toga", + "fur": "cheetah", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1312, + "metadata_dict": { + "hat": "party hat 2", + "fur": "tan", + "mouth": "grin", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1313, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "fur": "cheetah", + "hat": "bunny ears", + "eyes": "angry", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1314, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "coins", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1315, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "dark brown", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1316, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "black", + "background": "orange", + "hat": "girl's hair short", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1317, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "hat": "spinner hat", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1318, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "eyes": "eyepatch", + "fur": "red", + "clothes": "bayc t black", + "hat": "army hat", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1319, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "vietnam era helmet", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1320, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "mouth": "jovial", + "fur": "pink", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1321, + "metadata_dict": { + "clothes": "tweed suit", + "mouth": "bored bubblegum", + "fur": "cheetah", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1322, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "pink", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1323, + "metadata_dict": { + "eyes": "x eyes", + "earring": "diamond stud", + "mouth": "dumbfounded", + "background": "blue", + "fur": "black", + "hat": "commie hat", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1324, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "mouth": "bored unshaven party horn", + "earring": "silver hoop", + "eyes": "sleepy", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1325, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "black", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1326, + "metadata_dict": { + "clothes": "rainbow suspenders", + "hat": "fez", + "mouth": "dumbfounded", + "fur": "red", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1327, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "black", + "hat": "beanie", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1328, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t red", + "fur": "dmt", + "earring": "silver stud", + "hat": "bowler", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1329, + "metadata_dict": { + "eyes": "sleepy", + "mouth": "bored unshaven", + "fur": "cream", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1330, + "metadata_dict": { + "clothes": "black holes t", + "background": "aquamarine", + "mouth": "bored unshaven kazoo", + "earring": "silver hoop", + "eyes": "bored", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1331, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "fur": "black", + "hat": "army hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1332, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "hat": "army hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1333, + "metadata_dict": { + "eyes": "x eyes", + "background": "blue", + "fur": "dark brown", + "clothes": "tanktop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1334, + "metadata_dict": { + "clothes": "biker vest", + "eyes": "3d", + "background": "yellow", + "hat": "commie hat", + "mouth": "phoneme wah", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1335, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "grin", + "earring": "silver stud", + "fur": "red", + "background": "blue", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1336, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "gray", + "background": "orange", + "eyes": "bored", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1337, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "clothes": "bone necklace", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1338, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "sad", + "background": "blue", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1339, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "hat": "seaman's hat", + "clothes": "leather jacket", + "earring": "silver hoop", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1340, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1341, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "silver stud", + "hat": "spinner hat", + "eyes": "bored", + "background": "yellow", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1342, + "metadata_dict": { + "clothes": "bayc t red", + "background": "orange", + "mouth": "bored", + "eyes": "bored", + "fur": "brown", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1343, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1344, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather punk jacket", + "eyes": "coins", + "fur": "black", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1345, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "bored", + "background": "yellow", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1346, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "background": "orange", + "hat": "cowboy hat", + "fur": "brown", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1347, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "scumbag", + "fur": "cream", + "hat": "fez", + "mouth": "dumbfounded", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1348, + "metadata_dict": { + "background": "new punk blue", + "hat": "fez", + "eyes": "robot", + "fur": "black", + "mouth": "phoneme wah", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1349, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1350, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "hat": "girl's hair short", + "background": "yellow", + "fur": "death bot", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1351, + "metadata_dict": { + "eyes": "closed", + "earring": "silver stud", + "fur": "pink", + "clothes": "smoking jacket", + "hat": "army hat", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1352, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "irish boho", + "mouth": "grin", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1353, + "metadata_dict": { + "fur": "gray", + "hat": "party hat 1", + "clothes": "leather jacket", + "background": "orange", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1354, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored kazoo", + "fur": "black", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1355, + "metadata_dict": { + "hat": "seaman's hat", + "background": "orange", + "eyes": "bloodshot", + "clothes": "toga", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1356, + "metadata_dict": { + "clothes": "space suit", + "fur": "gray", + "hat": "spinner hat", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1357, + "metadata_dict": { + "mouth": "grin multicolored", + "hat": "party hat 1", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1358, + "metadata_dict": { + "mouth": "bored party horn", + "clothes": "tanktop", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "brown", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1359, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "gray", + "background": "orange", + "earring": "silver hoop", + "eyes": "blue beams", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1360, + "metadata_dict": { + "eyes": "heart", + "clothes": "wool turtleneck", + "mouth": "phoneme vuh", + "earring": "silver stud", + "hat": "spinner hat", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1361, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "clothes": "hawaiian", + "eyes": "3d", + "background": "yellow", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1362, + "metadata_dict": { + "mouth": "bored party horn", + "earring": "silver stud", + "fur": "pink", + "background": "orange", + "clothes": "tanktop", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1363, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "cream", + "eyes": "angry", + "hat": "commie hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1364, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "sleeveless t", + "fur": "black", + "background": "gray", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1365, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "rainbow suspenders", + "fur": "red", + "background": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1366, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "eyes": "robot", + "background": "orange", + "hat": "ww2 pilot helm", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1367, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "robot", + "earring": "silver stud", + "clothes": "smoking jacket", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1368, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "eyes": "coins", + "fur": "dark brown", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1369, + "metadata_dict": { + "mouth": "grin", + "eyes": "bloodshot", + "clothes": "toga", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1370, + "metadata_dict": { + "hat": "beanie", + "earring": "gold stud", + "fur": "black", + "background": "blue", + "eyes": "3d", + "clothes": "bone necklace", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1371, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "mouth": "bored unshaven pipe", + "background": "blue", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1372, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "leather punk jacket", + "background": "gray", + "mouth": "tongue out", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1373, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "dmt", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1374, + "metadata_dict": { + "hat": "irish boho", + "earring": "silver stud", + "mouth": "jovial", + "eyes": "bloodshot", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1375, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "gold hoop", + "fur": "black", + "eyes": "3d", + "background": "purple", + "hat": "commie hat", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1376, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "bored", + "earring": "silver hoop", + "background": "yellow", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1377, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "sleeveless t", + "mouth": "phoneme ooo", + "eyes": "3d", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1378, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored cigarette", + "clothes": "black t", + "eyes": "bored", + "earring": "silver hoop", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1379, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "black t", + "mouth": "jovial", + "fur": "black", + "hat": "short mohawk", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1380, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "bowler", + "eyes": "bored", + "clothes": "prom dress", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1381, + "metadata_dict": { + "background": "gray", + "mouth": "grin", + "hat": "seaman's hat", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1382, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "puffy vest", + "hat": "fez", + "earring": "silver stud", + "background": "blue", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1383, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "blindfold", + "fur": "black", + "background": "orange", + "hat": "bayc flipped brim", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1384, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "earring": "gold stud", + "hat": "fisherman's hat", + "clothes": "tanktop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1385, + "metadata_dict": { + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1386, + "metadata_dict": { + "eyes": "zombie", + "background": "aquamarine", + "hat": "short mohawk", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1387, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "bored bubblegum", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1388, + "metadata_dict": { + "mouth": "grin diamond grill", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1389, + "metadata_dict": { + "clothes": "kings robe", + "fur": "tan", + "mouth": "dumbfounded", + "hat": "bayc flipped brim", + "eyes": "bored", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1390, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "fur": "pink", + "earring": "silver hoop", + "eyes": "bored", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1391, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "eyes": "coins", + "hat": "king's crown", + "mouth": "phoneme vuh", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1392, + "metadata_dict": { + "hat": "irish boho", + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1393, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1394, + "metadata_dict": { + "hat": "fez", + "fur": "black", + "background": "gray", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1395, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "clothes": "biker vest", + "mouth": "phoneme wah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1396, + "metadata_dict": { + "mouth": "small grin", + "eyes": "bored", + "clothes": "tanktop", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1397, + "metadata_dict": { + "clothes": "rainbow suspenders", + "hat": "stuntman helmet", + "fur": "pink", + "mouth": "bored unshaven cigarette", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1398, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "eyes": "bored", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1399, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "hat": "fez", + "background": "orange", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1400, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "background": "orange", + "earring": "silver hoop", + "clothes": "tanktop", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1401, + "metadata_dict": { + "clothes": "black suit", + "mouth": "grin diamond grill", + "eyes": "bored", + "background": "gray", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1402, + "metadata_dict": { + "hat": "s&m hat", + "background": "blue", + "clothes": "biker vest", + "fur": "dark brown", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1403, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "cream", + "earring": "silver stud", + "hat": "short mohawk", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1404, + "metadata_dict": { + "clothes": "space suit", + "earring": "silver stud", + "background": "blue", + "hat": "beanie", + "mouth": "bored cigarette", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1405, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "hat": "short mohawk", + "clothes": "bayc t black", + "earring": "silver hoop", + "eyes": "crazy", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1406, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "gray", + "mouth": "phoneme vuh", + "eyes": "bored", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1407, + "metadata_dict": { + "eyes": "heart", + "background": "gray", + "clothes": "biker vest", + "hat": "fisherman's hat", + "fur": "cheetah", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1408, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "eyes": "bored", + "clothes": "toga", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1409, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "eyes": "robot", + "mouth": "bored bubblegum", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1410, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather punk jacket", + "hat": "s&m hat", + "earring": "gold hoop", + "background": "blue", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1411, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin", + "background": "blue", + "fur": "brown", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1412, + "metadata_dict": { + "eyes": "x eyes", + "fur": "dmt", + "background": "blue", + "hat": "spinner hat", + "clothes": "tuxedo tee", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1413, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "hat": "seaman's hat", + "clothes": "leather jacket", + "fur": "brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1414, + "metadata_dict": { + "fur": "cream", + "hat": "stuntman helmet", + "background": "aquamarine", + "mouth": "bored pipe", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1415, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1416, + "metadata_dict": { + "fur": "gray", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1417, + "metadata_dict": { + "fur": "robot", + "hat": "irish boho", + "eyes": "hypnotized", + "earring": "diamond stud", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1418, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "background": "gray", + "earring": "gold hoop", + "hat": "stuntman helmet", + "fur": "brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1419, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "brown", + "hat": "bayc hat red", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1420, + "metadata_dict": { + "mouth": "discomfort", + "fur": "red", + "background": "blue", + "clothes": "tie dye", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1421, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "gold hoop", + "eyes": "bored", + "clothes": "pimp coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1422, + "metadata_dict": { + "hat": "vietnam era helmet", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1423, + "metadata_dict": { + "eyes": "closed", + "earring": "silver stud", + "background": "yellow", + "mouth": "bored cigar", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1424, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "pink", + "earring": "silver hoop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1425, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1426, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "cream", + "hat": "seaman's hat", + "background": "purple", + "earring": "cross", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1427, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "black t", + "mouth": "dumbfounded", + "fur": "red", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1428, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "eyes": "sunglasses", + "clothes": "work vest", + "earring": "gold stud", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1429, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven cigarette", + "earring": "silver hoop", + "eyes": "bored", + "background": "gray", + "clothes": "caveman pelt", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1430, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "clothes": "space suit", + "background": "orange", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1431, + "metadata_dict": { + "earring": "silver stud", + "eyes": "3d", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1432, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "bored", + "hat": "army hat", + "fur": "brown", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1433, + "metadata_dict": { + "background": "aquamarine", + "fur": "pink", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1434, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "tan", + "eyes": "coins", + "background": "aquamarine", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1435, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "gray", + "background": "orange", + "eyes": "3d", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1436, + "metadata_dict": { + "eyes": "zombie", + "fur": "gray", + "background": "yellow", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1437, + "metadata_dict": { + "fur": "tan", + "eyes": "holographic", + "background": "blue", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1438, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "dumbfounded", + "fur": "black", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1439, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "stuntman helmet", + "fur": "black", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1440, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "hat": "seaman's hat", + "fur": "pink", + "background": "orange", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1441, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "jovial", + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1442, + "metadata_dict": { + "fur": "dmt", + "mouth": "dumbfounded", + "earring": "silver stud", + "eyes": "3d", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1443, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1444, + "metadata_dict": { + "fur": "red", + "mouth": "bored unshaven kazoo", + "background": "gray", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1445, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "blue", + "eyes": "robot", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1446, + "metadata_dict": { + "background": "orange", + "fur": "noise", + "hat": "bowler", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1447, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "tweed suit", + "fur": "cheetah", + "background": "yellow", + "mouth": "phoneme wah", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1448, + "metadata_dict": { + "fur": "tan", + "hat": "fez", + "earring": "silver stud", + "mouth": "jovial", + "eyes": "bored", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1449, + "metadata_dict": { + "background": "new punk blue", + "hat": "irish boho", + "clothes": "black t", + "earring": "silver stud", + "fur": "pink", + "eyes": "crazy", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1450, + "metadata_dict": { + "fur": "golden brown", + "eyes": "robot", + "background": "orange", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1451, + "metadata_dict": { + "eyes": "heart", + "clothes": "leather jacket", + "fur": "dark brown", + "hat": "cowboy hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1452, + "metadata_dict": { + "fur": "cheetah", + "mouth": "bored pipe", + "eyes": "3d", + "clothes": "bayc t black", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1453, + "metadata_dict": { + "mouth": "grin", + "clothes": "work vest", + "eyes": "robot", + "fur": "black", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1454, + "metadata_dict": { + "fur": "red", + "mouth": "bored pipe", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "hip hop", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1455, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "short mohawk", + "fur": "dark brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1456, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "background": "orange", + "earring": "silver hoop", + "hat": "girl's hair short", + "fur": "cheetah", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1457, + "metadata_dict": { + "mouth": "phoneme wah", + "hat": "s&m hat", + "eyes": "bored", + "background": "yellow", + "fur": "white", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1458, + "metadata_dict": { + "eyes": "zombie", + "hat": "party hat 1", + "fur": "pink", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1459, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "hat": "horns", + "eyes": "zombie", + "clothes": "prison jumpsuit", + "fur": "black", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1460, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "eyes": "robot", + "hat": "spinner hat", + "mouth": "bored unshaven cigarette", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1461, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "red", + "background": "aquamarine", + "eyes": "3d", + "hat": "safari", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1462, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "zombie", + "hat": "prussian helmet", + "fur": "dark brown", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1463, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "leather jacket", + "fur": "black", + "background": "blue", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1464, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "hat": "fez", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1465, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "hat": "stuntman helmet", + "fur": "dark brown", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1466, + "metadata_dict": { + "fur": "tan", + "clothes": "bayc t red", + "background": "aquamarine", + "mouth": "bored bubblegum", + "hat": "fisherman's hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1467, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "hat": "ww2 pilot helm", + "eyes": "bored", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1468, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "fur": "black", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1469, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1470, + "metadata_dict": { + "eyes": "x eyes", + "earring": "diamond stud", + "background": "blue", + "fur": "pink", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1471, + "metadata_dict": { + "hat": "baby's bonnet", + "background": "orange", + "mouth": "bored unshaven cigar", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1472, + "metadata_dict": { + "eyes": "x eyes", + "background": "yellow", + "mouth": "bored", + "fur": "white", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1473, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "hat": "fez", + "clothes": "cowboy shirt", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1474, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "eyes": "bloodshot", + "hat": "girl's hair short", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1475, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "sushi chef headband", + "mouth": "grin multicolored", + "eyes": "robot", + "fur": "black", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1476, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "gray", + "hat": "safari", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1477, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored kazoo", + "fur": "red", + "background": "blue", + "clothes": "tie dye", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1478, + "metadata_dict": { + "eyes": "heart", + "earring": "gold hoop", + "hat": "short mohawk", + "fur": "brown", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1479, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "gold hoop", + "mouth": "dumbfounded", + "fur": "black", + "hat": "beanie", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1480, + "metadata_dict": { + "background": "new punk blue", + "fur": "pink", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1481, + "metadata_dict": { + "mouth": "grin", + "hat": "prussian helmet", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1482, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "grin", + "earring": "gold hoop", + "clothes": "biker vest", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1483, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin multicolored", + "earring": "gold hoop", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1484, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "background": "blue", + "eyes": "3d", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1485, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "3d", + "clothes": "toga", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1486, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "fur": "dmt", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1487, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "stuntman helmet", + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1488, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1489, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "background": "blue", + "fur": "death bot", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1490, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "background": "orange", + "fur": "dark brown", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1491, + "metadata_dict": { + "fur": "tan", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "eyes": "angry", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1492, + "metadata_dict": { + "eyes": "eyepatch", + "background": "blue", + "hat": "girl's hair short", + "fur": "death bot", + "mouth": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1493, + "metadata_dict": { + "clothes": "space suit", + "fur": "dmt", + "eyes": "coins", + "mouth": "dumbfounded", + "background": "aquamarine", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1494, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "hat": "irish boho", + "clothes": "prison jumpsuit", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1495, + "metadata_dict": { + "fur": "gray", + "clothes": "cowboy shirt", + "background": "orange", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1496, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "golden brown", + "earring": "silver stud", + "clothes": "work vest", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1497, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "fur": "red", + "hat": "bunny ears", + "mouth": "bored", + "eyes": "angry", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1498, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "hat": "ww2 pilot helm", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1499, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "hat": "stuntman helmet", + "mouth": "jovial", + "clothes": "smoking jacket", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1500, + "metadata_dict": { + "eyes": "closed", + "mouth": "discomfort", + "hat": "irish boho", + "fur": "gray", + "clothes": "tuxedo tee", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1501, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "eyes": "3d", + "hat": "short mohawk", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1502, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "sleeveless logo t", + "fur": "death bot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1503, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "hat": "fisherman's hat", + "mouth": "bored", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1504, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "clothes": "sleeveless t", + "mouth": "dumbfounded", + "earring": "silver hoop", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1505, + "metadata_dict": { + "fur": "golden brown", + "eyes": "zombie", + "mouth": "bored unshaven cigarette", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1506, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "earring": "silver stud", + "background": "orange", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1507, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "fur": "brown", + "mouth": "bored cigarette", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1508, + "metadata_dict": { + "fur": "tan", + "eyes": "holographic", + "background": "blue", + "hat": "bayc flipped brim", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1509, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "zombie", + "clothes": "biker vest", + "mouth": "bored unshaven cigarette", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1510, + "metadata_dict": { + "eyes": "closed", + "hat": "party hat 1", + "mouth": "dumbfounded", + "background": "gray", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1511, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "mouth": "small grin", + "hat": "bunny ears", + "earring": "silver hoop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1512, + "metadata_dict": { + "eyes": "closed", + "clothes": "lumberjack shirt", + "mouth": "grin", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1513, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1514, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "bloodshot", + "mouth": "bored", + "fur": "brown", + "earring": "cross", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1515, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "clothes": "tuxedo tee", + "eyes": "sleepy", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1516, + "metadata_dict": { + "fur": "gray", + "clothes": "rainbow suspenders", + "hat": "stuntman helmet", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1517, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "gray", + "hat": "sea captain's hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1518, + "metadata_dict": { + "earring": "gold hoop", + "background": "blue", + "eyes": "robot", + "fur": "dark brown", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1519, + "metadata_dict": { + "background": "gray", + "eyes": "hypnotized", + "fur": "brown", + "mouth": "tongue out", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1520, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "black", + "hat": "spinner hat", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1521, + "metadata_dict": { + "eyes": "scumbag", + "fur": "black", + "mouth": "small grin", + "background": "yellow", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1522, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "blue dress", + "background": "aquamarine", + "mouth": "jovial", + "earring": "gold stud", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1523, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "hat": "party hat 1", + "fur": "brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1524, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "fur": "brown", + "eyes": "bored", + "clothes": "tanktop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1525, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "fur": "black", + "eyes": "coins" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1526, + "metadata_dict": { + "eyes": "closed", + "fur": "brown", + "background": "yellow", + "earring": "gold stud", + "clothes": "biker vest", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1527, + "metadata_dict": { + "fur": "tan", + "background": "gray", + "eyes": "coins", + "mouth": "small grin", + "clothes": "pimp coat", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1528, + "metadata_dict": { + "earring": "gold hoop", + "background": "yellow", + "clothes": "leather jacket", + "fur": "pink", + "eyes": "bored", + "hat": "bayc hat red", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1529, + "metadata_dict": { + "clothes": "black t", + "mouth": "rage", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1530, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "clothes": "sailor shirt", + "hat": "fez", + "fur": "pink", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1531, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "black t", + "fur": "red", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1532, + "metadata_dict": { + "background": "aquamarine", + "eyes": "sleepy", + "hat": "commie hat", + "clothes": "hip hop", + "mouth": "bored cigar", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1533, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin diamond grill", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "army hat", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1534, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "robot", + "clothes": "tie dye", + "background": "orange", + "hat": "faux hawk", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1535, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "sushi chef headband", + "background": "blue", + "fur": "cheetah", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1536, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "phoneme ooo", + "fur": "black", + "background": "orange", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1537, + "metadata_dict": { + "fur": "brown", + "background": "purple", + "hat": "ww2 pilot helm", + "clothes": "tanktop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1538, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "hat": "cowboy hat", + "mouth": "bored pizza", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1539, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1540, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "small grin", + "clothes": "toga", + "fur": "brown", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1541, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "golden brown", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1542, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "fur": "dark brown", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1543, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "coins", + "earring": "gold hoop", + "hat": "safari", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1544, + "metadata_dict": { + "eyes": "closed", + "fur": "brown", + "mouth": "bored unshaven pipe", + "hat": "cowboy hat", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1545, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "blue", + "earring": "silver stud", + "hat": "spinner hat", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1546, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "bandolier", + "fur": "gray", + "earring": "gold hoop", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1547, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "background": "blue", + "clothes": "hawaiian", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1548, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "scumbag", + "fur": "gray", + "background": "aquamarine", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1549, + "metadata_dict": { + "clothes": "sleeveless logo t", + "eyes": "3d", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1550, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "cyborg", + "hat": "fisherman's hat", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1551, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "clothes": "striped tee", + "background": "blue", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1552, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "gold hoop", + "fur": "black", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1553, + "metadata_dict": { + "fur": "blue", + "clothes": "bone tee", + "mouth": "grin", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1554, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "mouth": "grin", + "background": "yellow", + "hat": "beanie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1555, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "black t", + "background": "orange", + "fur": "brown", + "hat": "bayc hat red", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1556, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "gray", + "mouth": "bored pipe", + "hat": "bayc flipped brim", + "clothes": "toga", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1557, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "girl's hair short", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1558, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "police motorcycle helmet", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1559, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "mouth": "grin", + "hat": "army hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1560, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1561, + "metadata_dict": { + "eyes": "closed", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "fur": "pink", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1562, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "clothes": "lumberjack shirt", + "fur": "trippy", + "hat": "fez", + "earring": "gold stud", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1563, + "metadata_dict": { + "background": "gray", + "eyes": "bored", + "hat": "faux hawk", + "clothes": "admirals coat", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1564, + "metadata_dict": { + "background": "new punk blue", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1565, + "metadata_dict": { + "clothes": "bayc t black", + "hat": "bayc flipped brim", + "background": "yellow", + "mouth": "bored", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1566, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "grin", + "fur": "red", + "hat": "short mohawk", + "earring": "silver hoop", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1567, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "mouth": "dumbfounded", + "background": "blue", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1568, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "tan", + "background": "blue", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1569, + "metadata_dict": { + "background": "aquamarine", + "fur": "golden brown", + "eyes": "bored", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1570, + "metadata_dict": { + "mouth": "grin", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "hat": "commie hat", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1571, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "fur": "dark brown", + "eyes": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1572, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "clothes": "striped tee", + "background": "gray", + "earring": "silver stud", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1573, + "metadata_dict": { + "background": "gray", + "earring": "gold hoop", + "hat": "fisherman's hat", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1574, + "metadata_dict": { + "clothes": "black t", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1575, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1576, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "fur": "cream", + "hat": "girl's hair pink", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1577, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "earring": "silver hoop", + "hat": "bowler", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1578, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "zombie", + "clothes": "black t", + "hat": "short mohawk", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1579, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "sailor shirt", + "hat": "cowboy hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1580, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "clothes": "tweed suit", + "background": "aquamarine", + "mouth": "bored", + "hat": "cowboy hat", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1581, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "fur": "black", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1582, + "metadata_dict": { + "fur": "tan", + "mouth": "dumbfounded", + "background": "orange", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1583, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "mouth": "dumbfounded", + "hat": "beanie", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1584, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "eyes": "zombie", + "mouth": "bored bubblegum", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1585, + "metadata_dict": { + "fur": "cream", + "clothes": "lumberjack shirt", + "mouth": "bored unshaven kazoo", + "eyes": "angry", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1586, + "metadata_dict": { + "eyes": "x eyes", + "hat": "horns", + "earring": "diamond stud", + "background": "aquamarine", + "mouth": "jovial", + "fur": "pink" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1587, + "metadata_dict": { + "hat": "girl's hair short", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "bored", + "clothes": "lab coat", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1588, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "pink", + "background": "purple", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1589, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "eyes": "3d", + "clothes": "bone necklace", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1590, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "fur": "black", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1591, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "coins", + "background": "gray", + "hat": "bowler", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1592, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "blue dress", + "fur": "dark brown", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1593, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "clothes": "black t", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1594, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "seaman's hat", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1595, + "metadata_dict": { + "fur": "gray", + "background": "blue", + "eyes": "sleepy", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1596, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "hat": "bowler", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1597, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bayc flipped brim", + "eyes": "bored", + "fur": "cheetah", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1598, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "grin multicolored", + "eyes": "coins", + "fur": "pink", + "hat": "short mohawk", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1599, + "metadata_dict": { + "eyes": "heart", + "hat": "spinner hat", + "fur": "black", + "background": "orange", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1600, + "metadata_dict": { + "fur": "golden brown", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1601, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "bayc hat black", + "fur": "golden brown", + "mouth": "grin", + "earring": "gold hoop", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1602, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "eyes": "coins", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "bunny ears", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1603, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "gray", + "hat": "king's crown", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1604, + "metadata_dict": { + "eyes": "heart", + "hat": "sushi chef headband", + "background": "orange", + "fur": "pink", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1605, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "clothes": "navy striped tee", + "earring": "silver hoop", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1606, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "hat": "bayc flipped brim", + "clothes": "pimp coat", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1607, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "clothes": "tweed suit", + "fur": "black", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1608, + "metadata_dict": { + "background": "aquamarine", + "hat": "short mohawk", + "mouth": "small grin", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1609, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "bored unshaven bubblegum", + "background": "aquamarine", + "hat": "vietnam era helmet", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1610, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "background": "blue", + "earring": "gold stud", + "eyes": "3d", + "hat": "short mohawk", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1611, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "earring": "silver stud", + "clothes": "leather jacket", + "background": "orange", + "eyes": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1612, + "metadata_dict": { + "eyes": "bloodshot", + "fur": "noise", + "hat": "short mohawk", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1613, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "sleeveless t", + "mouth": "jovial", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1614, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "gray", + "mouth": "bored bubblegum", + "background": "purple", + "hat": "bunny ears", + "earring": "cross", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1615, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "zombie", + "earring": "silver stud", + "clothes": "lab coat", + "background": "gray", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1616, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "fur": "dark brown", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1617, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "fur": "brown", + "clothes": "sleeveless logo t", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1618, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "eyes": "bored", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1619, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "dark brown", + "eyes": "bloodshot", + "clothes": "admirals coat", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1620, + "metadata_dict": { + "fur": "red", + "background": "yellow", + "mouth": "bored unshaven", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1621, + "metadata_dict": { + "eyes": "x eyes", + "earring": "gold hoop", + "hat": "fez", + "background": "blue", + "fur": "dark brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1622, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "background": "aquamarine", + "fur": "pink", + "clothes": "bayc t black", + "earring": "silver hoop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1623, + "metadata_dict": { + "earring": "silver hoop", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored", + "fur": "robot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1624, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin", + "fur": "dmt", + "clothes": "sailor shirt", + "background": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1625, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "seaman's hat", + "fur": "gray", + "eyes": "3d", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1626, + "metadata_dict": { + "background": "blue", + "mouth": "bored cigarette", + "fur": "white", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1627, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "clothes": "toga", + "earring": "silver hoop", + "hat": "army hat", + "mouth": "phoneme wah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1628, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "fur": "red", + "eyes": "bloodshot", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1629, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "earring": "gold stud", + "eyes": "bloodshot", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1630, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "diamond stud", + "mouth": "bored pipe", + "eyes": "bloodshot", + "fur": "cheetah", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1631, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "brown", + "earring": "silver stud", + "background": "gray", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1632, + "metadata_dict": { + "fur": "golden brown", + "mouth": "jovial", + "background": "blue", + "eyes": "3d", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1633, + "metadata_dict": { + "clothes": "rainbow suspenders", + "eyes": "bored", + "background": "gray", + "hat": "bowler", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1634, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "blindfold", + "clothes": "leather jacket", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1635, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "prussian helmet", + "earring": "silver stud", + "fur": "black", + "eyes": "bored", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1636, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "hat": "seaman's hat", + "earring": "gold hoop", + "clothes": "leather jacket", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1637, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "bored", + "hat": "cowboy hat", + "background": "yellow", + "fur": "death bot", + "earring": "cross", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1638, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "small grin", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1639, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "cream", + "clothes": "leather jacket", + "hat": "faux hawk", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1640, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "beanie", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1641, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "army hat", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1642, + "metadata_dict": { + "eyes": "wide eyed", + "mouth": "phoneme vuh", + "fur": "brown", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1643, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "fez", + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1644, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1645, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "beanie", + "fur": "cheetah", + "clothes": "prom dress", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1646, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "s&m hat", + "mouth": "grin", + "earring": "diamond stud", + "background": "orange", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1647, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "blue", + "clothes": "leather jacket", + "hat": "army hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1648, + "metadata_dict": { + "eyes": "holographic", + "mouth": "phoneme ooo", + "fur": "black", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1649, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "hat": "bayc flipped brim", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1650, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "clothes": "smoking jacket", + "hat": "bayc flipped brim", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1651, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "mouth": "small grin", + "clothes": "sleeveless logo t", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1652, + "metadata_dict": { + "fur": "golden brown", + "hat": "king's crown", + "mouth": "phoneme vuh", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1653, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "hat": "fez", + "background": "blue", + "earring": "silver hoop", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1654, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "fur": "golden brown", + "hat": "fez", + "earring": "silver stud", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1655, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "fur": "black", + "hat": "bayc flipped brim", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1656, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "dmt", + "earring": "diamond stud", + "background": "aquamarine", + "eyes": "3d", + "hat": "fisherman's hat", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1657, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "cream", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "spinner hat", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1658, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "tan", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1659, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "small grin", + "fur": "brown", + "clothes": "bone necklace", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1660, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "sleeveless t", + "mouth": "grin", + "hat": "baby's bonnet", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1661, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black t", + "hat": "fisherman's hat", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1662, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1663, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored party horn", + "clothes": "tie dye", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1664, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "fur": "cheetah", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1665, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "bloodshot", + "mouth": "tongue out", + "hat": "beanie", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1666, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "clothes": "tanktop", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1667, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "earring": "silver stud", + "fur": "dark brown", + "hat": "cowboy hat", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1668, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "phoneme ooo", + "clothes": "sailor shirt", + "background": "orange", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1669, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "hypnotized", + "clothes": "black t", + "earring": "silver stud", + "background": "aquamarine", + "fur": "brown", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1670, + "metadata_dict": { + "clothes": "tweed suit", + "fur": "black", + "mouth": "small grin", + "hat": "girl's hair short", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1671, + "metadata_dict": { + "background": "blue", + "hat": "girl's hair short", + "fur": "cheetah", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1672, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t black", + "fur": "cheetah", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1673, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "eyes": "3d", + "earring": "silver hoop", + "fur": "brown", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1674, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "black suit", + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1675, + "metadata_dict": { + "background": "aquamarine", + "hat": "spinner hat", + "fur": "pink", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1676, + "metadata_dict": { + "eyes": "scumbag", + "background": "aquamarine", + "hat": "bowler", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1677, + "metadata_dict": { + "background": "aquamarine", + "mouth": "phoneme oh", + "eyes": "scumbag", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1678, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "cheetah", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1679, + "metadata_dict": { + "fur": "brown", + "earring": "silver stud", + "eyes": "3d", + "clothes": "pimp coat", + "background": "purple", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1680, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "earring": "gold stud", + "eyes": "3d", + "clothes": "biker vest", + "fur": "white", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1681, + "metadata_dict": { + "fur": "tan", + "clothes": "tie dye", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1682, + "metadata_dict": { + "background": "gray", + "fur": "cheetah", + "hat": "beanie", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1683, + "metadata_dict": { + "mouth": "rage", + "clothes": "work vest", + "eyes": "3d", + "fur": "dark brown", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1684, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "eyes": "robot", + "background": "orange", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1685, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "beanie", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1686, + "metadata_dict": { + "fur": "cream", + "eyes": "zombie", + "clothes": "prison jumpsuit", + "mouth": "rage", + "background": "blue", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1687, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "leather jacket", + "background": "gray", + "hat": "commie hat", + "mouth": "bored cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1688, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "hat": "army hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1689, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "eyes": "zombie", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1690, + "metadata_dict": { + "mouth": "grin", + "hat": "baby's bonnet", + "clothes": "biker vest", + "background": "orange", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1691, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "tongue out", + "earring": "gold hoop", + "fur": "noise", + "eyes": "bored", + "hat": "army hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1692, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "clothes": "sailor shirt", + "background": "blue", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1693, + "metadata_dict": { + "fur": "tan", + "hat": "girl's hair pink", + "mouth": "phoneme vuh", + "eyes": "bored", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1694, + "metadata_dict": { + "eyes": "heart", + "clothes": "wool turtleneck", + "earring": "gold hoop", + "hat": "fez", + "fur": "pink", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1695, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "background": "blue", + "hat": "fisherman's hat", + "fur": "cheetah", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1696, + "metadata_dict": { + "hat": "stuntman helmet", + "background": "blue", + "fur": "black", + "eyes": "3d", + "clothes": "tie dye", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1697, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "laurel wreath", + "eyes": "bored", + "fur": "white", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1698, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "background": "blue", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1699, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "grin", + "clothes": "cowboy shirt", + "hat": "short mohawk", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1700, + "metadata_dict": { + "eyes": "closed", + "mouth": "rage", + "clothes": "work vest", + "background": "blue", + "fur": "black", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1701, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "gold hoop", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1702, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "clothes": "leather jacket", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1703, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "robot", + "earring": "gold stud", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1704, + "metadata_dict": { + "eyes": "coins", + "earring": "silver stud", + "mouth": "jovial", + "background": "blue", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1705, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "coins", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1706, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "party hat 1", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1707, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "mouth": "small grin", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1708, + "metadata_dict": { + "earring": "diamond stud", + "eyes": "robot", + "fur": "pink", + "background": "orange", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1709, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "dumbfounded", + "fur": "brown", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1710, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "red", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1711, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "background": "orange", + "mouth": "tongue out", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1712, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "work vest", + "earring": "silver hoop", + "hat": "faux hawk", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1713, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "background": "aquamarine", + "hat": "fisherman's hat", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1714, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "clothes": "leather punk jacket", + "mouth": "bored bubblegum", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1715, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "tan", + "hat": "seaman's hat", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1716, + "metadata_dict": { + "hat": "irish boho", + "fur": "brown", + "mouth": "phoneme vuh", + "eyes": "robot", + "earring": "silver hoop", + "background": "gray", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1717, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "golden brown", + "hat": "stuntman helmet", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1718, + "metadata_dict": { + "fur": "brown", + "eyes": "bloodshot", + "mouth": "tongue out", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1719, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "scumbag", + "mouth": "bored unshaven cigarette", + "background": "blue", + "fur": "cheetah", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1720, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "hat": "cowboy hat", + "clothes": "toga", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1721, + "metadata_dict": { + "mouth": "discomfort", + "fur": "dark brown", + "eyes": "bored", + "hat": "vietnam era helmet", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1722, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1723, + "metadata_dict": { + "mouth": "jovial", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "purple", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1724, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "striped tee", + "earring": "silver stud", + "fur": "pink", + "hat": "commie hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1725, + "metadata_dict": { + "eyes": "blue beams", + "clothes": "sleeveless t", + "background": "gray", + "mouth": "tongue out", + "fur": "brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1726, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "solid gold", + "background": "gray", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1727, + "metadata_dict": { + "mouth": "grin", + "clothes": "tie dye", + "eyes": "bored", + "fur": "brown", + "hat": "vietnam era helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1728, + "metadata_dict": { + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "mouth": "bored", + "eyes": "bored", + "hat": "safari", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1729, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "background": "aquamarine", + "eyes": "3d", + "fur": "pink", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1730, + "metadata_dict": { + "earring": "silver stud", + "background": "aquamarine", + "clothes": "smoking jacket", + "eyes": "bored", + "mouth": "bored", + "fur": "zombie", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1731, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "small grin", + "fur": "cheetah", + "background": "yellow", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1732, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "hat": "laurel wreath", + "eyes": "zombie", + "clothes": "tuxedo tee", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1733, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "eyes": "robot", + "fur": "black", + "mouth": "tongue out", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1734, + "metadata_dict": { + "hat": "faux hawk", + "background": "aquamarine", + "eyes": "bored", + "fur": "solid gold", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1735, + "metadata_dict": { + "clothes": "striped tee", + "earring": "silver stud", + "fur": "pink", + "hat": "cowboy hat", + "mouth": "tongue out", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1736, + "metadata_dict": { + "fur": "tan", + "eyes": "zombie", + "earring": "gold hoop", + "mouth": "bored pizza", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1737, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "fur": "tan", + "eyes": "coins", + "mouth": "jovial", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1738, + "metadata_dict": { + "hat": "fez", + "mouth": "dumbfounded", + "fur": "pink", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1739, + "metadata_dict": { + "fur": "tan", + "hat": "laurel wreath", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "bored", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1740, + "metadata_dict": { + "clothes": "bandolier", + "earring": "gold hoop", + "fur": "brown", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1741, + "metadata_dict": { + "eyes": "zombie", + "background": "aquamarine", + "fur": "black", + "mouth": "small grin", + "hat": "army hat", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1742, + "metadata_dict": { + "background": "aquamarine", + "eyes": "3d", + "fur": "pink", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1743, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "cream", + "background": "orange", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1744, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "clothes": "sailor shirt", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1745, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "black holes t", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1746, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "black holes t", + "earring": "gold hoop", + "background": "yellow", + "eyes": "bored", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1747, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "fur": "black", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1748, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "clothes": "admirals coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1749, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "hat": "short mohawk", + "background": "gray", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1750, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "eyes": "3d", + "fur": "dark brown", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1751, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless t", + "hat": "fez", + "background": "orange", + "mouth": "bored unshaven cigar", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1752, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "fur": "pink", + "background": "orange", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1753, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "background": "purple", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1754, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "dmt", + "mouth": "phoneme vuh", + "earring": "silver stud", + "clothes": "stunt jacket", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1755, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "vietnam jacket", + "fur": "black", + "hat": "cowboy hat", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1756, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "mouth": "jovial", + "clothes": "leather jacket", + "fur": "dark brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1757, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "stuntman helmet", + "fur": "brown", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1758, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "aquamarine", + "earring": "gold stud", + "fur": "pink", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1759, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "clothes": "tanktop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1760, + "metadata_dict": { + "fur": "black", + "eyes": "bloodshot", + "clothes": "pimp coat", + "background": "gray", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1761, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "background": "aquamarine", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1762, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "eyes": "coins", + "fur": "brown", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1763, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "dmt", + "earring": "gold hoop", + "eyes": "bored", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1764, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "phoneme ooo", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1765, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "blue", + "hat": "faux hawk", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1766, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "gray", + "earring": "gold hoop", + "eyes": "sad", + "background": "blue", + "hat": "bowler", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1767, + "metadata_dict": { + "eyes": "zombie", + "background": "blue", + "fur": "dark brown", + "hat": "short mohawk", + "clothes": "tanktop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1768, + "metadata_dict": { + "clothes": "space suit", + "mouth": "phoneme vuh", + "earring": "gold stud", + "fur": "pink", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1769, + "metadata_dict": { + "clothes": "sailor shirt", + "earring": "silver stud", + "mouth": "bored pipe", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1770, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "fur": "dark brown", + "background": "purple", + "hat": "safari", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1771, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "dmt", + "hat": "party hat 1", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1772, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "zombie", + "mouth": "jovial", + "background": "blue", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1773, + "metadata_dict": { + "background": "new punk blue", + "hat": "girl's hair pink", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1774, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "fur": "pink", + "background": "orange", + "earring": "silver hoop", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1775, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "golden brown", + "hat": "short mohawk", + "mouth": "bored unshaven kazoo", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1776, + "metadata_dict": { + "fur": "tan", + "clothes": "black t", + "hat": "short mohawk", + "background": "gray", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1777, + "metadata_dict": { + "clothes": "striped tee", + "background": "gray", + "mouth": "grin", + "earring": "silver stud", + "eyes": "bloodshot", + "fur": "cheetah", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1778, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "sunglasses", + "background": "orange", + "clothes": "bayc t black", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1779, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "fur": "dmt", + "earring": "diamond stud", + "background": "yellow", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1780, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "gold stud", + "hat": "vietnam era helmet", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1781, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin", + "hat": "king's crown", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1782, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "background": "orange", + "eyes": "3d", + "clothes": "toga", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1783, + "metadata_dict": { + "fur": "tan", + "hat": "horns", + "background": "aquamarine", + "clothes": "leather jacket", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1784, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "closed", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1785, + "metadata_dict": { + "hat": "irish boho", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1786, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "biker vest", + "background": "orange", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1787, + "metadata_dict": { + "background": "blue", + "fur": "tan", + "mouth": "bored cigarette", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1788, + "metadata_dict": { + "clothes": "service", + "background": "orange", + "fur": "brown", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1789, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "space suit", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray", + "hat": "cowboy hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1790, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1791, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "cream", + "hat": "baby's bonnet", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1792, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "prussian helmet", + "fur": "cheetah", + "clothes": "navy striped tee", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1793, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "clothes": "black holes t", + "mouth": "phoneme ooo", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1794, + "metadata_dict": { + "mouth": "rage", + "eyes": "bored", + "hat": "cowboy hat", + "background": "purple", + "fur": "white", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1795, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "tanktop", + "eyes": "bored", + "background": "gray", + "hat": "bowler", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1796, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "s&m hat", + "earring": "gold hoop", + "background": "orange", + "fur": "dark brown", + "clothes": "lab coat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1797, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1798, + "metadata_dict": { + "hat": "irish boho", + "mouth": "phoneme vuh", + "clothes": "work vest", + "background": "orange", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1799, + "metadata_dict": { + "eyes": "coins", + "clothes": "prison jumpsuit", + "fur": "black", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1800, + "metadata_dict": { + "eyes": "zombie", + "fur": "gray", + "clothes": "work vest", + "earring": "silver hoop", + "background": "gray", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1801, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "pink", + "eyes": "bored", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1802, + "metadata_dict": { + "background": "yellow", + "eyes": "coins", + "mouth": "bored", + "fur": "tan" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1803, + "metadata_dict": { + "background": "blue", + "mouth": "bored bubblegum", + "fur": "noise", + "eyes": "crazy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1804, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "eyes": "coins", + "clothes": "sailor shirt", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1805, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "3d", + "background": "orange", + "fur": "cheetah", + "hat": "beanie", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1806, + "metadata_dict": { + "fur": "brown", + "clothes": "bayc t black", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1807, + "metadata_dict": { + "eyes": "heart", + "clothes": "lumberjack shirt", + "background": "orange", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1808, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "orange", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1809, + "metadata_dict": { + "hat": "s&m hat", + "background": "orange", + "fur": "noise", + "clothes": "biker vest", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1810, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "black holes t", + "mouth": "jovial", + "fur": "red", + "background": "aquamarine", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1811, + "metadata_dict": { + "background": "orange", + "fur": "cream", + "eyes": "bored", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1812, + "metadata_dict": { + "eyes": "heart", + "clothes": "tanktop", + "background": "yellow", + "hat": "bunny ears", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1813, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "earring": "gold stud", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1814, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "clothes": "lab coat", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1815, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "hat": "cowboy hat", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1816, + "metadata_dict": { + "fur": "black", + "background": "orange", + "hat": "short mohawk", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1817, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "fur": "gray", + "background": "aquamarine", + "clothes": "tuxedo tee", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1818, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "clothes": "bayc t black", + "eyes": "bored", + "hat": "bunny ears", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1819, + "metadata_dict": { + "background": "gray", + "fur": "golden brown", + "mouth": "dumbfounded", + "clothes": "tanktop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1820, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sea captain's hat", + "eyes": "sleepy", + "clothes": "hip hop", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1821, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "silver stud", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1822, + "metadata_dict": { + "background": "aquamarine", + "mouth": "discomfort", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1823, + "metadata_dict": { + "mouth": "tongue out", + "background": "blue", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "admirals coat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1824, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "background": "blue", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1825, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "mouth": "rage", + "background": "aquamarine", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1826, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "background": "blue", + "hat": "beanie", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1827, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "background": "aquamarine", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1828, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tie dye", + "eyes": "3d", + "hat": "fisherman's hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1829, + "metadata_dict": { + "eyes": "x eyes", + "fur": "gray", + "mouth": "bored party horn", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1830, + "metadata_dict": { + "hat": "irish boho", + "eyes": "robot", + "fur": "black", + "background": "gray", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1831, + "metadata_dict": { + "hat": "irish boho", + "mouth": "dumbfounded", + "background": "purple", + "clothes": "stunt jacket", + "fur": "death bot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1832, + "metadata_dict": { + "mouth": "grin", + "fur": "dmt", + "hat": "party hat 1", + "background": "aquamarine", + "eyes": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1833, + "metadata_dict": { + "mouth": "bored cigarette", + "clothes": "smoking jacket", + "hat": "bayc flipped brim", + "background": "purple", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1834, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme vuh", + "background": "purple", + "eyes": "crazy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1835, + "metadata_dict": { + "earring": "silver stud", + "hat": "spinner hat", + "mouth": "bored bubblegum", + "fur": "noise", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1836, + "metadata_dict": { + "fur": "brown", + "earring": "silver stud", + "hat": "short mohawk", + "mouth": "small grin", + "eyes": "bored", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1837, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "background": "orange", + "hat": "short mohawk", + "fur": "solid gold", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1838, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "blindfold", + "hat": "s&m hat", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1839, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "work vest", + "background": "blue", + "fur": "pink", + "eyes": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1840, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "bored pipe", + "fur": "black", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1841, + "metadata_dict": { + "hat": "party hat 2", + "fur": "black", + "eyes": "3d", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1842, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored pipe", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "bone necklace", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1843, + "metadata_dict": { + "hat": "horns", + "mouth": "phoneme ooo", + "fur": "gray", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1844, + "metadata_dict": { + "eyes": "holographic", + "mouth": "grin", + "clothes": "tweed suit", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1845, + "metadata_dict": { + "mouth": "bored unshaven kazoo", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1846, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "mouth": "grin gold grill", + "eyes": "scumbag", + "fur": "gray", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1847, + "metadata_dict": { + "clothes": "striped tee", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1848, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "eyes": "3d", + "fur": "brown", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1849, + "metadata_dict": { + "fur": "cream", + "mouth": "dumbfounded", + "background": "yellow", + "eyes": "crazy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1850, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bandolier", + "fur": "cream", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1851, + "metadata_dict": { + "mouth": "discomfort", + "background": "aquamarine", + "fur": "black", + "hat": "beanie", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1852, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "blue", + "hat": "short mohawk", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1853, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "clothes": "rainbow suspenders", + "hat": "bowler", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1854, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bored", + "mouth": "tongue out", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1855, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "fur": "golden brown", + "hat": "army hat", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1856, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "hat": "bowler", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1857, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "cowboy shirt", + "eyes": "bloodshot", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1858, + "metadata_dict": { + "eyes": "hypnotized", + "earring": "gold hoop", + "hat": "prussian helmet", + "mouth": "jovial", + "clothes": "lab coat", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1859, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "hypnotized", + "hat": "fez", + "background": "orange", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1860, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "trippy captain's hat", + "fur": "cream", + "mouth": "dumbfounded", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1861, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "eyes": "blue beams", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1862, + "metadata_dict": { + "eyes": "coins", + "mouth": "dumbfounded", + "earring": "gold stud", + "background": "gray", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1863, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "clothes": "black t", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1864, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme oh", + "background": "gray", + "eyes": "3d", + "clothes": "smoking jacket", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1865, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven cigar", + "eyes": "sleepy", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1866, + "metadata_dict": { + "fur": "brown", + "background": "blue", + "eyes": "bored", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1867, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "hat": "horns", + "eyes": "coins", + "clothes": "sailor shirt", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1868, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "horns", + "background": "orange", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1869, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1870, + "metadata_dict": { + "mouth": "phoneme wah", + "hat": "horns", + "fur": "brown", + "eyes": "bloodshot", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1871, + "metadata_dict": { + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1872, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "yellow", + "eyes": "3d", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "tanktop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1873, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin multicolored", + "eyes": "bored", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1874, + "metadata_dict": { + "clothes": "tweed suit", + "fur": "red", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1875, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "spinner hat", + "background": "orange", + "eyes": "bored", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1876, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "hat": "faux hawk", + "background": "orange", + "clothes": "toga", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1877, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "horns", + "mouth": "dumbfounded", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1878, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "holographic", + "mouth": "phoneme oh", + "earring": "gold stud", + "hat": "girl's hair short", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1879, + "metadata_dict": { + "eyes": "heart", + "mouth": "dumbfounded", + "clothes": "work vest", + "hat": "army hat", + "background": "gray", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1880, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "phoneme ooo", + "clothes": "work vest", + "fur": "dark brown", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1881, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "red", + "clothes": "lab coat", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1882, + "metadata_dict": { + "fur": "trippy", + "earring": "gold hoop", + "eyes": "bored", + "clothes": "toga", + "mouth": "phoneme wah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1883, + "metadata_dict": { + "clothes": "striped tee", + "background": "aquamarine", + "eyes": "3d", + "fur": "dark brown", + "mouth": "small grin", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1884, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "trippy", + "background": "aquamarine", + "eyes": "sleepy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1885, + "metadata_dict": { + "eyes": "zombie", + "mouth": "dumbfounded", + "fur": "black", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1886, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "red", + "background": "blue", + "eyes": "bloodshot", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1887, + "metadata_dict": { + "eyes": "closed", + "background": "yellow", + "clothes": "stunt jacket", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1888, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1889, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "coins", + "fur": "red", + "background": "aquamarine", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1890, + "metadata_dict": { + "eyes": "holographic", + "clothes": "lumberjack shirt", + "hat": "horns", + "fur": "pink", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1891, + "metadata_dict": { + "hat": "irish boho", + "background": "aquamarine", + "eyes": "robot", + "fur": "pink", + "clothes": "toga", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1892, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "bandolier", + "fur": "tan", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1893, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "hat": "sushi chef headband", + "clothes": "rainbow suspenders", + "mouth": "bored pipe", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1894, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1895, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "fur": "black", + "background": "orange", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1896, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "trippy captain's hat", + "mouth": "bored unshaven", + "fur": "black", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1897, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "phoneme vuh", + "background": "orange", + "fur": "dark brown", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1898, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "hat": "s&m hat", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1899, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "hat": "short mohawk", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1900, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "bloodshot", + "mouth": "small grin", + "clothes": "sleeveless logo t", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1901, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "hawaiian", + "background": "orange", + "earring": "silver hoop", + "eyes": "sleepy", + "hat": "commie hat", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1902, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "cream", + "eyes": "blindfold", + "clothes": "sailor shirt", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1903, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "hypnotized", + "clothes": "black t", + "background": "blue", + "hat": "cowboy hat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1904, + "metadata_dict": { + "mouth": "grin", + "hat": "prussian helmet", + "fur": "black", + "clothes": "bayc t black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1905, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "dark brown", + "earring": "silver hoop", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1906, + "metadata_dict": { + "hat": "seaman's hat", + "background": "orange", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1907, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "hat": "beanie", + "fur": "cheetah", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1908, + "metadata_dict": { + "hat": "irish boho", + "clothes": "sleeveless t", + "background": "gray", + "fur": "golden brown", + "earring": "gold hoop", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1909, + "metadata_dict": { + "fur": "cream", + "hat": "sushi chef headband", + "background": "gray", + "eyes": "robot", + "clothes": "admirals coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1910, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "black t", + "fur": "brown", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1911, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "robot", + "clothes": "tweed suit", + "earring": "silver stud", + "hat": "bunny ears", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1912, + "metadata_dict": { + "fur": "robot", + "earring": "silver stud", + "clothes": "bone necklace", + "mouth": "bored", + "background": "army green", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1913, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "black suit", + "mouth": "bored pipe", + "fur": "white", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1914, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "pink", + "hat": "bayc flipped brim", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1915, + "metadata_dict": { + "hat": "girl's hair pink", + "clothes": "guayabera", + "fur": "dark brown", + "mouth": "bored unshaven cigar", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1916, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "gray", + "background": "blue", + "hat": "short mohawk", + "earring": "silver hoop", + "clothes": "tanktop", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1917, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "prison jumpsuit", + "hat": "girl's hair short", + "fur": "death bot", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1918, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "background": "yellow", + "hat": "bowler", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1919, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored bubblegum", + "eyes": "sleepy", + "hat": "safari", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1920, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "fur": "black", + "eyes": "cyborg", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1921, + "metadata_dict": { + "hat": "sea captain's hat", + "background": "blue", + "fur": "pink", + "clothes": "biker vest", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1922, + "metadata_dict": { + "fur": "cream", + "clothes": "leather jacket", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1923, + "metadata_dict": { + "hat": "party hat 1", + "mouth": "grin diamond grill", + "fur": "brown", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1924, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1925, + "metadata_dict": { + "fur": "golden brown", + "earring": "diamond stud", + "mouth": "phoneme vuh", + "clothes": "guayabera", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1926, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "hat": "seaman's hat", + "mouth": "jovial", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1927, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "bayc t red", + "hat": "bandana blue", + "mouth": "rage", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1928, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1929, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "mouth": "bored cigarette", + "eyes": "hypnotized" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1930, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "blue dress", + "earring": "gold hoop", + "background": "blue", + "fur": "black", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1931, + "metadata_dict": { + "mouth": "grin multicolored", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "clothes": "toga", + "background": "gray", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1932, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "dumbfounded", + "background": "yellow", + "eyes": "sleepy", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1933, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "dumbfounded", + "fur": "dark brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1934, + "metadata_dict": { + "mouth": "bored unshaven kazoo", + "fur": "dark brown", + "background": "gray", + "hat": "bowler", + "eyes": "sleepy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1935, + "metadata_dict": { + "mouth": "bored bubblegum", + "clothes": "biker vest", + "fur": "brown", + "background": "yellow", + "hat": "bunny ears", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1936, + "metadata_dict": { + "fur": "gray", + "earring": "silver stud", + "mouth": "jovial", + "clothes": "leather jacket", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1937, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "eyes": "zombie", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1938, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "hat": "seaman's hat", + "fur": "black", + "earring": "silver hoop", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1939, + "metadata_dict": { + "fur": "cream", + "clothes": "black holes t", + "hat": "girl's hair short", + "background": "gray", + "mouth": "phoneme wah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1940, + "metadata_dict": { + "fur": "tan", + "background": "aquamarine", + "eyes": "sleepy", + "mouth": "bored", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1941, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "gold hoop", + "clothes": "tweed suit", + "background": "orange", + "hat": "army hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1942, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "fur": "red", + "background": "blue", + "clothes": "tanktop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1943, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "fur": "brown", + "hat": "bowler", + "clothes": "stunt jacket", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1944, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "mouth": "dumbfounded", + "eyes": "robot", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1945, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "earring": "gold hoop", + "fur": "red", + "clothes": "guayabera", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1946, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "hat": "commie hat", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1947, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "background": "blue", + "hat": "beanie", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1948, + "metadata_dict": { + "hat": "s&m hat", + "fur": "gray", + "clothes": "tweed suit", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1949, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "gold stud", + "background": "orange", + "fur": "brown", + "mouth": "bored", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1950, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1951, + "metadata_dict": { + "mouth": "bored kazoo", + "background": "aquamarine", + "hat": "cowboy hat", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1952, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "brown", + "clothes": "tweed suit", + "earring": "silver stud", + "background": "gray", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1953, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "dark brown", + "clothes": "guayabera", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1954, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "earring": "gold hoop", + "eyes": "bloodshot", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1955, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "striped tee", + "earring": "silver stud", + "eyes": "bloodshot", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1956, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "clothes": "leather jacket", + "eyes": "3d", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1957, + "metadata_dict": { + "clothes": "black t", + "mouth": "bored unshaven pipe", + "background": "blue", + "eyes": "bored", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1958, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "coins", + "mouth": "tongue out", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1959, + "metadata_dict": { + "hat": "irish boho", + "background": "orange", + "mouth": "tongue out", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1960, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "hat": "baby's bonnet", + "eyes": "coins", + "mouth": "dumbfounded", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1961, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "zombie", + "clothes": "work vest", + "fur": "black", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1962, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "fur": "white", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1963, + "metadata_dict": { + "fur": "tan", + "mouth": "bored", + "eyes": "coins", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1964, + "metadata_dict": { + "hat": "bandana blue", + "background": "gray", + "fur": "golden brown", + "mouth": "phoneme vuh", + "eyes": "bored", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1965, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "pink", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1966, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "blue", + "eyes": "3d", + "mouth": "bored", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1967, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cheetah", + "hat": "army hat", + "background": "gray", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1968, + "metadata_dict": { + "fur": "dmt", + "mouth": "dumbfounded", + "hat": "girl's hair short", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1969, + "metadata_dict": { + "mouth": "grin multicolored", + "earring": "gold hoop", + "fur": "dark brown", + "clothes": "lab coat", + "hat": "beanie", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1970, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "sushi chef headband", + "mouth": "grin", + "clothes": "toga", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1971, + "metadata_dict": { + "fur": "cream", + "eyes": "blindfold", + "mouth": "grin", + "background": "aquamarine", + "hat": "army hat", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1972, + "metadata_dict": { + "mouth": "grin", + "clothes": "sailor shirt", + "fur": "dark brown", + "hat": "faux hawk", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1973, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold stud", + "eyes": "bored", + "background": "purple", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1974, + "metadata_dict": { + "background": "gray", + "fur": "red", + "clothes": "bayc t black", + "earring": "silver hoop", + "mouth": "tongue out", + "eyes": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1975, + "metadata_dict": { + "clothes": "black t", + "fur": "red", + "eyes": "bored", + "hat": "safari", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1976, + "metadata_dict": { + "eyes": "sleepy", + "fur": "dark brown", + "clothes": "tuxedo tee", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1977, + "metadata_dict": { + "eyes": "closed", + "clothes": "bayc t red", + "mouth": "grin", + "background": "orange", + "fur": "pink", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1978, + "metadata_dict": { + "fur": "dmt", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1979, + "metadata_dict": { + "eyes": "closed", + "hat": "stuntman helmet", + "fur": "black", + "mouth": "bored", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1980, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "tweed suit", + "background": "orange", + "fur": "dark brown", + "hat": "girl's hair short", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1981, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "earring": "silver stud", + "eyes": "bored", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1982, + "metadata_dict": { + "clothes": "space suit", + "hat": "baby's bonnet", + "background": "orange", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1983, + "metadata_dict": { + "mouth": "bored party horn", + "earring": "silver stud", + "background": "blue", + "fur": "black", + "clothes": "leather jacket", + "eyes": "sleepy", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1984, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "mouth": "bored pipe", + "fur": "pink", + "earring": "gold stud", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1985, + "metadata_dict": { + "hat": "sea captain's hat", + "fur": "red", + "eyes": "3d", + "background": "orange", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1986, + "metadata_dict": { + "eyes": "heart", + "hat": "seaman's hat", + "background": "blue", + "fur": "cheetah", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1987, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "bayc t red", + "mouth": "grin", + "hat": "baby's bonnet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1988, + "metadata_dict": { + "fur": "tan", + "clothes": "work vest", + "eyes": "bored", + "hat": "army hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1989, + "metadata_dict": { + "mouth": "grin multicolored", + "background": "orange", + "fur": "dark brown", + "hat": "vietnam era helmet", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1990, + "metadata_dict": { + "fur": "tan", + "clothes": "striped tee", + "earring": "gold hoop", + "background": "blue", + "eyes": "bored", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1991, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "silver stud", + "fur": "red", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "yellow", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1992, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "jovial", + "fur": "black", + "background": "purple", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1993, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "eyes": "bloodshot", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1994, + "metadata_dict": { + "fur": "gray", + "clothes": "cowboy shirt", + "background": "yellow", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1995, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "robot", + "fur": "black", + "clothes": "leather jacket", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1996, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "hat": "horns", + "clothes": "leather jacket", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1997, + "metadata_dict": { + "fur": "brown", + "clothes": "sailor shirt", + "mouth": "small grin", + "background": "gray", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1998, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "clothes": "black t", + "earring": "silver hoop", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1999, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "jovial", + "clothes": "leather jacket", + "fur": "red", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2000, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "hat": "sea captain's hat", + "background": "orange", + "clothes": "hip hop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2001, + "metadata_dict": { + "eyes": "x eyes", + "hat": "irish boho", + "earring": "silver stud", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "tongue out", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2002, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven pipe", + "eyes": "bored", + "clothes": "lab coat", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2003, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "clothes": "sailor shirt", + "background": "aquamarine", + "mouth": "bored unshaven kazoo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2004, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "space suit", + "mouth": "grin", + "earring": "diamond stud", + "hat": "party hat 1", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2005, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "robot", + "background": "orange", + "hat": "bayc flipped brim", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2006, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "leather punk jacket", + "mouth": "grin multicolored", + "eyes": "coins", + "earring": "gold hoop", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2007, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "sushi chef headband", + "background": "aquamarine", + "eyes": "bored", + "mouth": "phoneme wah", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2008, + "metadata_dict": { + "mouth": "grin", + "clothes": "bayc t black", + "eyes": "bored", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2009, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "background": "aquamarine", + "hat": "bayc flipped brim", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2010, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "fez", + "mouth": "dumbfounded", + "background": "blue", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2011, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "guayabera", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2012, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "hypnotized", + "hat": "beanie", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2013, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "orange", + "hat": "short mohawk", + "fur": "dark brown", + "eyes": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2014, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "background": "blue", + "hat": "bunny ears", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2015, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored unshaven bubblegum", + "fur": "brown", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2016, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "diamond stud", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "hat": "army hat", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2017, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "jovial", + "background": "blue", + "fur": "dark brown", + "hat": "vietnam era helmet", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2018, + "metadata_dict": { + "mouth": "discomfort", + "fur": "red", + "background": "blue", + "eyes": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2019, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "earring": "diamond stud", + "fur": "dark brown", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2020, + "metadata_dict": { + "fur": "tan", + "hat": "horns", + "earring": "gold stud", + "clothes": "bayc t black", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2021, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "eyes": "coins", + "clothes": "sailor shirt", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2022, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "clothes": "leather jacket", + "earring": "silver hoop", + "mouth": "bored", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2023, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "background": "orange", + "eyes": "bored", + "clothes": "admirals coat", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2024, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin diamond grill", + "background": "yellow", + "fur": "pink", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2025, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "brown", + "background": "aquamarine", + "hat": "fisherman's hat", + "clothes": "admirals coat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2026, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "eyes": "bloodshot", + "hat": "short mohawk", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2027, + "metadata_dict": { + "eyes": "x eyes", + "hat": "sushi chef headband", + "mouth": "grin", + "fur": "black", + "clothes": "admirals coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2028, + "metadata_dict": { + "eyes": "heart", + "clothes": "black t", + "hat": "spinner hat", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2029, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "cheetah", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2030, + "metadata_dict": { + "background": "orange", + "eyes": "sleepy", + "mouth": "bored", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2031, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "wool turtleneck", + "mouth": "bored bubblegum", + "fur": "pink", + "earring": "silver hoop", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2032, + "metadata_dict": { + "hat": "fez", + "background": "blue", + "fur": "black", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2033, + "metadata_dict": { + "mouth": "grin", + "hat": "baby's bonnet", + "clothes": "black t", + "eyes": "3d", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2034, + "metadata_dict": { + "eyes": "zombie", + "mouth": "dumbfounded", + "fur": "red", + "hat": "bayc hat red", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2035, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "earring": "gold hoop", + "mouth": "phoneme vuh", + "background": "purple", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2036, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "girl's hair pink", + "earring": "silver stud", + "eyes": "bored", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2037, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black holes t", + "hat": "seaman's hat", + "mouth": "jovial", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2038, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "earring": "silver stud", + "eyes": "bored", + "hat": "faux hawk", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2039, + "metadata_dict": { + "eyes": "heart", + "hat": "bandana blue", + "mouth": "bored unshaven cigarette", + "fur": "pink", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2040, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "biker vest", + "hat": "cowboy hat", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2041, + "metadata_dict": { + "fur": "gray", + "mouth": "dumbfounded", + "eyes": "3d", + "hat": "short mohawk", + "clothes": "pimp coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2042, + "metadata_dict": { + "background": "new punk blue", + "hat": "baby's bonnet", + "earring": "silver stud", + "mouth": "bored pipe", + "eyes": "bloodshot", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2043, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "golden brown", + "mouth": "jovial", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "toga", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2044, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "hat": "bowler", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2045, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "hat": "irish boho", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2046, + "metadata_dict": { + "background": "blue", + "hat": "cowboy hat", + "eyes": "sleepy", + "mouth": "bored cigarette", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2047, + "metadata_dict": { + "hat": "horns", + "clothes": "blue dress", + "mouth": "jovial", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2048, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cream", + "earring": "silver stud", + "mouth": "dumbfounded", + "eyes": "bloodshot", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2049, + "metadata_dict": { + "mouth": "jovial", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "silver hoop", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2050, + "metadata_dict": { + "earring": "diamond stud", + "mouth": "bored bubblegum", + "clothes": "biker vest", + "background": "yellow", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2051, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "heart", + "clothes": "sailor shirt", + "hat": "short mohawk", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2052, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "robot", + "background": "orange", + "fur": "dark brown", + "hat": "fisherman's hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2053, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "diamond stud", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2054, + "metadata_dict": { + "clothes": "black t", + "earring": "gold stud", + "eyes": "3d", + "fur": "dark brown", + "hat": "bayc hat red", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2055, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "biker vest", + "fur": "dark brown", + "hat": "girl's hair short", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2056, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "orange", + "hat": "army hat", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2057, + "metadata_dict": { + "hat": "horns", + "mouth": "small grin", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2058, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "fur": "black", + "earring": "gold stud", + "background": "orange", + "clothes": "bone necklace", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2059, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "scumbag", + "clothes": "black t", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2060, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "gray", + "hat": "bayc hat red", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2061, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "wide eyed", + "hat": "party hat 1", + "fur": "black", + "background": "orange", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2062, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "clothes": "bayc t black", + "eyes": "blue beams", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2063, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver hoop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2064, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "eyes": "robot", + "fur": "black", + "background": "blue", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2065, + "metadata_dict": { + "mouth": "jovial", + "eyes": "3d", + "fur": "brown", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2066, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "eyes": "sleepy", + "hat": "cowboy hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2067, + "metadata_dict": { + "eyes": "closed", + "hat": "party hat 1", + "mouth": "dumbfounded", + "fur": "pink", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2068, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "earring": "gold hoop", + "fur": "dark brown", + "mouth": "small grin", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2069, + "metadata_dict": { + "eyes": "blindfold", + "hat": "irish boho", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "bayc t black", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2070, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "s&m hat", + "clothes": "sleeveless t", + "background": "aquamarine", + "fur": "pink", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2071, + "metadata_dict": { + "background": "aquamarine", + "hat": "spinner hat", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2072, + "metadata_dict": { + "background": "blue", + "fur": "gray", + "eyes": "blindfold", + "mouth": "bored unshaven" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2073, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "pink", + "clothes": "pimp coat", + "eyes": "sleepy", + "earring": "cross", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2074, + "metadata_dict": { + "clothes": "black holes t", + "background": "gray", + "mouth": "dumbfounded", + "eyes": "3d", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2075, + "metadata_dict": { + "mouth": "grin", + "hat": "vietnam era helmet", + "fur": "black", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2076, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "background": "blue", + "eyes": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2077, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored", + "background": "army green", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2078, + "metadata_dict": { + "clothes": "black t", + "hat": "ww2 pilot helm", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2079, + "metadata_dict": { + "eyes": "zombie", + "mouth": "jovial", + "clothes": "tie dye", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2080, + "metadata_dict": { + "hat": "prussian helmet", + "fur": "black", + "background": "orange", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2081, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2082, + "metadata_dict": { + "hat": "fez", + "fur": "black", + "eyes": "bored", + "mouth": "bored pizza", + "earring": "silver hoop", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2083, + "metadata_dict": { + "fur": "golden brown", + "clothes": "tweed suit", + "hat": "fez", + "eyes": "robot", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2084, + "metadata_dict": { + "mouth": "discomfort", + "fur": "gray", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2085, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "3d", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2086, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "rainbow suspenders", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2087, + "metadata_dict": { + "background": "purple", + "eyes": "angry", + "fur": "trippy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2088, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2089, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "solid gold", + "background": "purple", + "mouth": "bored", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2090, + "metadata_dict": { + "fur": "cream", + "earring": "gold hoop", + "eyes": "bloodshot", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2091, + "metadata_dict": { + "hat": "horns", + "fur": "red", + "earring": "silver hoop", + "clothes": "toga", + "mouth": "bored cigarette", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2092, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "hat": "girl's hair short", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2093, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "lumberjack shirt", + "mouth": "jovial", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2094, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "hypnotized", + "fur": "gray", + "mouth": "phoneme vuh", + "background": "gray", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2095, + "metadata_dict": { + "fur": "cream", + "hat": "stuntman helmet", + "background": "orange", + "clothes": "tanktop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2096, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "brown", + "clothes": "bone tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2097, + "metadata_dict": { + "clothes": "lumberjack shirt", + "background": "blue", + "fur": "dark brown", + "hat": "army hat", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2098, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "bored", + "hat": "faux hawk", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2099, + "metadata_dict": { + "fur": "gray", + "background": "blue", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2100, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "clothes": "tie dye", + "earring": "gold stud", + "fur": "pink", + "mouth": "bored pizza", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2101, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "mouth": "bored cigarette", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2102, + "metadata_dict": { + "mouth": "bored bubblegum", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2103, + "metadata_dict": { + "hat": "bandana blue", + "fur": "red", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2104, + "metadata_dict": { + "eyes": "heart", + "clothes": "wool turtleneck", + "mouth": "grin multicolored", + "hat": "prussian helmet", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2105, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2106, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "black suit", + "fur": "dark brown", + "eyes": "sleepy", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2107, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "earring": "gold hoop", + "background": "aquamarine", + "clothes": "admirals coat", + "hat": "vietnam era helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2108, + "metadata_dict": { + "background": "new punk blue", + "fur": "trippy", + "hat": "horns", + "clothes": "rainbow suspenders", + "earring": "gold stud", + "eyes": "bored", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2109, + "metadata_dict": { + "background": "new punk blue", + "eyes": "cyborg", + "hat": "fez", + "clothes": "biker vest", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2110, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven bubblegum", + "background": "yellow", + "fur": "white", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2111, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "horns", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2112, + "metadata_dict": { + "hat": "irish boho", + "mouth": "rage", + "fur": "brown", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2113, + "metadata_dict": { + "fur": "brown", + "earring": "silver stud", + "clothes": "work vest", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2114, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "trippy", + "background": "blue", + "hat": "spinner hat", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2115, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "closed", + "clothes": "prison jumpsuit", + "fur": "black", + "background": "orange", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2116, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "clothes": "toga", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2117, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "party hat 2", + "clothes": "bayc t red", + "eyes": "3d", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2118, + "metadata_dict": { + "background": "purple", + "mouth": "phoneme oh", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2119, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "baby's bonnet", + "background": "aquamarine", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2120, + "metadata_dict": { + "hat": "horns", + "earring": "silver stud", + "fur": "black", + "clothes": "bayc t black", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2121, + "metadata_dict": { + "eyes": "holographic", + "fur": "cream", + "mouth": "phoneme vuh", + "background": "blue", + "clothes": "lab coat", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2122, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "dmt", + "background": "blue", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2123, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "eyes": "holographic", + "mouth": "bored unshaven cigarette", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2124, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme l", + "fur": "golden brown", + "earring": "silver stud", + "background": "aquamarine", + "hat": "bowler", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2125, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "background": "blue", + "fur": "black", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2126, + "metadata_dict": { + "clothes": "caveman pelt", + "mouth": "bored unshaven cigarette", + "fur": "pink", + "background": "gray", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2127, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "fur": "gray", + "background": "aquamarine", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2128, + "metadata_dict": { + "hat": "party hat 2", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "tweed suit", + "mouth": "bored bubblegum", + "background": "orange", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2129, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "fez", + "fur": "black", + "background": "orange", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2130, + "metadata_dict": { + "fur": "trippy", + "earring": "gold hoop", + "mouth": "bored bubblegum", + "background": "gray", + "hat": "beanie", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2131, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "jovial", + "fur": "dark brown", + "hat": "cowboy hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2132, + "metadata_dict": { + "fur": "golden brown", + "hat": "baby's bonnet", + "clothes": "bayc t black", + "background": "gray", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2133, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "bored kazoo", + "clothes": "black holes t", + "eyes": "bloodshot", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2134, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "mouth": "jovial", + "background": "yellow", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2135, + "metadata_dict": { + "hat": "baby's bonnet", + "earring": "gold hoop", + "eyes": "zombie", + "mouth": "jovial", + "background": "blue", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2136, + "metadata_dict": { + "clothes": "cowboy shirt", + "background": "blue", + "fur": "dark brown", + "hat": "commie hat", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2137, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "sailor shirt", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2138, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "hat": "s&m hat", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2139, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "earring": "diamond stud", + "eyes": "robot", + "fur": "pink", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2140, + "metadata_dict": { + "background": "gray", + "hat": "girl's hair pink", + "earring": "gold stud", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2141, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "brown", + "earring": "silver hoop", + "clothes": "pimp coat", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2142, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "earring": "silver stud", + "mouth": "jovial", + "clothes": "smoking jacket", + "fur": "pink", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2143, + "metadata_dict": { + "hat": "sea captain's hat", + "earring": "silver stud", + "fur": "red", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2144, + "metadata_dict": { + "hat": "baby's bonnet", + "clothes": "prison jumpsuit", + "earring": "gold stud", + "eyes": "bored", + "mouth": "bored", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2145, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "mouth": "small grin", + "clothes": "stunt jacket", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2146, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "clothes": "black t", + "background": "orange", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2147, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "background": "orange", + "hat": "short mohawk", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2148, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "toga", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2149, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "eyes": "hypnotized", + "hat": "girl's hair pink", + "mouth": "small grin", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2150, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "pink", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2151, + "metadata_dict": { + "fur": "tan", + "clothes": "rainbow suspenders", + "eyes": "robot", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2152, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "earring": "silver stud", + "hat": "girl's hair short", + "fur": "death bot", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2153, + "metadata_dict": { + "hat": "party hat 2", + "fur": "tan", + "clothes": "space suit", + "eyes": "bloodshot", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2154, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "short mohawk", + "earring": "silver hoop", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2155, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "earring": "gold hoop", + "mouth": "dumbfounded", + "fur": "brown", + "hat": "beanie", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2156, + "metadata_dict": { + "background": "gray", + "eyes": "heart", + "fur": "black", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2157, + "metadata_dict": { + "clothes": "blue dress", + "hat": "spinner hat", + "fur": "dark brown", + "mouth": "tongue out", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2158, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "clothes": "toga", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2159, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2160, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "rage", + "background": "purple", + "eyes": "bored", + "fur": "brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2161, + "metadata_dict": { + "mouth": "bored kazoo", + "background": "orange", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2162, + "metadata_dict": { + "mouth": "jovial", + "fur": "red", + "eyes": "bored", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2163, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "gold stud", + "fur": "black", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2164, + "metadata_dict": { + "eyes": "coins", + "fur": "cheetah", + "background": "yellow", + "clothes": "guayabera", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2165, + "metadata_dict": { + "hat": "bandana blue", + "eyes": "3d", + "mouth": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2166, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "mouth": "bored bubblegum", + "fur": "brown", + "clothes": "prom dress", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2167, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "background": "blue", + "earring": "gold stud", + "hat": "bunny ears", + "clothes": "hip hop", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2168, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored dagger", + "hat": "irish boho", + "fur": "black", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2169, + "metadata_dict": { + "eyes": "closed", + "fur": "trippy", + "mouth": "phoneme vuh", + "background": "orange", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2170, + "metadata_dict": { + "hat": "horns", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "bored", + "clothes": "toga", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2171, + "metadata_dict": { + "eyes": "zombie", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "blue", + "fur": "pink", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2172, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin", + "clothes": "sailor shirt", + "background": "yellow", + "earring": "silver stud", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2173, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven bubblegum", + "eyes": "robot", + "fur": "noise", + "earring": "silver hoop", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2174, + "metadata_dict": { + "hat": "party hat 2", + "fur": "golden brown", + "eyes": "coins", + "clothes": "toga", + "background": "aquamarine", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2175, + "metadata_dict": { + "eyes": "eyepatch", + "background": "blue", + "mouth": "bored", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2176, + "metadata_dict": { + "eyes": "coins", + "clothes": "black t", + "fur": "black", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2177, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "striped tee", + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "solid gold", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2178, + "metadata_dict": { + "fur": "zombie", + "eyes": "3d", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2179, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2180, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "black holes t", + "fur": "black", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2181, + "metadata_dict": { + "hat": "laurel wreath", + "clothes": "leather jacket", + "fur": "black", + "background": "gray", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2182, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "grin", + "hat": "prussian helmet", + "clothes": "biker vest", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2183, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "black", + "clothes": "bayc t black", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2184, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2185, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "red", + "eyes": "3d", + "hat": "cowboy hat", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2186, + "metadata_dict": { + "fur": "cream", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2187, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme vuh", + "eyes": "sleepy", + "clothes": "hip hop", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2188, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless t", + "fur": "golden brown", + "hat": "spinner hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2189, + "metadata_dict": { + "fur": "gray", + "earring": "diamond stud", + "background": "blue", + "mouth": "tongue out", + "clothes": "guayabera", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2190, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "hat": "beanie", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2191, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "fur": "gray", + "background": "blue", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2192, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "hat": "fisherman's hat", + "clothes": "bone necklace", + "background": "purple", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2193, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "sleeveless t", + "eyes": "coins", + "hat": "girl's hair short", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2194, + "metadata_dict": { + "fur": "brown", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2195, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "dark brown", + "mouth": "small grin", + "earring": "silver hoop", + "eyes": "bored", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2196, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "horns", + "fur": "golden brown", + "earring": "gold hoop", + "background": "blue", + "clothes": "smoking jacket", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2197, + "metadata_dict": { + "mouth": "tongue out", + "background": "yellow", + "clothes": "toga", + "hat": "beanie", + "eyes": "sleepy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2198, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blue beams", + "background": "yellow", + "mouth": "phoneme wah", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2199, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "clothes": "guayabera", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2200, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "mouth": "phoneme ooo", + "hat": "army hat", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2201, + "metadata_dict": { + "fur": "cream", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "eyes": "bloodshot", + "hat": "bunny ears", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2202, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "mouth": "rage", + "clothes": "cowboy shirt", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2203, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme oh", + "earring": "silver stud", + "hat": "spinner hat", + "fur": "brown", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2204, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "red", + "background": "blue", + "clothes": "smoking jacket", + "earring": "cross", + "eyes": "sleepy", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2205, + "metadata_dict": { + "hat": "girl's hair pink", + "mouth": "jovial", + "eyes": "robot", + "background": "orange", + "fur": "dark brown", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2206, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "eyes": "robot", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2207, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2208, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "lab coat", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2209, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "aquamarine", + "hat": "faux hawk", + "fur": "white", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2210, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "mouth": "jovial", + "fur": "black", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2211, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "eyes": "robot", + "mouth": "bored unshaven cigar", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2212, + "metadata_dict": { + "eyes": "heart", + "hat": "bandana blue", + "fur": "cheetah", + "clothes": "guayabera", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2213, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "bored", + "fur": "cheetah", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2214, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "eyes": "bored", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2215, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "gray", + "earring": "gold stud", + "background": "yellow", + "mouth": "phoneme wah", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2216, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "lumberjack shirt", + "fur": "black", + "background": "orange", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2217, + "metadata_dict": { + "clothes": "bandolier", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2218, + "metadata_dict": { + "clothes": "cowboy shirt", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2219, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "background": "aquamarine", + "fur": "dark brown", + "hat": "fisherman's hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2220, + "metadata_dict": { + "fur": "black", + "background": "purple", + "eyes": "bloodshot", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2221, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "s&m hat", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2222, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "clothes": "leather jacket", + "earring": "gold stud", + "fur": "white", + "mouth": "bored cigar", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2223, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "zombie", + "hat": "fez", + "background": "aquamarine", + "clothes": "lab coat", + "earring": "cross", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2224, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "gray", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2225, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "clothes": "work vest", + "eyes": "bored", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2226, + "metadata_dict": { + "eyes": "x eyes", + "background": "aquamarine", + "clothes": "smoking jacket", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2227, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "gold hoop", + "fur": "noise", + "eyes": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2228, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "clothes": "sleeveless t", + "earring": "gold hoop", + "background": "aquamarine", + "hat": "girl's hair short", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2229, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "coins", + "hat": "fisherman's hat", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2230, + "metadata_dict": { + "clothes": "bandolier", + "hat": "sushi chef headband", + "mouth": "rage", + "background": "aquamarine", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2231, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin multicolored", + "hat": "short mohawk", + "clothes": "lab coat", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2232, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "bored party horn", + "clothes": "leather jacket", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2233, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "background": "aquamarine", + "hat": "short mohawk", + "earring": "silver hoop", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2234, + "metadata_dict": { + "background": "gray", + "fur": "black", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2235, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "caveman pelt", + "fur": "golden brown", + "eyes": "coins", + "earring": "gold stud", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2236, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "clothes": "tweed suit", + "fur": "red", + "mouth": "small grin", + "eyes": "sleepy", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2237, + "metadata_dict": { + "eyes": "sleepy", + "fur": "dark brown", + "background": "army green", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2238, + "metadata_dict": { + "fur": "golden brown", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2239, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "hat": "short mohawk", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2240, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "noise", + "clothes": "bayc t black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2241, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "clothes": "tie dye", + "eyes": "bloodshot", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2242, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2243, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2244, + "metadata_dict": { + "mouth": "bored unshaven cigar", + "clothes": "tanktop", + "eyes": "sleepy", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2245, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "bored", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2246, + "metadata_dict": { + "fur": "red", + "background": "aquamarine", + "mouth": "small grin", + "clothes": "pimp coat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2247, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "background": "blue", + "hat": "fisherman's hat", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2248, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2249, + "metadata_dict": { + "mouth": "bored unshaven cigar", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "faux hawk", + "fur": "brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2250, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "hat": "short mohawk", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2251, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2252, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "eyes": "zombie", + "hat": "bayc flipped brim", + "clothes": "tanktop", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2253, + "metadata_dict": { + "eyes": "scumbag", + "hat": "irish boho", + "fur": "gray", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2254, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "seaman's hat", + "background": "orange", + "fur": "dark brown", + "clothes": "tuxedo tee", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2255, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "tan", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2256, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2257, + "metadata_dict": { + "background": "gray", + "hat": "seaman's hat", + "fur": "red", + "mouth": "bored unshaven cigarette", + "eyes": "angry", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2258, + "metadata_dict": { + "eyes": "closed", + "hat": "horns", + "background": "blue", + "earring": "gold stud", + "fur": "dark brown", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2259, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored cigarette", + "background": "orange", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2260, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "s&m hat", + "mouth": "grin", + "background": "blue", + "fur": "black", + "clothes": "biker vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2261, + "metadata_dict": { + "clothes": "blue dress", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2262, + "metadata_dict": { + "fur": "gray", + "clothes": "prison jumpsuit", + "mouth": "bored bubblegum", + "eyes": "bored", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2263, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "leather jacket", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2264, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2265, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "horns", + "mouth": "grin", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2266, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "fur": "gray", + "clothes": "tweed suit", + "background": "blue", + "hat": "ww2 pilot helm" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2267, + "metadata_dict": { + "eyes": "x eyes", + "hat": "horns", + "clothes": "rainbow suspenders", + "mouth": "bored party horn", + "earring": "silver stud", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2268, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "hypnotized", + "earring": "silver stud", + "fur": "black", + "background": "gray", + "hat": "halo", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2269, + "metadata_dict": { + "mouth": "discomfort", + "fur": "golden brown", + "hat": "fez", + "clothes": "leather jacket", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2270, + "metadata_dict": { + "fur": "red", + "background": "orange", + "mouth": "small grin", + "earring": "silver hoop", + "clothes": "bone necklace", + "hat": "police motorcycle helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2271, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "trippy", + "eyes": "sleepy", + "earring": "silver hoop", + "hat": "bunny ears", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2272, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2273, + "metadata_dict": { + "eyes": "closed", + "clothes": "space suit", + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2274, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "mouth": "phoneme vuh", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2275, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "dumbfounded", + "fur": "black", + "background": "orange", + "hat": "girl's hair short", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2276, + "metadata_dict": { + "background": "yellow", + "fur": "black", + "eyes": "3d", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2277, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "clothes": "smoking jacket", + "background": "purple", + "hat": "commie hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2278, + "metadata_dict": { + "eyes": "bloodshot", + "fur": "brown", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2279, + "metadata_dict": { + "clothes": "bandolier", + "fur": "gray", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2280, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "earring": "gold hoop", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bloodshot", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2281, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "fur": "pink", + "background": "orange", + "earring": "silver hoop", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2282, + "metadata_dict": { + "mouth": "rage", + "fur": "black", + "eyes": "3d", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2283, + "metadata_dict": { + "clothes": "blue dress", + "eyes": "zombie", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "ww2 pilot helm", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2284, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "fur": "cream", + "background": "gray", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2285, + "metadata_dict": { + "background": "gray", + "clothes": "cowboy shirt", + "hat": "short mohawk", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2286, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "clothes": "bayc t black", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2287, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "hat": "stuntman helmet", + "mouth": "jovial", + "background": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2288, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "blue", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2289, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "grin", + "eyes": "zombie", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2290, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "prussian helmet", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2291, + "metadata_dict": { + "fur": "dmt", + "hat": "fez", + "background": "orange", + "clothes": "bayc t black", + "mouth": "bored", + "eyes": "bored", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2292, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "fur": "pink", + "mouth": "small grin", + "hat": "bayc hat red", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2293, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "hypnotized", + "mouth": "grin diamond grill", + "fur": "black", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2294, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "hat": "s&m hat", + "mouth": "dumbfounded", + "fur": "pink", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2295, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "eyes": "holographic", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2296, + "metadata_dict": { + "clothes": "kings robe", + "background": "gray", + "earring": "gold hoop", + "eyes": "coins", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2297, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2298, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "pimp coat", + "mouth": "small grin", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2299, + "metadata_dict": { + "background": "orange", + "clothes": "biker vest", + "earring": "silver hoop", + "fur": "cheetah", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2300, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "robot", + "background": "orange", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2301, + "metadata_dict": { + "fur": "dark brown", + "hat": "bunny ears", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2302, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin", + "eyes": "3d", + "fur": "pink", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2303, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "eyes": "coins", + "mouth": "rage", + "fur": "dark brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2304, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2305, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "orange", + "hat": "cowboy hat", + "fur": "brown", + "clothes": "stunt jacket", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2306, + "metadata_dict": { + "clothes": "black suit", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2307, + "metadata_dict": { + "clothes": "black holes t", + "hat": "baby's bonnet", + "background": "gray", + "fur": "white", + "mouth": "bored cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2308, + "metadata_dict": { + "earring": "diamond stud", + "hat": "fez", + "fur": "dark brown", + "clothes": "bayc t black", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2309, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored cigar", + "hat": "halo", + "background": "orange", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2310, + "metadata_dict": { + "mouth": "bored dagger", + "clothes": "toga", + "eyes": "sleepy", + "fur": "dark brown", + "hat": "girl's hair short", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2311, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "prussian helmet", + "background": "aquamarine", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2312, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "hat": "cowboy hat", + "clothes": "admirals coat", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2313, + "metadata_dict": { + "clothes": "black holes t", + "hat": "stuntman helmet", + "background": "blue", + "mouth": "bored", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2314, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "fur": "golden brown", + "background": "orange", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2315, + "metadata_dict": { + "hat": "bowler", + "fur": "pink", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2316, + "metadata_dict": { + "fur": "gray", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "clothes": "biker vest", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2317, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "eyes": "closed", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2318, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "blue dress", + "eyes": "3d", + "fur": "pink", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2319, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "space suit", + "eyes": "hypnotized", + "mouth": "bored unshaven bubblegum", + "fur": "pink", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2320, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "hat": "beanie", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2321, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "girl's hair short", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2322, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "prussian helmet", + "background": "aquamarine", + "eyes": "bored", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2323, + "metadata_dict": { + "clothes": "bandolier", + "hat": "irish boho", + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2324, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "horns", + "fur": "white", + "eyes": "crazy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2325, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "eyes": "3d", + "fur": "dark brown", + "background": "orange", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2326, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "brown", + "earring": "cross", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2327, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "horns", + "clothes": "black t", + "fur": "black", + "mouth": "small grin", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2328, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "clothes": "prison jumpsuit", + "fur": "red", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2329, + "metadata_dict": { + "hat": "halo", + "fur": "golden brown", + "background": "blue", + "eyes": "bloodshot", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2330, + "metadata_dict": { + "mouth": "grin", + "fur": "red", + "background": "blue", + "eyes": "bored", + "clothes": "bone tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2331, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "tweed suit", + "fur": "black", + "background": "orange", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2332, + "metadata_dict": { + "mouth": "bored cigarette", + "fur": "gray", + "background": "orange", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2333, + "metadata_dict": { + "mouth": "grin gold grill", + "earring": "diamond stud", + "background": "blue", + "hat": "cowboy hat", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2334, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "pink", + "eyes": "bored", + "background": "yellow", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2335, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "bayc t red", + "mouth": "grin", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2336, + "metadata_dict": { + "hat": "prussian helmet", + "eyes": "3d", + "fur": "dark brown", + "clothes": "tuxedo tee", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2337, + "metadata_dict": { + "fur": "golden brown", + "clothes": "bone necklace", + "hat": "vietnam era helmet", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2338, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "gray", + "earring": "gold hoop", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2339, + "metadata_dict": { + "fur": "pink", + "hat": "bayc flipped brim", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2340, + "metadata_dict": { + "eyes": "zombie", + "fur": "gray", + "background": "aquamarine", + "mouth": "jovial", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2341, + "metadata_dict": { + "clothes": "striped tee", + "fur": "gray", + "eyes": "robot", + "background": "blue", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2342, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "eyes": "wide eyed", + "hat": "vietnam era helmet", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2343, + "metadata_dict": { + "fur": "cream", + "clothes": "vietnam jacket", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2344, + "metadata_dict": { + "background": "aquamarine", + "fur": "brown", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2345, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "hat": "commie hat", + "background": "gray", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2346, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "sleeveless t", + "background": "gray", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2347, + "metadata_dict": { + "fur": "golden brown", + "eyes": "bored", + "hat": "ww2 pilot helm", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2348, + "metadata_dict": { + "fur": "tan", + "hat": "girl's hair pink", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2349, + "metadata_dict": { + "fur": "tan", + "hat": "irish boho", + "eyes": "zombie", + "background": "aquamarine", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2350, + "metadata_dict": { + "eyes": "scumbag", + "earring": "diamond stud", + "background": "blue", + "clothes": "tie dye", + "fur": "pink", + "hat": "faux hawk", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2351, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "mouth": "grin", + "earring": "gold hoop", + "fur": "black", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2352, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "work vest", + "background": "yellow", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2353, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "background": "blue", + "eyes": "robot", + "fur": "pink", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2354, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "fur": "brown", + "hat": "prussian helmet", + "earring": "silver stud", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2355, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "gray", + "background": "orange", + "clothes": "bayc t black", + "eyes": "bored", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2356, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "blue", + "fur": "pink", + "earring": "silver hoop", + "hat": "commie hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2357, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "sleeveless t", + "fur": "golden brown", + "mouth": "bored unshaven pipe", + "hat": "ww2 pilot helm", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2358, + "metadata_dict": { + "fur": "tan", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "background": "gray", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2359, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "beanie", + "fur": "black", + "eyes": "3d", + "earring": "silver hoop", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2360, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "eyes": "angry", + "clothes": "rainbow suspenders", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2361, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "sushi chef headband", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "dark brown", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2362, + "metadata_dict": { + "clothes": "sleeveless logo t", + "mouth": "bored bubblegum", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "eyes": "crazy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2363, + "metadata_dict": { + "eyes": "closed", + "fur": "trippy", + "mouth": "phoneme vuh", + "background": "orange", + "clothes": "tuxedo tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2364, + "metadata_dict": { + "eyes": "coins", + "background": "yellow", + "clothes": "cowboy shirt", + "fur": "dark brown", + "hat": "vietnam era helmet", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2365, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "spinner hat", + "background": "orange", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2366, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "tanktop", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2367, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "golden brown", + "clothes": "bayc t black", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2368, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "clothes": "striped tee", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2369, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2370, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "clothes": "rainbow suspenders", + "mouth": "jovial", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2371, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "clothes": "work vest", + "eyes": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2372, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "grin", + "fur": "dmt", + "hat": "faux hawk", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2373, + "metadata_dict": { + "eyes": "heart", + "clothes": "black t", + "hat": "party hat 1", + "fur": "red", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2374, + "metadata_dict": { + "eyes": "bloodshot", + "fur": "brown", + "clothes": "guayabera", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2375, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "hat": "spinner hat", + "fur": "pink", + "eyes": "bored", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2376, + "metadata_dict": { + "fur": "trippy", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "hat": "halo", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2377, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc flipped brim", + "mouth": "tongue out", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2378, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "gray", + "hat": "bayc flipped brim", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2379, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven cigarette", + "fur": "brown", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2380, + "metadata_dict": { + "hat": "halo", + "mouth": "phoneme vuh", + "fur": "dark brown", + "eyes": "sleepy", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2381, + "metadata_dict": { + "clothes": "black t", + "mouth": "bored unshaven pipe", + "eyes": "robot", + "background": "orange", + "fur": "pink", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2382, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "orange", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "sleepy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2383, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "robot", + "clothes": "sailor shirt", + "earring": "silver hoop", + "mouth": "bored", + "hat": "police motorcycle helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2384, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "hat": "sushi chef headband", + "eyes": "zombie", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2385, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "prom dress", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2386, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "purple", + "hat": "police motorcycle helmet", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2387, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "red", + "background": "orange", + "hat": "beanie", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2388, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "sea captain's hat", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2389, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "eyes": "bored", + "background": "gray", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2390, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2391, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "hat": "sushi chef headband", + "fur": "brown", + "clothes": "sleeveless logo t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2392, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "blindfold", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2393, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "toga", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2394, + "metadata_dict": { + "earring": "gold hoop", + "background": "orange", + "mouth": "small grin", + "eyes": "bored", + "hat": "bayc flipped brim", + "fur": "cheetah", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2395, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "gold hoop", + "background": "aquamarine", + "mouth": "bored", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2396, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "halo", + "background": "blue", + "eyes": "bloodshot", + "fur": "white", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2397, + "metadata_dict": { + "eyes": "scumbag", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "blue", + "hat": "army hat", + "clothes": "tanktop", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2398, + "metadata_dict": { + "fur": "cream", + "hat": "horns", + "mouth": "grin multicolored", + "clothes": "work vest", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2399, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "aquamarine", + "earring": "silver stud", + "fur": "black", + "eyes": "bored", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2400, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "clothes": "tweed suit", + "mouth": "bored pipe", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2401, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "earring": "silver hoop", + "clothes": "admirals coat", + "hat": "bowler", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2402, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "eyes": "closed", + "clothes": "striped tee", + "earring": "gold hoop", + "hat": "spinner hat", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2403, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "trippy", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2404, + "metadata_dict": { + "clothes": "tie dye", + "eyes": "bored", + "earring": "silver hoop", + "hat": "vietnam era helmet", + "mouth": "bored", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2405, + "metadata_dict": { + "eyes": "closed", + "fur": "dmt", + "clothes": "prison jumpsuit", + "background": "gray", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2406, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "eyes": "zombie", + "hat": "cowboy hat", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2407, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "fur": "dark brown", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2408, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2409, + "metadata_dict": { + "background": "orange", + "clothes": "smoking jacket", + "mouth": "tongue out", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2410, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "fur": "red", + "clothes": "cowboy shirt", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2411, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "hat": "party hat 1", + "eyes": "robot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2412, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "work vest", + "fur": "black", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2413, + "metadata_dict": { + "eyes": "closed", + "hat": "cowboy hat", + "clothes": "toga", + "background": "purple", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2414, + "metadata_dict": { + "clothes": "striped tee", + "hat": "baby's bonnet", + "fur": "gray", + "eyes": "zombie", + "mouth": "tongue out", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2415, + "metadata_dict": { + "clothes": "bandolier", + "fur": "gray", + "background": "aquamarine", + "hat": "short mohawk", + "mouth": "tongue out", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2416, + "metadata_dict": { + "mouth": "bored kazoo", + "hat": "horns", + "eyes": "hypnotized", + "clothes": "smoking jacket", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2417, + "metadata_dict": { + "eyes": "robot", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2418, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "eyes": "heart", + "earring": "gold hoop", + "clothes": "toga", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2419, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "clothes": "rainbow suspenders", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2420, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "aquamarine", + "eyes": "bored", + "mouth": "tongue out", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2421, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "clothes": "tanktop", + "hat": "bayc hat red", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2422, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "eyes": "bored", + "hat": "beanie", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2423, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "zombie", + "fur": "dark brown", + "hat": "cowboy hat", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2424, + "metadata_dict": { + "eyes": "3d", + "background": "orange", + "clothes": "tuxedo tee", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2425, + "metadata_dict": { + "eyes": "sleepy", + "fur": "black", + "mouth": "bored cigarette", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2426, + "metadata_dict": { + "fur": "red", + "background": "orange", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2427, + "metadata_dict": { + "background": "purple", + "clothes": "stunt jacket", + "hat": "ww2 pilot helm", + "eyes": "sleepy", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2428, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "clothes": "black t", + "mouth": "small grin", + "fur": "brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2429, + "metadata_dict": { + "eyes": "robot", + "background": "purple", + "mouth": "bored unshaven", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2430, + "metadata_dict": { + "clothes": "tie dye", + "eyes": "bloodshot", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2431, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "blindfold", + "mouth": "grin", + "background": "blue", + "earring": "silver hoop", + "fur": "white", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2432, + "metadata_dict": { + "clothes": "bandolier", + "fur": "trippy", + "mouth": "bored unshaven party horn", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2433, + "metadata_dict": { + "clothes": "striped tee", + "background": "gray", + "mouth": "grin", + "earring": "diamond stud", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2434, + "metadata_dict": { + "clothes": "blue dress", + "mouth": "dumbfounded", + "fur": "pink", + "eyes": "bloodshot", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2435, + "metadata_dict": { + "mouth": "grin", + "earring": "gold stud", + "clothes": "lab coat", + "fur": "brown", + "hat": "beanie", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2436, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "gray", + "mouth": "phoneme vuh", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2437, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme oh", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2438, + "metadata_dict": { + "hat": "horns", + "mouth": "phoneme ooo", + "fur": "black", + "earring": "silver hoop", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2439, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "dmt", + "hat": "spinner hat", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2440, + "metadata_dict": { + "mouth": "bored unshaven cigar", + "fur": "brown", + "eyes": "angry", + "hat": "police motorcycle helmet", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2441, + "metadata_dict": { + "background": "new punk blue", + "eyes": "sleepy", + "fur": "dark brown", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2442, + "metadata_dict": { + "hat": "laurel wreath", + "clothes": "sailor shirt", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2443, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2444, + "metadata_dict": { + "background": "gray", + "fur": "brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2445, + "metadata_dict": { + "mouth": "bored cigarette", + "eyes": "coins", + "clothes": "prison jumpsuit", + "background": "orange", + "hat": "bunny ears", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2446, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "hat": "ww2 pilot helm", + "fur": "brown", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2447, + "metadata_dict": { + "eyes": "holographic", + "earring": "silver hoop", + "clothes": "lab coat", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2448, + "metadata_dict": { + "hat": "horns", + "background": "gray", + "clothes": "sailor shirt", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2449, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "safari", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2450, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "coins", + "background": "orange", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2451, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "s&m hat", + "background": "blue", + "fur": "cheetah", + "clothes": "guayabera", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2452, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "3d", + "clothes": "tuxedo tee", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2453, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "clothes": "sleeveless t", + "mouth": "bored party horn", + "earring": "silver stud", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2454, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "pink", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2455, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "blue", + "hat": "cowboy hat", + "clothes": "toga", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2456, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "bored unshaven bubblegum", + "background": "aquamarine", + "fur": "red", + "eyes": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2457, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "coins", + "clothes": "work vest", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2458, + "metadata_dict": { + "mouth": "grin", + "fur": "red", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2459, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "black t", + "hat": "beanie", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2460, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "earring": "silver stud", + "fur": "red", + "clothes": "tanktop", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2461, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "army hat", + "eyes": "sleepy", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2462, + "metadata_dict": { + "hat": "fisherman's hat", + "clothes": "bayc t black", + "eyes": "bored", + "mouth": "tongue out", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2463, + "metadata_dict": { + "clothes": "black holes t", + "hat": "baby's bonnet", + "mouth": "bored pipe", + "eyes": "bored", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2464, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "clothes": "black t", + "mouth": "rage", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2465, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "eyes": "bored", + "hat": "faux hawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2466, + "metadata_dict": { + "hat": "beanie", + "fur": "noise", + "clothes": "bayc t black", + "eyes": "bored", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2467, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "hat": "bowler", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2468, + "metadata_dict": { + "clothes": "striped tee", + "hat": "irish boho", + "eyes": "zombie", + "background": "aquamarine", + "mouth": "jovial", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2469, + "metadata_dict": { + "mouth": "grin", + "clothes": "blue dress", + "background": "orange", + "fur": "dark brown", + "hat": "girl's hair short", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2470, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin gold grill", + "fur": "tan", + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "earring": "silver stud", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2471, + "metadata_dict": { + "clothes": "striped tee", + "earring": "diamond stud", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2472, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "tie dye", + "earring": "cross", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2473, + "metadata_dict": { + "clothes": "bayc t red", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah", + "hat": "beanie", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2474, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "bone tee", + "earring": "diamond stud", + "fur": "gray", + "background": "gray", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2475, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "fez", + "fur": "black", + "mouth": "bored", + "clothes": "caveman pelt", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2476, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "blindfold", + "fur": "black", + "clothes": "tie dye", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2477, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "tan", + "mouth": "jovial", + "earring": "silver hoop", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2478, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "rage", + "hat": "fez", + "fur": "brown", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2479, + "metadata_dict": { + "mouth": "bored party horn", + "hat": "short mohawk", + "fur": "brown", + "clothes": "prom dress", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2480, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "yellow", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2481, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "mouth": "phoneme ooo", + "clothes": "sailor shirt", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2482, + "metadata_dict": { + "hat": "party hat 2", + "fur": "cream", + "eyes": "coins", + "earring": "gold hoop", + "background": "aquamarine", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2483, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "fur": "black", + "eyes": "3d", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2484, + "metadata_dict": { + "fur": "gray", + "clothes": "tuxedo tee", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2485, + "metadata_dict": { + "hat": "laurel wreath", + "background": "blue", + "earring": "gold stud", + "fur": "black", + "clothes": "toga", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2486, + "metadata_dict": { + "mouth": "grin", + "eyes": "robot", + "background": "blue", + "fur": "brown", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2487, + "metadata_dict": { + "hat": "stuntman helmet", + "clothes": "smoking jacket", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2488, + "metadata_dict": { + "fur": "trippy", + "eyes": "blue beams", + "background": "gray", + "mouth": "phoneme wah", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2489, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored bubblegum", + "background": "purple", + "fur": "solid gold", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2490, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "robot", + "earring": "gold stud", + "fur": "dark brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2491, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "fur": "red", + "earring": "gold stud", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2492, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2493, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "clothes": "biker vest", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2494, + "metadata_dict": { + "clothes": "striped tee", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "hat": "vietnam era helmet", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2495, + "metadata_dict": { + "background": "new punk blue", + "mouth": "jovial", + "fur": "black", + "hat": "ww2 pilot helm", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2496, + "metadata_dict": { + "fur": "cream", + "eyes": "zombie", + "earring": "silver stud", + "clothes": "leather jacket", + "background": "orange", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2497, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "dmt", + "earring": "gold hoop", + "background": "blue", + "clothes": "leather jacket", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2498, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "background": "orange", + "fur": "noise", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2499, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored party horn", + "earring": "silver stud", + "fur": "red", + "eyes": "bored", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2500, + "metadata_dict": { + "fur": "gray", + "eyes": "robot", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2501, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "mouth": "rage", + "fur": "dark brown", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2502, + "metadata_dict": { + "fur": "tan", + "clothes": "blue dress", + "background": "blue", + "hat": "fisherman's hat", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2503, + "metadata_dict": { + "hat": "irish boho", + "clothes": "prison jumpsuit", + "fur": "pink", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2504, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2505, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2506, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "earring": "gold stud", + "hat": "army hat", + "fur": "brown", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2507, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2508, + "metadata_dict": { + "eyes": "blindfold", + "fur": "gray", + "hat": "girl's hair pink", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2509, + "metadata_dict": { + "mouth": "bored cigarette", + "fur": "black", + "background": "orange", + "hat": "short mohawk", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2510, + "metadata_dict": { + "clothes": "black t", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2511, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "fur": "dark brown", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2512, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "mouth": "phoneme vuh", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2513, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "girl's hair pink", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2514, + "metadata_dict": { + "fur": "dmt", + "background": "aquamarine", + "clothes": "work vest", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2515, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "clothes": "leather jacket", + "background": "orange", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2516, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme oh", + "eyes": "blindfold", + "background": "aquamarine", + "clothes": "tie dye", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2517, + "metadata_dict": { + "mouth": "grin", + "hat": "baby's bonnet", + "background": "blue", + "fur": "dark brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2518, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "background": "yellow", + "fur": "brown", + "hat": "beanie", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2519, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "heart", + "fur": "dark brown", + "hat": "cowboy hat", + "earring": "silver hoop", + "clothes": "caveman pelt", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2520, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "bowler", + "fur": "black", + "earring": "silver hoop", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2521, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "aquamarine", + "hat": "bowler", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2522, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "hat": "stuntman helmet", + "fur": "brown", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2523, + "metadata_dict": { + "clothes": "striped tee", + "hat": "prussian helmet", + "fur": "noise", + "mouth": "small grin", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2524, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "guayabera", + "background": "purple", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2525, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "blue", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "army hat", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2526, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "rainbow suspenders", + "fur": "red", + "eyes": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2527, + "metadata_dict": { + "hat": "prussian helmet", + "background": "aquamarine", + "fur": "death bot", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2528, + "metadata_dict": { + "fur": "red", + "clothes": "smoking jacket", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored", + "hat": "police motorcycle helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2529, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "aquamarine", + "fur": "pink", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2530, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2531, + "metadata_dict": { + "hat": "horns", + "fur": "pink", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2532, + "metadata_dict": { + "earring": "gold stud", + "background": "purple", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2533, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "earring": "gold hoop", + "background": "gray", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2534, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "pink", + "background": "orange", + "hat": "ww2 pilot helm", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2535, + "metadata_dict": { + "fur": "red", + "mouth": "jovial", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "toga", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2536, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "fur": "black", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2537, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "cream", + "earring": "diamond stud", + "hat": "beanie", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2538, + "metadata_dict": { + "mouth": "jovial", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "hat": "safari", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2539, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "fur": "cream", + "earring": "diamond stud", + "eyes": "robot", + "background": "orange", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2540, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "hat": "seaman's hat", + "earring": "diamond stud", + "mouth": "bored pipe", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2541, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "earring": "silver hoop", + "background": "army green", + "clothes": "service", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2542, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "cream", + "hat": "party hat 1", + "mouth": "bored", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2543, + "metadata_dict": { + "clothes": "bandolier", + "background": "aquamarine", + "earring": "gold stud", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2544, + "metadata_dict": { + "hat": "horns", + "fur": "dark brown", + "mouth": "bored unshaven cigar", + "background": "yellow", + "eyes": "crazy", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2545, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "fur": "dmt", + "background": "yellow", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2546, + "metadata_dict": { + "eyes": "robot", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2547, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "zombie", + "background": "aquamarine", + "earring": "gold stud", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2548, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "fur": "dark brown", + "background": "gray", + "hat": "bayc hat red", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2549, + "metadata_dict": { + "hat": "s&m hat", + "fur": "red", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2550, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "fur": "cream", + "hat": "seaman's hat", + "earring": "gold hoop", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2551, + "metadata_dict": { + "fur": "golden brown", + "hat": "girl's hair pink", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2552, + "metadata_dict": { + "eyes": "zombie", + "clothes": "biker vest", + "background": "orange", + "mouth": "small grin", + "hat": "faux hawk", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2553, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "eyes": "coins", + "clothes": "black t", + "hat": "king's crown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2554, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "fur": "gray", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "fisherman's hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2555, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "3d", + "fur": "dark brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2556, + "metadata_dict": { + "background": "new punk blue", + "fur": "cheetah", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "hat": "police motorcycle helmet", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2557, + "metadata_dict": { + "clothes": "space suit", + "mouth": "jovial", + "fur": "black", + "background": "gray", + "hat": "bowler", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2558, + "metadata_dict": { + "eyes": "zombie", + "background": "orange", + "hat": "bayc hat red", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2559, + "metadata_dict": { + "background": "new punk blue", + "hat": "short mohawk", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2560, + "metadata_dict": { + "fur": "golden brown", + "background": "aquamarine", + "eyes": "bored", + "hat": "safari", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2561, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "fez", + "background": "blue", + "fur": "cheetah", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2562, + "metadata_dict": { + "eyes": "holographic", + "hat": "horns", + "fur": "red", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2563, + "metadata_dict": { + "fur": "cream", + "hat": "sea captain's hat", + "mouth": "bored pipe", + "background": "purple", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2564, + "metadata_dict": { + "background": "blue", + "eyes": "sleepy", + "fur": "black", + "mouth": "bored unshaven cigarette", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2565, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "mouth": "small grin", + "clothes": "lab coat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2566, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "clothes": "bayc t red", + "eyes": "zombie", + "fur": "black", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2567, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "robot", + "hat": "vietnam era helmet", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2568, + "metadata_dict": { + "background": "gray", + "fur": "gray", + "clothes": "prison jumpsuit", + "mouth": "bored unshaven cigarette", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2569, + "metadata_dict": { + "eyes": "zombie", + "clothes": "prison jumpsuit", + "mouth": "jovial", + "fur": "black", + "earring": "silver hoop", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2570, + "metadata_dict": { + "hat": "horns", + "earring": "gold hoop", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2571, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "striped tee", + "fur": "cream", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2572, + "metadata_dict": { + "fur": "red", + "mouth": "small grin", + "eyes": "bored", + "clothes": "tuxedo tee", + "hat": "vietnam era helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2573, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black holes t", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2574, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "fur": "dmt", + "background": "blue", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2575, + "metadata_dict": { + "mouth": "discomfort", + "hat": "fisherman's hat", + "fur": "brown", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2576, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "earring": "gold hoop", + "clothes": "smoking jacket", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2577, + "metadata_dict": { + "fur": "pink", + "hat": "cowboy hat", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2578, + "metadata_dict": { + "background": "new punk blue", + "clothes": "smoking jacket", + "mouth": "bored", + "fur": "brown", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2579, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "background": "orange", + "hat": "bowler", + "clothes": "guayabera", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2580, + "metadata_dict": { + "mouth": "grin", + "clothes": "prison jumpsuit", + "hat": "fez", + "background": "blue", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2581, + "metadata_dict": { + "eyes": "holographic", + "fur": "red", + "hat": "bayc flipped brim", + "mouth": "tongue out", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2582, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "hat": "s&m hat", + "eyes": "coins", + "background": "aquamarine", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2583, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "clothes": "biker vest", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2584, + "metadata_dict": { + "eyes": "sleepy", + "background": "blue", + "mouth": "tongue out", + "clothes": "prom dress", + "hat": "bunny ears", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2585, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin", + "fur": "gray", + "clothes": "bone necklace", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2586, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "clothes": "sailor shirt", + "eyes": "crazy", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2587, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "clothes": "striped tee", + "background": "blue", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2588, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "hat": "s&m hat", + "eyes": "zombie", + "earring": "gold hoop", + "background": "aquamarine", + "clothes": "smoking jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2589, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "clothes": "space suit", + "mouth": "grin", + "earring": "silver stud", + "fur": "black", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2590, + "metadata_dict": { + "fur": "golden brown", + "hat": "girl's hair pink", + "clothes": "tie dye", + "mouth": "tongue out", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2591, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "mouth": "bored", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2592, + "metadata_dict": { + "earring": "silver stud", + "mouth": "phoneme vuh", + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "hat": "beanie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2593, + "metadata_dict": { + "fur": "gray", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bored", + "earring": "silver hoop", + "hat": "cowboy hat", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2594, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "background": "gray", + "hat": "beanie", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2595, + "metadata_dict": { + "fur": "golden brown", + "mouth": "grin", + "eyes": "3d", + "earring": "silver hoop", + "hat": "faux hawk", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2596, + "metadata_dict": { + "clothes": "space suit", + "hat": "short mohawk", + "eyes": "bored", + "background": "gray", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2597, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "zombie", + "hat": "ww2 pilot helm", + "fur": "white", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2598, + "metadata_dict": { + "hat": "horns", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2599, + "metadata_dict": { + "eyes": "heart", + "clothes": "wool turtleneck", + "background": "aquamarine", + "fur": "pink", + "earring": "cross", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2600, + "metadata_dict": { + "fur": "tan", + "clothes": "wool turtleneck", + "eyes": "3d", + "mouth": "bored", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2601, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "striped tee", + "eyes": "blindfold", + "earring": "silver stud", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2602, + "metadata_dict": { + "mouth": "grin", + "hat": "spinner hat", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "eyes": "sleepy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2603, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "work vest", + "fur": "red", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2604, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "brown", + "background": "army green", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2605, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "background": "aquamarine", + "eyes": "3d", + "hat": "bowler", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2606, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "black", + "background": "orange", + "hat": "beanie", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2607, + "metadata_dict": { + "clothes": "sailor shirt", + "background": "blue", + "fur": "noise", + "hat": "fisherman's hat", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2608, + "metadata_dict": { + "fur": "black", + "hat": "faux hawk", + "background": "purple", + "mouth": "bored", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2609, + "metadata_dict": { + "earring": "diamond stud", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2610, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "bandana blue", + "earring": "silver stud", + "clothes": "work vest", + "fur": "dark brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2611, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "horns", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "smoking jacket", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2612, + "metadata_dict": { + "hat": "beanie", + "eyes": "3d", + "clothes": "toga", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2613, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black holes t", + "eyes": "robot", + "fur": "black", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2614, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "tan", + "mouth": "phoneme ooo", + "background": "blue", + "hat": "faux hawk", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2615, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "hat": "spinner hat", + "fur": "pink", + "clothes": "smoking jacket", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2616, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "lumberjack shirt", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2617, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "hat": "party hat 1", + "eyes": "3d", + "fur": "brown", + "background": "yellow", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2618, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2619, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin gold grill", + "clothes": "striped tee", + "eyes": "zombie", + "fur": "dark brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2620, + "metadata_dict": { + "eyes": "coins", + "mouth": "phoneme vuh", + "fur": "cheetah", + "background": "purple", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2621, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme vuh", + "eyes": "robot", + "fur": "dark brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2622, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "3d", + "background": "yellow", + "mouth": "phoneme wah", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2623, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored cigarette", + "eyes": "crazy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2624, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "leather punk jacket", + "fur": "tan", + "mouth": "jovial", + "earring": "silver hoop", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2625, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "prison jumpsuit", + "hat": "short mohawk", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2626, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin", + "hat": "fez", + "background": "aquamarine", + "eyes": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2627, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "blue dress", + "fur": "golden brown", + "hat": "cowboy hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2628, + "metadata_dict": { + "mouth": "bored bubblegum", + "fur": "dark brown", + "hat": "fisherman's hat", + "clothes": "tanktop", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2629, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "irish boho", + "background": "blue", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2630, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "fur": "red", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2631, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "black", + "eyes": "bloodshot", + "clothes": "pimp coat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2632, + "metadata_dict": { + "background": "gray", + "eyes": "closed", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2633, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored unshaven pipe", + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2634, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "grin", + "eyes": "bloodshot", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2635, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "clothes": "sailor shirt", + "eyes": "3d", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2636, + "metadata_dict": { + "hat": "fez", + "earring": "silver hoop", + "fur": "brown", + "clothes": "bone necklace", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2637, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin", + "background": "blue", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2638, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "baby's bonnet", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2639, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "blindfold", + "background": "orange", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2640, + "metadata_dict": { + "hat": "fez", + "background": "blue", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "death bot", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2641, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "laurel wreath", + "earring": "silver stud", + "clothes": "leather jacket", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2642, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "fez", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2643, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "irish boho", + "clothes": "stunt jacket", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2644, + "metadata_dict": { + "fur": "pink", + "background": "orange", + "eyes": "bored", + "clothes": "lab coat", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2645, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "halo", + "background": "aquamarine", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2646, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "hat": "bayc flipped brim", + "fur": "solid gold", + "clothes": "toga", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2647, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "work vest", + "fur": "pink", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2648, + "metadata_dict": { + "eyes": "holographic", + "mouth": "grin", + "clothes": "tweed suit", + "fur": "dark brown", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2649, + "metadata_dict": { + "mouth": "phoneme vuh", + "hat": "spinner hat", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2650, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "pink", + "eyes": "bored", + "background": "yellow", + "mouth": "phoneme wah", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2651, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored unshaven", + "fur": "trippy", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2652, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "hat": "stuntman helmet", + "eyes": "sleepy", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2653, + "metadata_dict": { + "background": "aquamarine", + "hat": "spinner hat", + "fur": "pink", + "mouth": "small grin", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2654, + "metadata_dict": { + "fur": "gray", + "eyes": "3d", + "background": "purple", + "mouth": "phoneme wah", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2655, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "dumbfounded", + "fur": "black", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2656, + "metadata_dict": { + "eyes": "closed", + "clothes": "bone tee", + "mouth": "grin", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2657, + "metadata_dict": { + "clothes": "prison jumpsuit", + "earring": "silver stud", + "background": "aquamarine", + "fur": "pink", + "hat": "bunny ears", + "mouth": "bored cigarette", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2658, + "metadata_dict": { + "fur": "tan", + "eyes": "3d", + "mouth": "small grin", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2659, + "metadata_dict": { + "hat": "irish boho", + "background": "blue", + "fur": "black", + "clothes": "tanktop", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2660, + "metadata_dict": { + "clothes": "bayc t black", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2661, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "background": "blue", + "earring": "gold stud", + "mouth": "tongue out", + "clothes": "pimp coat", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2662, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "hat": "s&m hat", + "eyes": "crazy", + "background": "army green", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2663, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "background": "blue", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2664, + "metadata_dict": { + "mouth": "grin multicolored", + "earring": "silver stud", + "fur": "black", + "hat": "bayc hat red", + "clothes": "navy striped tee", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2665, + "metadata_dict": { + "eyes": "heart", + "background": "aquamarine", + "fur": "black", + "hat": "bayc flipped brim", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2666, + "metadata_dict": { + "mouth": "grin", + "clothes": "sailor shirt", + "fur": "black", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2667, + "metadata_dict": { + "clothes": "tweed suit", + "background": "aquamarine", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "tongue out", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2668, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "red", + "clothes": "biker vest", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2669, + "metadata_dict": { + "hat": "girl's hair pink", + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "pink", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2670, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "pink", + "background": "orange", + "clothes": "smoking jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2671, + "metadata_dict": { + "fur": "gray", + "background": "yellow", + "eyes": "bored", + "earring": "silver hoop", + "hat": "beanie", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2672, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "eyes": "robot", + "background": "orange", + "mouth": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2673, + "metadata_dict": { + "hat": "irish boho", + "fur": "golden brown", + "background": "orange", + "clothes": "bayc t black", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2674, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "background": "orange", + "fur": "pink", + "hat": "bunny ears", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2675, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "silver stud", + "fur": "pink", + "hat": "cowboy hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2676, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "clothes": "prison jumpsuit", + "eyes": "robot", + "hat": "spinner hat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2677, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "golden brown", + "eyes": "bored", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2678, + "metadata_dict": { + "clothes": "blue dress", + "mouth": "phoneme vuh", + "background": "blue", + "hat": "short mohawk", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2679, + "metadata_dict": { + "fur": "cream", + "hat": "sushi chef headband", + "eyes": "bloodshot", + "clothes": "bone necklace", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2680, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "background": "orange", + "eyes": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2681, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "hat": "fez", + "mouth": "dumbfounded", + "fur": "black", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2682, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "red", + "hat": "beanie", + "mouth": "bored cigarette", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2683, + "metadata_dict": { + "fur": "brown", + "clothes": "black t", + "earring": "silver stud", + "hat": "beanie", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2684, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "mouth": "dumbfounded", + "eyes": "3d", + "clothes": "bayc t black", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2685, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "blindfold", + "background": "orange", + "hat": "ww2 pilot helm", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2686, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "sleepy", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2687, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "tongue out", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2688, + "metadata_dict": { + "mouth": "grin multicolored", + "eyes": "zombie", + "background": "blue", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2689, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "background": "blue", + "fur": "dark brown", + "hat": "commie hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2690, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2691, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "fur": "gray", + "earring": "silver stud", + "clothes": "sleeveless logo t", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2692, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "bayc t red", + "fur": "cream", + "mouth": "dumbfounded", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2693, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2694, + "metadata_dict": { + "hat": "laurel wreath", + "background": "purple", + "fur": "dark brown", + "mouth": "small grin", + "earring": "silver hoop", + "clothes": "prom dress", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2695, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "sushi chef headband", + "earring": "silver hoop", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2696, + "metadata_dict": { + "mouth": "jovial", + "fur": "dark brown", + "clothes": "bone necklace", + "eyes": "angry", + "hat": "police motorcycle helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2697, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "spinner hat", + "clothes": "tuxedo tee", + "background": "army green", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2698, + "metadata_dict": { + "fur": "cream", + "clothes": "sailor shirt", + "mouth": "rage", + "background": "aquamarine", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2699, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "horns", + "mouth": "grin", + "earring": "gold stud", + "fur": "pink", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2700, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "leather jacket", + "background": "purple", + "fur": "dark brown", + "eyes": "bored", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2701, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "mouth": "bored pipe", + "hat": "spinner hat", + "eyes": "bloodshot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2702, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "mouth": "bored unshaven", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2703, + "metadata_dict": { + "mouth": "grin", + "eyes": "robot", + "fur": "dark brown", + "clothes": "toga", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2704, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver stud", + "clothes": "tuxedo tee", + "fur": "cheetah", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2705, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "clothes": "tanktop", + "hat": "bowler", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2706, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "baby's bonnet", + "fur": "black", + "clothes": "guayabera", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2707, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "background": "aquamarine", + "eyes": "robot", + "mouth": "jovial", + "earring": "gold stud", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2708, + "metadata_dict": { + "clothes": "bone necklace", + "background": "purple", + "mouth": "bored", + "eyes": "crazy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2709, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "hat": "fez", + "background": "orange", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2710, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "background": "orange", + "mouth": "small grin", + "clothes": "bone necklace", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2711, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "horns", + "mouth": "bored pipe", + "fur": "cheetah", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2712, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "clothes": "sleeveless t", + "hat": "baby's bonnet", + "eyes": "robot", + "background": "orange", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2713, + "metadata_dict": { + "clothes": "sailor shirt", + "eyes": "wide eyed", + "mouth": "bored unshaven pipe", + "fur": "noise", + "hat": "police motorcycle helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2714, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "robot", + "background": "orange", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2715, + "metadata_dict": { + "fur": "golden brown", + "hat": "fez", + "clothes": "tie dye", + "background": "purple", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2716, + "metadata_dict": { + "clothes": "bayc t red", + "earring": "gold hoop", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2717, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "jovial", + "fur": "death bot", + "eyes": "crazy", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2718, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "fur": "dark brown", + "background": "yellow", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2719, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "clothes": "sailor shirt", + "background": "blue", + "fur": "cheetah", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2720, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "prom dress", + "eyes": "3d", + "hat": "ww2 pilot helm", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2721, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "brown", + "mouth": "rage", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2722, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "gray", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2723, + "metadata_dict": { + "eyes": "hypnotized", + "background": "gray", + "hat": "vietnam era helmet", + "fur": "death bot", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2724, + "metadata_dict": { + "mouth": "phoneme vuh", + "clothes": "tie dye", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2725, + "metadata_dict": { + "fur": "tan", + "mouth": "bored kazoo", + "background": "blue", + "eyes": "bloodshot", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2726, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "earring": "gold hoop", + "clothes": "biker vest", + "eyes": "bored", + "hat": "vietnam era helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2727, + "metadata_dict": { + "clothes": "vietnam jacket", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2728, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "diamond stud", + "background": "blue", + "fur": "cheetah", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2729, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "earring": "silver stud", + "background": "blue", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2730, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "eyes": "3d", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2731, + "metadata_dict": { + "eyes": "heart", + "hat": "bandana blue", + "fur": "dmt", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "earring": "cross", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2732, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "sushi chef headband", + "fur": "red", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2733, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "eyes": "scumbag", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2734, + "metadata_dict": { + "fur": "tan", + "hat": "s&m hat", + "clothes": "sailor shirt", + "mouth": "bored pipe", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2735, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "background": "yellow", + "fur": "brown", + "hat": "vietnam era helmet", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2736, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "clothes": "smoking jacket", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2737, + "metadata_dict": { + "clothes": "striped tee", + "hat": "s&m hat", + "fur": "pink", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2738, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "yellow", + "fur": "red", + "eyes": "bloodshot", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2739, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "new punk blue", + "fur": "gray", + "eyes": "bored", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2740, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "bored unshaven cigar", + "fur": "black", + "earring": "silver hoop", + "hat": "girl's hair short", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2741, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "black t", + "mouth": "phoneme vuh", + "fur": "black", + "background": "gray", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2742, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "scumbag", + "fur": "trippy", + "background": "blue", + "hat": "short mohawk", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2743, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "eyes": "bored", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2744, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "clothes": "tanktop", + "background": "yellow", + "hat": "bunny ears", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2745, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "eyes": "bored", + "background": "yellow", + "clothes": "stunt jacket", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2746, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "black holes t", + "fur": "cheetah", + "hat": "girl's hair pink", + "background": "gray", + "earring": "cross", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2747, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "eyes": "hypnotized", + "fur": "brown", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2748, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "fur": "gray", + "hat": "short mohawk", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2749, + "metadata_dict": { + "fur": "cream", + "eyes": "bored", + "hat": "bunny ears", + "background": "yellow", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2750, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "work vest", + "eyes": "sleepy", + "hat": "girl's hair short", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2751, + "metadata_dict": { + "mouth": "discomfort", + "earring": "gold hoop", + "eyes": "bored", + "clothes": "guayabera", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2752, + "metadata_dict": { + "hat": "horns", + "mouth": "phoneme vuh", + "fur": "red", + "eyes": "bored", + "background": "gray", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2753, + "metadata_dict": { + "earring": "silver stud", + "eyes": "3d", + "clothes": "tuxedo tee", + "hat": "army hat", + "mouth": "tongue out", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2754, + "metadata_dict": { + "eyes": "heart", + "fur": "brown", + "clothes": "smoking jacket", + "background": "gray", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2755, + "metadata_dict": { + "eyes": "holographic", + "earring": "diamond stud", + "mouth": "dumbfounded", + "background": "orange", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2756, + "metadata_dict": { + "fur": "cream", + "hat": "horns", + "mouth": "jovial", + "background": "blue", + "earring": "gold stud", + "eyes": "bloodshot", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2757, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "mouth": "bored unshaven bubblegum", + "background": "blue", + "hat": "faux hawk", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2758, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "golden brown", + "clothes": "bayc t black", + "earring": "silver hoop", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2759, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "bandolier", + "eyes": "holographic", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2760, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "yellow", + "earring": "silver hoop", + "fur": "brown", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2761, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "leather jacket", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "army hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2762, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2763, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "hat": "fez", + "background": "orange", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2764, + "metadata_dict": { + "clothes": "space suit", + "mouth": "grin multicolored", + "fur": "golden brown", + "eyes": "3d", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2765, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "clothes": "leather jacket", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2766, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "hat": "vietnam era helmet", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2767, + "metadata_dict": { + "hat": "prussian helmet", + "fur": "dark brown", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2768, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "s&m hat", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2769, + "metadata_dict": { + "fur": "gray", + "mouth": "phoneme vuh", + "clothes": "work vest", + "eyes": "crazy", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2770, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "horns", + "background": "blue", + "fur": "dark brown", + "clothes": "tuxedo tee", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2771, + "metadata_dict": { + "eyes": "holographic", + "hat": "prussian helmet", + "background": "gray", + "clothes": "stunt jacket", + "mouth": "bored cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2772, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "striped tee", + "earring": "diamond stud", + "fur": "pink", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2773, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2774, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "hat": "short mohawk", + "mouth": "tongue out", + "fur": "brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2775, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "dark brown", + "mouth": "bored", + "hat": "halo", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2776, + "metadata_dict": { + "fur": "gray", + "mouth": "rage", + "clothes": "leather jacket", + "background": "gray", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2777, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "pink", + "eyes": "bored", + "clothes": "sleeveless logo t", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2778, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "earring": "gold hoop", + "fur": "black", + "hat": "cowboy hat", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2779, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "baby's bonnet", + "background": "orange", + "clothes": "sleeveless logo t", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2780, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "hypnotized", + "fur": "black", + "clothes": "bayc t black", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2781, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "holographic", + "hat": "girl's hair short", + "background": "gray", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2782, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "background": "blue", + "eyes": "bloodshot", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2783, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "black t", + "eyes": "3d", + "fur": "death bot", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2784, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "hat": "short mohawk", + "mouth": "small grin", + "fur": "dark brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2785, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "hat": "fez", + "clothes": "cowboy shirt", + "eyes": "robot", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2786, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "3d", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2787, + "metadata_dict": { + "fur": "golden brown", + "eyes": "zombie", + "clothes": "rainbow suspenders", + "mouth": "dumbfounded", + "background": "aquamarine", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2788, + "metadata_dict": { + "clothes": "black holes t", + "background": "orange", + "mouth": "bored pizza", + "fur": "brown", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2789, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "brown", + "mouth": "dumbfounded", + "background": "orange", + "clothes": "tanktop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2790, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "baby's bonnet", + "eyes": "coins", + "earring": "gold stud", + "background": "yellow", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2791, + "metadata_dict": { + "eyes": "holographic", + "fur": "black", + "hat": "army hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2792, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "eyes": "bored", + "mouth": "bored", + "clothes": "admirals coat", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2793, + "metadata_dict": { + "eyes": "heart", + "mouth": "rage", + "background": "yellow", + "clothes": "bone necklace", + "hat": "commie hat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2794, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "background": "aquamarine", + "clothes": "cowboy shirt", + "fur": "robot", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2795, + "metadata_dict": { + "hat": "party hat 2", + "fur": "gray", + "background": "aquamarine", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2796, + "metadata_dict": { + "fur": "red", + "mouth": "bored", + "eyes": "bored", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2797, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "hat": "commie hat", + "mouth": "bored cigarette", + "eyes": "cyborg", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2798, + "metadata_dict": { + "eyes": "closed", + "mouth": "discomfort", + "fur": "dark brown", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2799, + "metadata_dict": { + "mouth": "discomfort", + "fur": "golden brown", + "eyes": "3d", + "earring": "silver hoop", + "clothes": "toga", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2800, + "metadata_dict": { + "mouth": "bored unshaven dagger", + "background": "orange", + "clothes": "tuxedo tee", + "hat": "bayc flipped brim", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2801, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2802, + "metadata_dict": { + "eyes": "robot", + "background": "orange", + "mouth": "bored", + "fur": "white", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2803, + "metadata_dict": { + "clothes": "striped tee", + "hat": "party hat 1", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2804, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "fur": "tan", + "clothes": "black t", + "hat": "fisherman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2805, + "metadata_dict": { + "mouth": "grin", + "fur": "red", + "clothes": "tanktop", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2806, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored kazoo", + "eyes": "scumbag", + "fur": "golden brown", + "earring": "gold hoop", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2807, + "metadata_dict": { + "hat": "horns", + "mouth": "grin multicolored", + "fur": "pink", + "clothes": "bayc t black", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2808, + "metadata_dict": { + "clothes": "leather jacket", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "hat": "safari", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2809, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "clothes": "leather jacket", + "earring": "gold stud", + "eyes": "3d", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2810, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "earring": "silver stud", + "fur": "pink", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2811, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "eyes": "sleepy", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2812, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "smoking jacket", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2813, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "background": "aquamarine", + "clothes": "biker vest", + "fur": "noise", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2814, + "metadata_dict": { + "hat": "girl's hair pink", + "mouth": "rage", + "background": "blue", + "clothes": "smoking jacket", + "fur": "cheetah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2815, + "metadata_dict": { + "mouth": "rage", + "earring": "silver stud", + "fur": "pink", + "eyes": "bloodshot", + "background": "orange", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2816, + "metadata_dict": { + "hat": "bandana blue", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2817, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "girl's hair pink", + "mouth": "rage", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2818, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "mouth": "bored unshaven", + "fur": "pink", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2819, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "hat": "baby's bonnet", + "earring": "gold stud", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2820, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "prison jumpsuit", + "eyes": "sleepy", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2821, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "phoneme vuh", + "fur": "pink", + "background": "orange", + "eyes": "bloodshot", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2822, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "orange", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2823, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2824, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "horns", + "eyes": "coins", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2825, + "metadata_dict": { + "hat": "s&m hat", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2826, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "hat": "bayc hat red", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2827, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2828, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "mouth": "phoneme ooo", + "background": "aquamarine", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2829, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2830, + "metadata_dict": { + "eyes": "holographic", + "hat": "sushi chef headband", + "fur": "golden brown", + "background": "blue", + "mouth": "bored bubblegum", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2831, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "mouth": "phoneme vuh", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2832, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "bayc t red", + "hat": "baby's bonnet", + "background": "blue", + "fur": "pink", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2833, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "red", + "mouth": "bored pipe", + "background": "orange", + "eyes": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2834, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "hat": "army hat", + "earring": "silver hoop", + "fur": "brown", + "clothes": "bone necklace", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2835, + "metadata_dict": { + "earring": "diamond stud", + "clothes": "leather jacket", + "mouth": "tongue out", + "fur": "cheetah", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2836, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "background": "aquamarine", + "clothes": "leather jacket", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2837, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "irish boho", + "fur": "dmt", + "clothes": "smoking jacket", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2838, + "metadata_dict": { + "clothes": "rainbow suspenders", + "mouth": "phoneme vuh", + "background": "blue", + "eyes": "robot", + "fur": "dark brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2839, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven party horn", + "clothes": "work vest", + "background": "orange", + "eyes": "bloodshot", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2840, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "bowler", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2841, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2842, + "metadata_dict": { + "mouth": "grin", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2843, + "metadata_dict": { + "eyes": "hypnotized", + "earring": "gold hoop", + "mouth": "rage", + "background": "blue", + "fur": "brown", + "hat": "bunny ears", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2844, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "fur": "dark brown", + "eyes": "sleepy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2845, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "background": "aquamarine", + "hat": "commie hat", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2846, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "coins", + "mouth": "grin", + "background": "aquamarine", + "earring": "gold stud", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2847, + "metadata_dict": { + "fur": "gray", + "mouth": "tongue out", + "clothes": "bone necklace", + "eyes": "sleepy", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2848, + "metadata_dict": { + "hat": "s&m hat", + "earring": "gold hoop", + "background": "blue", + "fur": "noise", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2849, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "hat": "cowboy hat", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2850, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "silver stud", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "fur": "cheetah", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2851, + "metadata_dict": { + "background": "yellow", + "clothes": "biker vest", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2852, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "mouth": "bored unshaven", + "clothes": "black t", + "fur": "dark brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2853, + "metadata_dict": { + "fur": "tan", + "clothes": "prison jumpsuit", + "mouth": "bored pipe", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2854, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "phoneme oh", + "fur": "golden brown", + "clothes": "rainbow suspenders", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2855, + "metadata_dict": { + "eyes": "coins", + "clothes": "stunt jacket", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2856, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "fur": "golden brown", + "clothes": "sailor shirt", + "mouth": "bored unshaven cigarette", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2857, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "king's crown", + "fur": "black", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2858, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2859, + "metadata_dict": { + "eyes": "coins", + "background": "aquamarine", + "mouth": "small grin", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2860, + "metadata_dict": { + "hat": "irish boho", + "fur": "black", + "mouth": "bored pizza", + "background": "gray", + "clothes": "stunt jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2861, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "fur": "trippy", + "eyes": "bored", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2862, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "mouth": "rage", + "hat": "fez", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2863, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "dmt", + "hat": "party hat 1", + "clothes": "tie dye", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2864, + "metadata_dict": { + "eyes": "heart", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2865, + "metadata_dict": { + "eyes": "scumbag", + "background": "aquamarine", + "fur": "pink", + "mouth": "bored unshaven kazoo", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2866, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "bored", + "clothes": "toga", + "background": "gray", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2867, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2868, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "fur": "dmt", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2869, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "clothes": "smoking jacket", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2870, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "black", + "hat": "army hat", + "clothes": "hip hop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2871, + "metadata_dict": { + "eyes": "blindfold", + "fur": "golden brown", + "mouth": "phoneme vuh", + "earring": "silver stud", + "clothes": "smoking jacket", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2872, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "rage", + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "clothes": "smoking jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2873, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "fur": "golden brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2874, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "purple", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2875, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "eyes": "bored", + "fur": "cheetah", + "background": "yellow", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2876, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "bloodshot", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2877, + "metadata_dict": { + "fur": "tan", + "eyes": "zombie", + "mouth": "rage", + "hat": "fisherman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2878, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "cyborg", + "earring": "silver stud", + "background": "aquamarine", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2879, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "pink", + "hat": "beanie", + "background": "army green", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2880, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "gold stud", + "hat": "short mohawk", + "background": "gray", + "clothes": "bone necklace", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2881, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "hat": "beanie", + "clothes": "leather jacket", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2882, + "metadata_dict": { + "eyes": "x eyes", + "fur": "pink", + "mouth": "small grin", + "hat": "bunny ears", + "background": "purple", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2883, + "metadata_dict": { + "mouth": "bored unshaven cigar", + "background": "yellow", + "clothes": "stunt jacket", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2884, + "metadata_dict": { + "mouth": "rage", + "fur": "pink", + "eyes": "bloodshot", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2885, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "pimp coat", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2886, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "mouth": "bored pipe", + "earring": "silver hoop", + "fur": "brown", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2887, + "metadata_dict": { + "background": "new punk blue", + "hat": "trippy captain's hat", + "clothes": "prison jumpsuit", + "fur": "death bot", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2888, + "metadata_dict": { + "fur": "gray", + "background": "orange", + "hat": "girl's hair short", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2889, + "metadata_dict": { + "hat": "horns", + "eyes": "zombie", + "clothes": "black t", + "fur": "dark brown", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2890, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "seaman's hat", + "background": "blue", + "fur": "black", + "mouth": "small grin", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2891, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "jovial", + "eyes": "bored", + "background": "gray", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2892, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "blue", + "earring": "silver stud", + "background": "orange", + "hat": "short mohawk", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2893, + "metadata_dict": { + "fur": "gray", + "mouth": "dumbfounded", + "background": "yellow", + "clothes": "service", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2894, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "fur": "brown", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2895, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "blue", + "clothes": "tuxedo tee", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2896, + "metadata_dict": { + "hat": "king's crown", + "eyes": "wide eyed", + "mouth": "rage", + "background": "blue", + "fur": "pink", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2897, + "metadata_dict": { + "background": "purple", + "eyes": "closed", + "fur": "gray", + "mouth": "grin gold grill" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2898, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "clothes": "sleeveless t", + "eyes": "3d", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2899, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "hat": "army hat", + "clothes": "toga", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2900, + "metadata_dict": { + "fur": "golden brown", + "hat": "party hat 1", + "eyes": "bored", + "clothes": "lab coat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2901, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "tan", + "hat": "horns", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2902, + "metadata_dict": { + "mouth": "grin", + "clothes": "sailor shirt", + "hat": "king's crown", + "background": "orange", + "fur": "cheetah", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2903, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "grin", + "hat": "party hat 1", + "background": "yellow", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2904, + "metadata_dict": { + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "blue", + "hat": "army hat", + "clothes": "toga", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2905, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "brown", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2906, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "prussian helmet", + "background": "gray", + "eyes": "sleepy", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2907, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "clothes": "rainbow suspenders", + "background": "orange", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2908, + "metadata_dict": { + "mouth": "jovial", + "fur": "black", + "background": "purple", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2909, + "metadata_dict": { + "background": "purple", + "eyes": "sleepy", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2910, + "metadata_dict": { + "fur": "brown", + "eyes": "heart", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2911, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "eyes": "zombie", + "background": "blue", + "fur": "dark brown", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2912, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "robot", + "hat": "bayc flipped brim", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2913, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "army hat", + "background": "gray", + "eyes": "crazy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2914, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "fez", + "fur": "black", + "eyes": "3d", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2915, + "metadata_dict": { + "mouth": "jovial", + "fur": "red", + "clothes": "tuxedo tee", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2916, + "metadata_dict": { + "eyes": "heart", + "clothes": "bayc t red", + "fur": "gray", + "earring": "gold hoop", + "hat": "fisherman's hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2917, + "metadata_dict": { + "eyes": "closed", + "hat": "halo", + "clothes": "sailor shirt", + "mouth": "bored unshaven pipe", + "fur": "black", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2918, + "metadata_dict": { + "background": "blue", + "earring": "gold stud", + "fur": "noise", + "mouth": "small grin", + "hat": "beanie", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2919, + "metadata_dict": { + "fur": "tan", + "clothes": "bandolier", + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "3d", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2920, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "hat": "seaman's hat", + "earring": "diamond stud", + "background": "purple", + "fur": "white", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2921, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "golden brown", + "hat": "prussian helmet", + "mouth": "bored bubblegum" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2922, + "metadata_dict": { + "fur": "brown", + "eyes": "closed", + "background": "aquamarine", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2923, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "leather punk jacket", + "earring": "silver stud", + "hat": "beanie", + "fur": "brown", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2924, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "clothes": "tie dye", + "eyes": "bored", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2925, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tanktop", + "background": "yellow", + "hat": "commie hat", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2926, + "metadata_dict": { + "fur": "red", + "background": "aquamarine", + "eyes": "3d", + "clothes": "bayc t black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2927, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "earring": "gold hoop", + "clothes": "biker vest", + "mouth": "bored unshaven cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2928, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "clothes": "bone tee", + "eyes": "bloodshot", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2929, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "fur": "golden brown", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2930, + "metadata_dict": { + "eyes": "heart", + "hat": "sushi chef headband", + "background": "orange", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2931, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "fur": "black", + "background": "orange", + "mouth": "small grin", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2932, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "s&m hat", + "clothes": "biker vest", + "background": "gray", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2933, + "metadata_dict": { + "fur": "cream", + "eyes": "sad", + "mouth": "rage", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "commie hat", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2934, + "metadata_dict": { + "earring": "gold stud", + "hat": "short mohawk", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2935, + "metadata_dict": { + "clothes": "rainbow suspenders", + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2936, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "fur": "red", + "eyes": "3d", + "background": "orange", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2937, + "metadata_dict": { + "fur": "tan", + "hat": "stuntman helmet", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2938, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "cheetah", + "eyes": "zombie", + "mouth": "grin diamond grill", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2939, + "metadata_dict": { + "mouth": "jovial", + "background": "blue", + "eyes": "holographic", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2940, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "hat": "irish boho", + "mouth": "bored unshaven bubblegum", + "clothes": "lab coat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2941, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "bayc t red", + "hat": "stuntman helmet", + "fur": "dark brown", + "background": "purple", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2942, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "eyes": "zombie", + "fur": "noise", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2943, + "metadata_dict": { + "mouth": "grin", + "clothes": "rainbow suspenders", + "background": "blue", + "fur": "black", + "hat": "bowler", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2944, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "clothes": "tie dye", + "eyes": "sleepy", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2945, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "rage", + "fur": "death bot", + "hat": "commie hat", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2946, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "mouth": "bored unshaven bubblegum", + "background": "aquamarine", + "earring": "gold stud", + "hat": "cowboy hat", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2947, + "metadata_dict": { + "fur": "black", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2948, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "blue dress", + "hat": "vietnam era helmet", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2949, + "metadata_dict": { + "eyes": "sad", + "fur": "black", + "background": "yellow", + "mouth": "bored", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2950, + "metadata_dict": { + "background": "gray", + "mouth": "jovial", + "eyes": "bored", + "hat": "faux hawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2951, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "rage", + "earring": "silver stud", + "fur": "pink", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2952, + "metadata_dict": { + "mouth": "jovial", + "background": "orange", + "clothes": "tuxedo tee", + "fur": "death bot", + "eyes": "angry", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2953, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2954, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "fisherman's hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2955, + "metadata_dict": { + "eyes": "blindfold", + "hat": "stuntman helmet", + "earring": "silver stud", + "fur": "black", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2956, + "metadata_dict": { + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "hat": "bowler", + "background": "purple", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2957, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "hypnotized", + "clothes": "blue dress", + "mouth": "grin", + "background": "aquamarine", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2958, + "metadata_dict": { + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2959, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "tweed suit", + "earring": "silver stud", + "eyes": "bloodshot", + "background": "purple", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2960, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "eyes": "holographic", + "hat": "cowboy hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2961, + "metadata_dict": { + "fur": "tan", + "eyes": "bored", + "background": "yellow", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2962, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "eyes": "zombie", + "background": "aquamarine", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2963, + "metadata_dict": { + "fur": "robot", + "clothes": "sleeveless t", + "mouth": "small grin", + "hat": "bowler", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2964, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "fur": "cream", + "earring": "gold hoop", + "clothes": "black t", + "mouth": "rage", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2965, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "diamond stud", + "background": "aquamarine", + "mouth": "bored bubblegum", + "eyes": "3d", + "fur": "dark brown", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2966, + "metadata_dict": { + "fur": "gray", + "earring": "silver stud", + "eyes": "bored", + "clothes": "sleeveless logo t", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2967, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "bored unshaven party horn", + "eyes": "coins", + "background": "yellow", + "fur": "dark brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2968, + "metadata_dict": { + "hat": "party hat 1", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2969, + "metadata_dict": { + "mouth": "grin multicolored", + "eyes": "robot", + "fur": "brown", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2970, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "background": "blue", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2971, + "metadata_dict": { + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "background": "army green", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2972, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "dark brown", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored cigar", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2973, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "golden brown", + "earring": "gold hoop", + "background": "blue", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2974, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "clothes": "lumberjack shirt", + "fur": "pink", + "hat": "girl's hair short", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2975, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat red", + "eyes": "sleepy", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2976, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "earring": "diamond stud", + "clothes": "black t", + "fur": "red", + "background": "orange", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2977, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2978, + "metadata_dict": { + "clothes": "biker vest", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2979, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "background": "blue", + "mouth": "bored", + "fur": "white", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2980, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "earring": "silver hoop", + "hat": "army hat", + "clothes": "sleeveless logo t", + "mouth": "bored unshaven dagger", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2981, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "fur": "black", + "clothes": "bayc t black", + "hat": "girl's hair short", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2982, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "bored bubblegum", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2983, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "stuntman helmet", + "fur": "red", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2984, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "zombie", + "background": "orange", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2985, + "metadata_dict": { + "mouth": "grin", + "fur": "brown", + "background": "gray", + "clothes": "hip hop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2986, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "kings robe", + "background": "aquamarine", + "eyes": "bored", + "earring": "cross", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2987, + "metadata_dict": { + "eyes": "holographic", + "hat": "sushi chef headband", + "mouth": "grin", + "fur": "gray", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2988, + "metadata_dict": { + "eyes": "scumbag", + "hat": "prussian helmet", + "background": "blue", + "fur": "pink", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2989, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored cigarette", + "earring": "gold hoop", + "fur": "pink", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2990, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "striped tee", + "eyes": "bored", + "hat": "bunny ears", + "earring": "cross", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2991, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "hat": "bayc flipped brim", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "caveman pelt", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2992, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2993, + "metadata_dict": { + "eyes": "heart", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2994, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "irish boho", + "earring": "gold hoop", + "mouth": "dumbfounded", + "background": "blue", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2995, + "metadata_dict": { + "background": "aquamarine", + "fur": "tan", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2996, + "metadata_dict": { + "hat": "laurel wreath", + "clothes": "vietnam jacket", + "background": "aquamarine", + "fur": "cheetah", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2997, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "phoneme vuh", + "fur": "dark brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2998, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "eyes": "bored", + "hat": "army hat", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2999, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "clothes": "sailor shirt", + "hat": "stuntman helmet", + "background": "aquamarine", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3000, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "clothes": "black t", + "background": "blue", + "eyes": "3d", + "earring": "silver hoop", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3001, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "black t", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3002, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "fur": "black", + "hat": "bunny ears", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3003, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "background": "orange", + "eyes": "bloodshot", + "clothes": "sleeveless logo t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3004, + "metadata_dict": { + "eyes": "closed", + "hat": "short mohawk", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3005, + "metadata_dict": { + "eyes": "closed", + "hat": "bandana blue", + "mouth": "phoneme vuh", + "clothes": "leather jacket", + "earring": "gold stud", + "fur": "pink", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3006, + "metadata_dict": { + "hat": "horns", + "background": "blue", + "eyes": "bloodshot", + "clothes": "bayc t black", + "mouth": "bored unshaven cigar", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3007, + "metadata_dict": { + "eyes": "closed", + "clothes": "lumberjack shirt", + "hat": "irish boho", + "fur": "golden brown", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3008, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "hat": "fez", + "fur": "pink", + "clothes": "tanktop", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3009, + "metadata_dict": { + "hat": "irish boho", + "eyes": "zombie", + "earring": "diamond stud", + "mouth": "grin diamond grill", + "clothes": "leather jacket", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3010, + "metadata_dict": { + "fur": "dmt", + "eyes": "coins", + "mouth": "dumbfounded", + "background": "blue", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3011, + "metadata_dict": { + "background": "gray", + "mouth": "grin", + "clothes": "rainbow suspenders", + "eyes": "bloodshot", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3012, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "fur": "black", + "background": "purple", + "mouth": "phoneme wah", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3013, + "metadata_dict": { + "hat": "horns", + "background": "aquamarine", + "fur": "black", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3014, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bloodshot", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3015, + "metadata_dict": { + "background": "aquamarine", + "hat": "short mohawk", + "mouth": "bored", + "fur": "white", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3016, + "metadata_dict": { + "fur": "tan", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "bayc t black", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3017, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven bubblegum", + "hat": "girl's hair pink", + "clothes": "tweed suit", + "background": "blue", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3018, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "hat": "king's crown", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3019, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "fur": "golden brown", + "earring": "gold hoop", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3020, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "fur": "red", + "background": "orange", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3021, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "phoneme vuh", + "eyes": "bored", + "hat": "army hat", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3022, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin diamond grill", + "hat": "fisherman's hat", + "background": "yellow", + "clothes": "guayabera", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3023, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "gray", + "hat": "stuntman helmet", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3024, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "stuntman helmet", + "fur": "black", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3025, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "clothes": "sleeveless t", + "fur": "golden brown", + "hat": "army hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3026, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "fur": "dmt", + "mouth": "dumbfounded", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3027, + "metadata_dict": { + "fur": "cream", + "hat": "stuntman helmet", + "background": "blue", + "mouth": "small grin", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3028, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3029, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "hat": "party hat 1", + "fur": "brown", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3030, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "phoneme ooo", + "background": "aquamarine", + "clothes": "leather jacket", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3031, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "clothes": "tuxedo tee", + "hat": "army hat", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3032, + "metadata_dict": { + "fur": "tan", + "clothes": "blue dress", + "eyes": "zombie", + "hat": "fez", + "mouth": "tongue out", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3033, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "blue", + "hat": "fisherman's hat", + "fur": "cheetah", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3034, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "clothes": "leather jacket", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3035, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "fur": "black", + "hat": "bayc flipped brim", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3036, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "3d", + "hat": "short mohawk", + "earring": "silver hoop", + "clothes": "tanktop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3037, + "metadata_dict": { + "eyes": "heart", + "fur": "dark brown", + "mouth": "bored", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3038, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "dmt", + "background": "aquamarine", + "eyes": "3d", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3039, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "holographic", + "earring": "diamond stud", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3040, + "metadata_dict": { + "background": "blue", + "mouth": "small grin", + "fur": "brown", + "clothes": "guayabera", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3041, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "toga", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3042, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "grin", + "clothes": "biker vest", + "earring": "silver hoop", + "background": "purple", + "fur": "white", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3043, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "diamond stud", + "background": "blue", + "clothes": "cowboy shirt", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3044, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "earring": "gold hoop", + "hat": "fez", + "clothes": "tanktop", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3045, + "metadata_dict": { + "eyes": "zombie", + "hat": "fez", + "mouth": "dumbfounded", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3046, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "fur": "golden brown", + "eyes": "robot", + "background": "orange", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3047, + "metadata_dict": { + "clothes": "bandolier", + "fur": "black", + "earring": "gold stud", + "hat": "commie hat", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3048, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "phoneme ooo", + "clothes": "sailor shirt", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3049, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "gray", + "hat": "king's crown", + "earring": "silver stud", + "clothes": "bayc t black", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3050, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "hat": "fez", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "3d", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3051, + "metadata_dict": { + "earring": "silver hoop", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3052, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black t", + "earring": "gold stud", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3053, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "robot", + "clothes": "biker vest", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3054, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "dumbfounded", + "background": "blue", + "fur": "pink", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3055, + "metadata_dict": { + "fur": "tan", + "earring": "silver hoop", + "clothes": "toga", + "background": "gray", + "hat": "army hat", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3056, + "metadata_dict": { + "clothes": "rainbow suspenders", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3057, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored pipe", + "clothes": "leather jacket", + "eyes": "bored", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3058, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "hat": "fez", + "background": "yellow", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3059, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "fur": "dark brown", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3060, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin", + "earring": "silver stud", + "fur": "red", + "eyes": "3d", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3061, + "metadata_dict": { + "clothes": "bandolier", + "earring": "silver stud", + "fur": "pink", + "background": "purple", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3062, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "orange", + "eyes": "blue beams", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3063, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "background": "purple", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3064, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "sleeveless t", + "background": "blue", + "fur": "dark brown", + "mouth": "bored unshaven cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3065, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "gold hoop", + "fur": "black", + "mouth": "bored", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3066, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cheetah", + "eyes": "zombie", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3067, + "metadata_dict": { + "eyes": "blindfold", + "fur": "red", + "background": "blue", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3068, + "metadata_dict": { + "mouth": "jovial", + "background": "army green", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3069, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "fur": "black", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3070, + "metadata_dict": { + "clothes": "service", + "mouth": "phoneme ooo", + "eyes": "angry", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3071, + "metadata_dict": { + "eyes": "blindfold", + "earring": "silver stud", + "clothes": "work vest", + "fur": "black", + "hat": "bunny ears", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3072, + "metadata_dict": { + "clothes": "striped tee", + "background": "aquamarine", + "fur": "solid gold", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3073, + "metadata_dict": { + "eyes": "heart", + "earring": "diamond stud", + "background": "blue", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3074, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "earring": "gold hoop", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3075, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "leather punk jacket", + "fur": "tan", + "mouth": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3076, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "party hat 1", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3077, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "black", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3078, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "mouth": "jovial", + "fur": "black", + "eyes": "3d", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3079, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "work vest", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3080, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "eyes": "scumbag", + "fur": "cream", + "mouth": "phoneme ooo", + "hat": "fez" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3081, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "background": "blue", + "earring": "silver hoop", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3082, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "bored", + "hat": "faux hawk", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3083, + "metadata_dict": { + "mouth": "grin", + "fur": "pink", + "background": "purple", + "eyes": "crazy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3084, + "metadata_dict": { + "fur": "cream", + "clothes": "puffy vest", + "eyes": "coins", + "mouth": "dumbfounded", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3085, + "metadata_dict": { + "background": "new punk blue", + "fur": "brown", + "hat": "bowler", + "clothes": "stunt jacket", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3086, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "eyes": "zombie", + "hat": "bayc flipped brim", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3087, + "metadata_dict": { + "fur": "tan", + "clothes": "bayc t red", + "eyes": "sad", + "mouth": "bored", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3088, + "metadata_dict": { + "eyes": "closed", + "hat": "horns", + "clothes": "black holes t", + "mouth": "grin", + "background": "orange", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3089, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "eyes": "robot", + "hat": "cowboy hat", + "fur": "death bot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3090, + "metadata_dict": { + "eyes": "zombie", + "background": "blue", + "mouth": "bored", + "fur": "white", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3091, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "sunglasses", + "fur": "gray", + "hat": "army hat", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3092, + "metadata_dict": { + "background": "gray", + "fur": "dark brown", + "hat": "cowboy hat", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3093, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "background": "blue", + "hat": "army hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3094, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "s&m hat", + "clothes": "black holes t", + "eyes": "robot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3095, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "work vest", + "mouth": "small grin", + "fur": "brown", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3096, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3097, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "bayc hat black", + "mouth": "phoneme oh", + "fur": "black", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3098, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "hat": "prussian helmet", + "clothes": "tuxedo tee", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3099, + "metadata_dict": { + "eyes": "zombie", + "clothes": "smoking jacket", + "fur": "dark brown", + "mouth": "small grin", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3100, + "metadata_dict": { + "hat": "laurel wreath", + "clothes": "sailor shirt", + "mouth": "jovial", + "eyes": "bored", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3101, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "robot", + "background": "blue", + "fur": "dark brown", + "hat": "short mohawk", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3102, + "metadata_dict": { + "fur": "tan", + "clothes": "prison jumpsuit", + "mouth": "phoneme vuh", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3103, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3104, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "purple", + "clothes": "navy striped tee", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3105, + "metadata_dict": { + "eyes": "closed", + "clothes": "bandolier", + "hat": "laurel wreath", + "fur": "solid gold", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3106, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "earring": "gold hoop", + "clothes": "bayc t black", + "mouth": "bored", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3107, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "clothes": "cowboy shirt", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3108, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "sailor shirt", + "hat": "stuntman helmet", + "mouth": "bored unshaven kazoo", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3109, + "metadata_dict": { + "mouth": "phoneme vuh", + "earring": "silver stud", + "fur": "pink", + "eyes": "bored", + "background": "gray", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3110, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "clothes": "sleeveless logo t", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3111, + "metadata_dict": { + "earring": "diamond stud", + "mouth": "rage", + "clothes": "prison jumpsuit", + "background": "orange", + "hat": "commie hat", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3112, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3113, + "metadata_dict": { + "mouth": "grin", + "fur": "tan", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3114, + "metadata_dict": { + "clothes": "striped tee", + "fur": "black", + "background": "gray", + "hat": "bayc hat red", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3115, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "mouth": "bored unshaven cigarette", + "background": "aquamarine", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3116, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "party hat 2", + "background": "aquamarine", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3117, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "brown", + "clothes": "prom dress", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3118, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "fur": "black", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3119, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "gray", + "hat": "prussian helmet", + "clothes": "prison jumpsuit", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3120, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "jovial", + "fur": "white", + "eyes": "angry", + "clothes": "bone tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3121, + "metadata_dict": { + "hat": "horns", + "mouth": "phoneme ooo", + "eyes": "coins", + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3122, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "earring": "gold stud", + "fur": "noise", + "hat": "fisherman's hat", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3123, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "hat": "spinner hat", + "fur": "dark brown", + "mouth": "bored unshaven cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3124, + "metadata_dict": { + "mouth": "discomfort", + "background": "blue", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "stunt jacket", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3125, + "metadata_dict": { + "fur": "black", + "hat": "army hat", + "clothes": "prom dress", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3126, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "background": "orange", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3127, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "blindfold", + "fur": "noise", + "hat": "army hat", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3128, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "lumberjack shirt", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3129, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "bored", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3130, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "gray", + "earring": "silver stud", + "mouth": "jovial", + "eyes": "bloodshot", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3131, + "metadata_dict": { + "eyes": "sleepy", + "background": "orange", + "fur": "dark brown", + "mouth": "bored unshaven" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3132, + "metadata_dict": { + "background": "aquamarine", + "mouth": "grin", + "fur": "pink", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3133, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "aquamarine", + "fur": "red", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3134, + "metadata_dict": { + "clothes": "striped tee", + "earring": "silver stud", + "eyes": "bloodshot", + "background": "gray", + "hat": "vietnam era helmet", + "fur": "white", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3135, + "metadata_dict": { + "eyes": "zombie", + "mouth": "jovial", + "fur": "pink", + "background": "orange", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3136, + "metadata_dict": { + "background": "aquamarine", + "hat": "ww2 pilot helm", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3137, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "eyes": "zombie", + "hat": "girl's hair pink", + "mouth": "small grin", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3138, + "metadata_dict": { + "background": "orange", + "clothes": "bayc t black", + "fur": "brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3139, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3140, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "fur": "pink", + "eyes": "bloodshot", + "hat": "short mohawk", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3141, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "background": "aquamarine", + "hat": "short mohawk", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3142, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3143, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "eyes": "3d", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3144, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "background": "army green", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3145, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "cream", + "clothes": "leather jacket", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3146, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "bored pipe", + "background": "orange", + "hat": "bayc flipped brim", + "fur": "death bot", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3147, + "metadata_dict": { + "fur": "tan", + "clothes": "rainbow suspenders", + "hat": "girl's hair pink", + "mouth": "rage", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3148, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "eyes": "robot", + "background": "blue", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3149, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored bubblegum", + "earring": "gold stud", + "eyes": "blue beams", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3150, + "metadata_dict": { + "eyes": "holographic", + "hat": "horns", + "mouth": "phoneme ooo", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3151, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "irish boho", + "clothes": "work vest", + "fur": "black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3152, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "hat": "king's crown", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3153, + "metadata_dict": { + "earring": "diamond stud", + "background": "yellow", + "mouth": "bored cigar", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3154, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "eyes": "bored", + "hat": "faux hawk", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3155, + "metadata_dict": { + "clothes": "striped tee", + "fur": "blue", + "mouth": "rage", + "background": "orange", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3156, + "metadata_dict": { + "background": "orange", + "fur": "brown", + "hat": "vietnam era helmet", + "mouth": "bored cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3157, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "tweed suit", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3158, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "eyes": "robot", + "fur": "black", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3159, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "background": "yellow", + "mouth": "bored pizza", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3160, + "metadata_dict": { + "eyes": "robot", + "background": "army green", + "fur": "blue", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3161, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "earring": "gold hoop", + "mouth": "bored pipe", + "fur": "dark brown", + "hat": "girl's hair short", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3162, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3163, + "metadata_dict": { + "hat": "prussian helmet", + "background": "blue", + "eyes": "robot", + "fur": "brown", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3164, + "metadata_dict": { + "eyes": "closed", + "hat": "party hat 2", + "background": "blue", + "fur": "pink", + "clothes": "lab coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3165, + "metadata_dict": { + "clothes": "rainbow suspenders", + "background": "yellow", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "brown", + "hat": "beanie", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3166, + "metadata_dict": { + "background": "new punk blue", + "hat": "laurel wreath", + "eyes": "zombie", + "mouth": "bored bubblegum", + "fur": "brown", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3167, + "metadata_dict": { + "eyes": "coins", + "clothes": "guayabera", + "earring": "silver hoop", + "fur": "brown", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3168, + "metadata_dict": { + "hat": "s&m hat", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3169, + "metadata_dict": { + "mouth": "discomfort", + "hat": "stuntman helmet", + "eyes": "robot", + "background": "blue", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3170, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "lumberjack shirt", + "fur": "black", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3171, + "metadata_dict": { + "mouth": "bored pipe", + "background": "orange", + "hat": "short mohawk", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3172, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "wool turtleneck", + "hat": "baby's bonnet", + "earring": "silver stud", + "fur": "dark brown", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3173, + "metadata_dict": { + "background": "gray", + "fur": "gray", + "mouth": "bored", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3174, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "party hat 2", + "fur": "tan", + "clothes": "biker vest", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3175, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "tan", + "mouth": "phoneme ooo", + "eyes": "3d", + "background": "gray", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3176, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "dumbfounded", + "background": "blue", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3177, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "phoneme oh", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3178, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "dark brown", + "hat": "bayc flipped brim", + "clothes": "lab coat", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3179, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "clothes": "bayc t red", + "fur": "cheetah", + "mouth": "bored unshaven cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3180, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "bandolier", + "eyes": "holographic", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3181, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin multicolored", + "eyes": "bored", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3182, + "metadata_dict": { + "fur": "tan", + "clothes": "striped tee", + "eyes": "bloodshot", + "hat": "army hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3183, + "metadata_dict": { + "eyes": "x eyes", + "hat": "irish boho", + "fur": "gray", + "mouth": "bored pipe", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3184, + "metadata_dict": { + "mouth": "grin", + "clothes": "blue dress", + "hat": "king's crown", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3185, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "hat": "seaman's hat", + "earring": "gold stud", + "clothes": "toga", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3186, + "metadata_dict": { + "clothes": "tuxedo tee", + "background": "yellow", + "mouth": "bored", + "hat": "halo", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3187, + "metadata_dict": { + "eyes": "closed", + "clothes": "space suit", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "black", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3188, + "metadata_dict": { + "mouth": "jovial", + "fur": "dark brown", + "clothes": "toga", + "eyes": "sleepy", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3189, + "metadata_dict": { + "mouth": "bored cigar", + "background": "aquamarine", + "eyes": "sleepy", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3190, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "earring": "silver stud", + "clothes": "biker vest", + "mouth": "small grin", + "background": "purple", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3191, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "dumbfounded", + "fur": "black", + "hat": "girl's hair short", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3192, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin diamond grill", + "clothes": "tanktop", + "hat": "fisherman's hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3193, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "clothes": "toga", + "hat": "beanie", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3194, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "fur": "pink", + "mouth": "bored", + "clothes": "stunt jacket", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3195, + "metadata_dict": { + "eyes": "heart", + "hat": "irish boho", + "mouth": "dumbfounded", + "clothes": "tuxedo tee", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3196, + "metadata_dict": { + "clothes": "prom dress", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3197, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "earring": "gold hoop", + "mouth": "bored unshaven bubblegum", + "eyes": "bloodshot", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3198, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "cowboy shirt", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3199, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "bayc hat red", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3200, + "metadata_dict": { + "mouth": "grin", + "clothes": "sailor shirt", + "eyes": "bloodshot", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3201, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "background": "yellow", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3202, + "metadata_dict": { + "eyes": "closed", + "clothes": "bandolier", + "fur": "red", + "hat": "vietnam era helmet", + "mouth": "bored unshaven kazoo", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3203, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "eyepatch", + "clothes": "black holes t", + "fur": "golden brown", + "background": "aquamarine", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3204, + "metadata_dict": { + "eyes": "coins", + "clothes": "rainbow suspenders", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3205, + "metadata_dict": { + "hat": "girl's hair short", + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "mouth": "tongue out", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3206, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "golden brown", + "mouth": "grin", + "clothes": "black t", + "background": "aquamarine", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3207, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "hat": "bandana blue", + "fur": "dark brown", + "clothes": "bayc t black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3208, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "eyes": "coins", + "fur": "black", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3209, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "mouth": "grin", + "earring": "silver stud", + "background": "blue", + "hat": "fisherman's hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3210, + "metadata_dict": { + "fur": "cream", + "mouth": "rage", + "hat": "fez", + "background": "purple", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3211, + "metadata_dict": { + "clothes": "bandolier", + "fur": "gray", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "hat": "bayc hat red", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3212, + "metadata_dict": { + "eyes": "3d", + "fur": "brown", + "background": "yellow", + "hat": "safari", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3213, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "fur": "red", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3214, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "zombie", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "stunt jacket", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3215, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "mouth": "jovial", + "background": "blue", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3216, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "rage", + "hat": "bunny ears", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3217, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "hat": "irish boho", + "fur": "golden brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3218, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "sleepy", + "fur": "dark brown", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3219, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "clothes": "work vest", + "eyes": "3d", + "mouth": "bored unshaven cigar", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3220, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "party hat 1", + "eyes": "robot", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3221, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "mouth": "bored", + "eyes": "blindfold" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3222, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "eyes": "coins", + "hat": "fisherman's hat", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3223, + "metadata_dict": { + "hat": "horns", + "clothes": "tweed suit", + "earring": "silver stud", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3224, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "laurel wreath", + "clothes": "black holes t", + "background": "blue", + "fur": "black", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3225, + "metadata_dict": { + "clothes": "black t", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "dark brown", + "hat": "short mohawk", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3226, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "fur": "gray", + "mouth": "jovial", + "clothes": "biker vest", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3227, + "metadata_dict": { + "hat": "sushi chef headband", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "tongue out", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3228, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "cream", + "hat": "prussian helmet", + "earring": "silver stud", + "eyes": "robot", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3229, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "eyes": "bored", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3230, + "metadata_dict": { + "eyes": "heart", + "earring": "silver stud", + "fur": "red", + "background": "orange", + "mouth": "bored unshaven cigarette", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3231, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "mouth": "grin multicolored", + "background": "yellow", + "earring": "silver stud", + "hat": "bayc hat red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3232, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc flipped brim", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3233, + "metadata_dict": { + "mouth": "grin", + "fur": "brown", + "clothes": "black t", + "eyes": "bored", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3234, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "background": "blue", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3235, + "metadata_dict": { + "fur": "tan", + "eyes": "holographic", + "background": "army green", + "mouth": "rage" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3236, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3237, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "party hat 1", + "clothes": "biker vest", + "fur": "pink", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3238, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "closed", + "clothes": "sailor shirt", + "earring": "gold stud", + "fur": "dark brown", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3239, + "metadata_dict": { + "fur": "tan", + "clothes": "bone necklace", + "mouth": "bored", + "eyes": "crazy", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3240, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "hat": "bowler", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3241, + "metadata_dict": { + "fur": "golden brown", + "clothes": "tie dye", + "mouth": "bored unshaven cigar", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3242, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "dumbfounded", + "fur": "red", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3243, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "zombie", + "mouth": "bored unshaven bubblegum", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3244, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "black", + "clothes": "prom dress", + "hat": "commie hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3245, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "fez", + "fur": "red", + "mouth": "jovial", + "background": "blue", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3246, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "fur": "red", + "clothes": "bone necklace", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3247, + "metadata_dict": { + "eyes": "heart", + "fur": "dark brown", + "hat": "fisherman's hat", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3248, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "blindfold", + "clothes": "sailor shirt", + "fur": "dark brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3249, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "sailor shirt", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3250, + "metadata_dict": { + "clothes": "black t", + "mouth": "bored unshaven pipe", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3251, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "background": "aquamarine", + "earring": "gold stud", + "fur": "pink", + "hat": "bayc flipped brim", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3252, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3253, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "mouth": "grin", + "earring": "silver stud", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3254, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "eyes": "blindfold", + "hat": "fez", + "mouth": "bored unshaven pipe", + "fur": "pink" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3255, + "metadata_dict": { + "clothes": "service", + "mouth": "bored pipe", + "eyes": "sleepy", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3256, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "background": "purple", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3257, + "metadata_dict": { + "clothes": "smoking jacket", + "fur": "dark brown", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3258, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "discomfort", + "clothes": "striped tee", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3259, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven party horn", + "hat": "girl's hair pink", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3260, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "heart", + "clothes": "wool turtleneck", + "earring": "gold stud", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3261, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3262, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "mouth": "grin", + "clothes": "black t", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3263, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "clothes": "leather jacket", + "background": "orange", + "hat": "short mohawk", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3264, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme oh", + "fur": "cream", + "hat": "seaman's hat", + "background": "orange", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3265, + "metadata_dict": { + "fur": "dmt", + "mouth": "rage", + "clothes": "bayc t black", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3266, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "new punk blue", + "hat": "s&m hat", + "clothes": "sleeveless t", + "fur": "dark brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3267, + "metadata_dict": { + "eyes": "zombie", + "mouth": "dumbfounded", + "fur": "pink", + "earring": "silver hoop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3268, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "seaman's hat", + "background": "yellow", + "fur": "death bot", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3269, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "background": "orange", + "eyes": "3d", + "earring": "silver hoop", + "clothes": "lab coat", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3270, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "zombie", + "background": "yellow", + "fur": "brown", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3271, + "metadata_dict": { + "fur": "cream", + "clothes": "lumberjack shirt", + "earring": "gold stud", + "mouth": "bored", + "background": "gray", + "hat": "safari", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3272, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin multicolored", + "hat": "seaman's hat", + "clothes": "black t", + "fur": "red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3273, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "eyes": "3d", + "clothes": "lab coat", + "fur": "brown", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3274, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3275, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "trippy", + "earring": "silver stud", + "background": "orange", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3276, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "hat": "seaman's hat", + "earring": "silver stud", + "mouth": "dumbfounded", + "eyes": "3d", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3277, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "blindfold", + "fur": "golden brown", + "hat": "fez", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3278, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "kings robe", + "fur": "golden brown", + "eyes": "coins", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3279, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "fur": "gray", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3280, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "fur": "golden brown", + "background": "aquamarine", + "clothes": "cowboy shirt", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3281, + "metadata_dict": { + "clothes": "sailor shirt", + "eyes": "sleepy", + "fur": "pink", + "mouth": "small grin", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3282, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold stud", + "clothes": "tie dye", + "hat": "cowboy hat", + "background": "gray", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3283, + "metadata_dict": { + "clothes": "black t", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3284, + "metadata_dict": { + "fur": "cream", + "clothes": "rainbow suspenders", + "eyes": "robot", + "background": "yellow", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3285, + "metadata_dict": { + "clothes": "striped tee", + "hat": "party hat 1", + "background": "yellow", + "mouth": "bored", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3286, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "tweed suit", + "background": "orange", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3287, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "robot", + "background": "purple", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3288, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "phoneme oh", + "hat": "spinner hat", + "fur": "pink", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3289, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "horns", + "fur": "dark brown", + "mouth": "bored unshaven cigar", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3290, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "background": "gray", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3291, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "sailor shirt", + "fur": "dark brown", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3292, + "metadata_dict": { + "eyes": "closed", + "clothes": "bandolier", + "mouth": "grin", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3293, + "metadata_dict": { + "hat": "party hat 1", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3294, + "metadata_dict": { + "hat": "irish boho", + "clothes": "tweed suit", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3295, + "metadata_dict": { + "clothes": "rainbow suspenders", + "mouth": "phoneme vuh", + "fur": "red", + "background": "purple", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3296, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "background": "aquamarine", + "clothes": "biker vest", + "hat": "bayc flipped brim", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3297, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "earring": "gold stud", + "eyes": "3d", + "background": "orange", + "hat": "bayc flipped brim", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3298, + "metadata_dict": { + "clothes": "work vest", + "fur": "noise", + "background": "gray", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3299, + "metadata_dict": { + "hat": "irish boho", + "fur": "pink", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3300, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "clothes": "sleeveless t", + "earring": "silver stud", + "background": "blue", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3301, + "metadata_dict": { + "clothes": "black t", + "earring": "silver stud", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3302, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "hat": "short mohawk", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3303, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "fur": "gray", + "earring": "silver hoop", + "clothes": "prom dress", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3304, + "metadata_dict": { + "eyes": "zombie", + "fur": "brown", + "background": "gray", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3305, + "metadata_dict": { + "clothes": "tweed suit", + "mouth": "dumbfounded", + "fur": "dark brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3306, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3307, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "fur": "dmt", + "mouth": "small grin", + "earring": "silver hoop", + "background": "yellow", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3308, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin multicolored", + "background": "aquamarine", + "fur": "dark brown", + "hat": "vietnam era helmet", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3309, + "metadata_dict": { + "mouth": "phoneme l", + "background": "blue", + "eyes": "robot", + "fur": "brown", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3310, + "metadata_dict": { + "fur": "tan", + "mouth": "bored kazoo", + "background": "aquamarine", + "clothes": "toga", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3311, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "fez", + "mouth": "rage", + "fur": "red", + "background": "aquamarine", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3312, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "background": "aquamarine", + "fur": "noise", + "clothes": "sleeveless logo t", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3313, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "eyes": "bloodshot", + "hat": "faux hawk", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3314, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3315, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "eyes": "robot", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3316, + "metadata_dict": { + "clothes": "black holes t", + "fur": "black", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3317, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored pipe", + "fur": "dark brown", + "eyes": "hypnotized" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3318, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "background": "blue", + "hat": "army hat", + "clothes": "tanktop", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3319, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "black t", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3320, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3321, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "earring": "gold hoop", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3322, + "metadata_dict": { + "eyes": "coins", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "fur": "noise", + "mouth": "small grin", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3323, + "metadata_dict": { + "fur": "dmt", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3324, + "metadata_dict": { + "clothes": "sailor shirt", + "earring": "gold stud", + "mouth": "bored unshaven cigar", + "hat": "bowler", + "background": "purple", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3325, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored bubblegum", + "fur": "black", + "hat": "army hat", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3326, + "metadata_dict": { + "clothes": "black t", + "mouth": "bored unshaven party horn", + "hat": "fez", + "earring": "silver stud", + "eyes": "3d", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3327, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "mouth": "bored cigarette", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3328, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "hat": "army hat", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3329, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "commie hat", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3330, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "zombie", + "fur": "black", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3331, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "hat": "seaman's hat", + "background": "blue", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3332, + "metadata_dict": { + "mouth": "grin", + "eyes": "robot", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3333, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "fur": "gray", + "earring": "silver stud", + "background": "purple", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3334, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme vuh", + "hat": "short mohawk", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3335, + "metadata_dict": { + "mouth": "grin multicolored", + "background": "orange", + "earring": "silver hoop", + "hat": "fisherman's hat", + "eyes": "bored", + "fur": "robot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3336, + "metadata_dict": { + "earring": "gold hoop", + "fur": "black", + "eyes": "3d", + "background": "orange", + "hat": "army hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3337, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "gray", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3338, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "sushi chef headband", + "eyes": "bored", + "background": "gray", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3339, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "coins", + "mouth": "jovial", + "background": "orange", + "hat": "safari", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3340, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "clothes": "work vest", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3341, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "eyes": "robot", + "hat": "faux hawk", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3342, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "pink", + "hat": "fisherman's hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3343, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "earring": "silver stud", + "hat": "cowboy hat", + "clothes": "lab coat", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3344, + "metadata_dict": { + "fur": "tan", + "clothes": "lumberjack shirt", + "eyes": "robot", + "background": "blue", + "mouth": "small grin", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3345, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "fur": "black", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3346, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "golden brown", + "clothes": "tweed suit", + "background": "aquamarine", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3347, + "metadata_dict": { + "eyes": "closed", + "clothes": "bandolier", + "fur": "cream", + "mouth": "dumbfounded", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3348, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "fur": "black", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3349, + "metadata_dict": { + "fur": "black", + "clothes": "tie dye", + "hat": "army hat", + "background": "yellow", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3350, + "metadata_dict": { + "eyes": "closed", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette", + "hat": "halo", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3351, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "aquamarine", + "hat": "bayc hat red", + "clothes": "prom dress", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3352, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "clothes": "tie dye", + "fur": "black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3353, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "cheetah", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3354, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "background": "blue", + "earring": "gold stud", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3355, + "metadata_dict": { + "fur": "tan", + "earring": "diamond stud", + "clothes": "work vest", + "hat": "fisherman's hat", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3356, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven cigarette", + "eyes": "scumbag", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3357, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "hat": "cowboy hat", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3358, + "metadata_dict": { + "clothes": "bandolier", + "background": "orange", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3359, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored cigar", + "clothes": "lab coat", + "background": "yellow", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3360, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "fur": "pink", + "eyes": "bored", + "clothes": "toga", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3361, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "background": "orange", + "hat": "faux hawk", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3362, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "rainbow suspenders", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3363, + "metadata_dict": { + "clothes": "smoking jacket", + "eyes": "3d", + "mouth": "bored unshaven kazoo", + "fur": "pink", + "background": "gray", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3364, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin diamond grill", + "background": "blue", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3365, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "red", + "earring": "silver hoop", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3366, + "metadata_dict": { + "eyes": "sunglasses", + "earring": "gold hoop", + "mouth": "dumbfounded", + "hat": "bayc flipped brim", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3367, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "hat": "fez", + "background": "blue", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3368, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "fur": "red", + "background": "orange", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3369, + "metadata_dict": { + "fur": "tan", + "eyes": "blindfold", + "background": "blue", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3370, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "earring": "diamond stud", + "clothes": "leather jacket", + "mouth": "bored unshaven kazoo", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3371, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "background": "blue", + "fur": "dark brown", + "clothes": "stunt jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3372, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "bandolier", + "mouth": "phoneme vuh", + "fur": "noise", + "earring": "silver hoop", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3373, + "metadata_dict": { + "fur": "tan", + "eyes": "holographic", + "clothes": "black holes t", + "hat": "fez", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3374, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "trippy", + "background": "aquamarine", + "hat": "bayc flipped brim", + "mouth": "bored pizza", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3375, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored bubblegum", + "hat": "beanie", + "eyes": "sleepy", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3376, + "metadata_dict": { + "hat": "party hat 2", + "fur": "red", + "background": "blue", + "clothes": "leather jacket", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3377, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "clothes": "leather jacket", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3378, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "wool turtleneck", + "background": "blue", + "fur": "noise", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3379, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "death bot", + "mouth": "phoneme wah", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3380, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "mouth": "phoneme vuh", + "clothes": "leather jacket", + "hat": "safari", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3381, + "metadata_dict": { + "background": "gray", + "mouth": "grin", + "fur": "brown", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3382, + "metadata_dict": { + "hat": "irish boho", + "mouth": "phoneme ooo", + "fur": "red", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3383, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "jovial", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3384, + "metadata_dict": { + "eyes": "closed", + "mouth": "tongue out", + "hat": "s&m hat", + "fur": "golden brown", + "clothes": "toga", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3385, + "metadata_dict": { + "eyes": "laser eyes", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "hat": "bayc flipped brim", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3386, + "metadata_dict": { + "mouth": "discomfort", + "hat": "s&m hat", + "eyes": "zombie", + "fur": "gray", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3387, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "fur": "golden brown", + "clothes": "leather jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3388, + "metadata_dict": { + "hat": "party hat 2", + "fur": "cream", + "clothes": "tweed suit", + "mouth": "bored unshaven cigarette", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3389, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "black", + "background": "gray", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3390, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "eyes": "coins", + "hat": "prussian helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3391, + "metadata_dict": { + "clothes": "striped tee", + "earring": "gold hoop", + "background": "blue", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3392, + "metadata_dict": { + "fur": "cream", + "hat": "sushi chef headband", + "mouth": "grin", + "eyes": "bloodshot", + "clothes": "toga", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3393, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "gray", + "background": "blue", + "clothes": "tie dye", + "eyes": "bloodshot", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3394, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "rage", + "fur": "red", + "eyes": "bored", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3395, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "prison jumpsuit", + "hat": "fez", + "fur": "black", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3396, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "eyes": "robot", + "background": "gray", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3397, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "red", + "eyes": "bored", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3398, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven party horn", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "eyes": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3399, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "fur": "gray", + "hat": "bowler", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3400, + "metadata_dict": { + "hat": "irish boho", + "mouth": "bored unshaven party horn", + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3401, + "metadata_dict": { + "mouth": "bored pipe", + "eyes": "bloodshot", + "fur": "brown", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3402, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "earring": "silver stud", + "clothes": "work vest", + "background": "yellow", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3403, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "grin", + "fur": "golden brown", + "eyes": "coins", + "earring": "silver stud", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3404, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "tweed suit", + "fur": "dark brown", + "background": "gray", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3405, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "hat": "irish boho", + "earring": "gold stud", + "mouth": "bored bubblegum", + "background": "orange", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3406, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "earring": "silver stud", + "clothes": "tuxedo tee", + "hat": "army hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3407, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "bored unshaven cigar", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3408, + "metadata_dict": { + "fur": "tan", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3409, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "hat": "seaman's hat", + "earring": "silver stud", + "fur": "pink", + "clothes": "lab coat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3410, + "metadata_dict": { + "fur": "gray", + "mouth": "bored pipe", + "background": "purple", + "eyes": "scumbag" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3411, + "metadata_dict": { + "background": "new punk blue", + "hat": "trippy captain's hat", + "clothes": "bone tee", + "fur": "dark brown", + "mouth": "bored cigarette", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3412, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "tan", + "mouth": "jovial", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3413, + "metadata_dict": { + "fur": "black", + "background": "orange", + "hat": "girl's hair short", + "clothes": "pimp coat", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3414, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "s&m hat", + "fur": "gray", + "mouth": "jovial", + "background": "blue", + "eyes": "bored", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3415, + "metadata_dict": { + "background": "aquamarine", + "fur": "death bot", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3416, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "coins", + "mouth": "dumbfounded", + "fur": "red", + "earring": "gold stud", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3417, + "metadata_dict": { + "fur": "gray", + "earring": "gold hoop", + "mouth": "dumbfounded", + "eyes": "bored", + "hat": "girl's hair short", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3418, + "metadata_dict": { + "eyes": "closed", + "hat": "bandana blue", + "clothes": "lumberjack shirt", + "background": "orange", + "mouth": "bored cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3419, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "hat": "seaman's hat", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3420, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "black t", + "fur": "black", + "background": "yellow", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3421, + "metadata_dict": { + "eyes": "coins", + "earring": "gold stud", + "hat": "bayc flipped brim", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3422, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "sushi chef headband", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3423, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "black", + "earring": "silver hoop", + "hat": "vietnam era helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3424, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "blue dress", + "background": "gray", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3425, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "gray", + "hat": "fez", + "background": "orange", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3426, + "metadata_dict": { + "background": "aquamarine", + "fur": "red", + "mouth": "tongue out", + "hat": "beanie", + "eyes": "crazy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3427, + "metadata_dict": { + "background": "gray", + "eyes": "coins", + "earring": "gold hoop", + "clothes": "sailor shirt", + "hat": "bayc flipped brim", + "fur": "cheetah", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3428, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "fur": "black", + "hat": "beanie", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3429, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin gold grill", + "background": "orange", + "fur": "brown", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3430, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "blue dress", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3431, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "blue", + "hat": "spinner hat", + "fur": "dark brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3432, + "metadata_dict": { + "mouth": "jovial", + "background": "yellow", + "fur": "robot", + "eyes": "closed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3433, + "metadata_dict": { + "eyes": "closed", + "earring": "silver stud", + "fur": "red", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3434, + "metadata_dict": { + "eyes": "coins", + "mouth": "small grin", + "clothes": "lab coat", + "fur": "brown", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3435, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "wool turtleneck", + "hat": "king's crown", + "background": "aquamarine", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3436, + "metadata_dict": { + "eyes": "scumbag", + "earring": "gold hoop", + "fur": "black", + "background": "gray", + "hat": "bayc hat red", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3437, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "irish boho", + "fur": "golden brown", + "clothes": "smoking jacket", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3438, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "background": "orange", + "mouth": "small grin", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3439, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "hat": "fez", + "background": "aquamarine", + "clothes": "bayc t black", + "fur": "solid gold" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3440, + "metadata_dict": { + "background": "blue", + "clothes": "biker vest", + "fur": "dark brown", + "hat": "vietnam era helmet", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3441, + "metadata_dict": { + "eyes": "sad", + "background": "orange", + "clothes": "smoking jacket", + "earring": "silver hoop", + "mouth": "bored cigar", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3442, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "wool turtleneck", + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "3d", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3443, + "metadata_dict": { + "clothes": "lab coat", + "background": "aquamarine", + "hat": "cowboy hat", + "eyes": "bored", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3444, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "fur": "pink", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3445, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "dumbfounded", + "earring": "gold stud", + "fur": "dark brown", + "eyes": "bored", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3446, + "metadata_dict": { + "fur": "cheetah", + "clothes": "sailor shirt", + "hat": "party hat 1", + "earring": "silver stud", + "eyes": "robot", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3447, + "metadata_dict": { + "fur": "dmt", + "hat": "beanie", + "clothes": "stunt jacket", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3448, + "metadata_dict": { + "hat": "baby's bonnet", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "3d", + "clothes": "toga", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3449, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "party hat 1", + "fur": "red", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3450, + "metadata_dict": { + "eyes": "coins", + "hat": "vietnam era helmet", + "fur": "dark brown", + "mouth": "small grin", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3451, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "earring": "silver stud", + "background": "orange", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3452, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless t", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "police motorcycle helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3453, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "eyes": "robot", + "clothes": "lab coat", + "fur": "cheetah", + "background": "purple", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3454, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "gray", + "mouth": "bored unshaven pipe", + "earring": "silver hoop", + "eyes": "bored", + "background": "yellow", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3455, + "metadata_dict": { + "eyes": "zombie", + "mouth": "bored party horn", + "background": "orange", + "hat": "fisherman's hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3456, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black t", + "mouth": "phoneme vuh", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3457, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored unshaven cigarette", + "fur": "white", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3458, + "metadata_dict": { + "eyes": "heart", + "hat": "party hat 2", + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "golden brown", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3459, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "eyes": "zombie", + "hat": "fez", + "clothes": "prison jumpsuit", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3460, + "metadata_dict": { + "background": "yellow", + "fur": "red", + "mouth": "bored bubblegum", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "silver hoop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3461, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "clothes": "tanktop", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3462, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "phoneme ooo", + "clothes": "tie dye", + "fur": "pink", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3463, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "hat": "short mohawk", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3464, + "metadata_dict": { + "eyes": "scumbag", + "fur": "gray", + "background": "orange", + "hat": "bayc flipped brim", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3465, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "mouth": "rage", + "background": "aquamarine", + "fur": "black", + "clothes": "smoking jacket", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3466, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "fur": "pink", + "clothes": "biker vest", + "hat": "cowboy hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3467, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "sleepy", + "earring": "gold stud", + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3468, + "metadata_dict": { + "clothes": "cowboy shirt", + "background": "purple", + "hat": "faux hawk", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3469, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "laurel wreath", + "clothes": "leather jacket", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3470, + "metadata_dict": { + "eyes": "holographic", + "hat": "s&m hat", + "mouth": "grin", + "fur": "black", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3471, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather jacket", + "eyes": "robot", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3472, + "metadata_dict": { + "eyes": "closed", + "clothes": "lumberjack shirt", + "background": "orange", + "fur": "dark brown", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3473, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3474, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "clothes": "leather jacket", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3475, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "tan", + "hat": "baby's bonnet", + "earring": "gold hoop", + "mouth": "phoneme vuh", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3476, + "metadata_dict": { + "eyes": "closed", + "mouth": "discomfort", + "fur": "tan", + "clothes": "tweed suit", + "background": "orange", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3477, + "metadata_dict": { + "eyes": "closed", + "clothes": "space suit", + "mouth": "phoneme ooo", + "background": "yellow", + "fur": "black", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3478, + "metadata_dict": { + "eyes": "scumbag", + "background": "aquamarine", + "fur": "black", + "clothes": "biker vest", + "hat": "girl's hair short", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3479, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "work vest", + "background": "aquamarine", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3480, + "metadata_dict": { + "clothes": "guayabera", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3481, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "bloodshot", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3482, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "grin", + "eyes": "bored", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3483, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "clothes": "tie dye", + "background": "orange", + "fur": "dark brown", + "hat": "short mohawk", + "eyes": "bored", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3484, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "black t", + "eyes": "bored", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3485, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "seaman's hat", + "eyes": "bored", + "fur": "white", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3486, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "background": "yellow", + "mouth": "dumbfounded", + "hat": "bowler", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3487, + "metadata_dict": { + "eyes": "blindfold", + "fur": "red", + "mouth": "small grin", + "hat": "ww2 pilot helm", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3488, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "clothes": "black holes t", + "background": "orange", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3489, + "metadata_dict": { + "eyes": "eyepatch", + "background": "orange", + "fur": "dark brown", + "clothes": "lab coat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3490, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "black", + "clothes": "tanktop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3491, + "metadata_dict": { + "fur": "tan", + "mouth": "bored party horn", + "eyes": "bloodshot", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3492, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "clothes": "puffy vest", + "eyes": "wide eyed", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3493, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "hat": "irish boho", + "fur": "black", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3494, + "metadata_dict": { + "hat": "stuntman helmet", + "background": "orange", + "clothes": "tuxedo tee", + "fur": "death bot", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3495, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3496, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "fur": "brown", + "hat": "vietnam era helmet", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3497, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "black", + "background": "orange", + "clothes": "biker vest", + "eyes": "3d", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3498, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "sleepy", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3499, + "metadata_dict": { + "hat": "horns", + "clothes": "tie dye", + "fur": "black", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3500, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "coins", + "mouth": "phoneme vuh", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3501, + "metadata_dict": { + "hat": "party hat 2", + "fur": "dmt", + "clothes": "vietnam jacket", + "mouth": "phoneme vuh", + "earring": "gold stud", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3502, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "holographic", + "hat": "bandana blue", + "background": "blue", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3503, + "metadata_dict": { + "hat": "irish boho", + "background": "blue", + "eyes": "bored", + "fur": "death bot", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3504, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sailor shirt", + "hat": "stuntman helmet", + "earring": "gold stud", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3505, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "background": "orange", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3506, + "metadata_dict": { + "eyes": "closed", + "hat": "girl's hair pink", + "clothes": "cowboy shirt", + "fur": "black", + "background": "blue", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3507, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "orange", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3508, + "metadata_dict": { + "mouth": "discomfort", + "background": "blue", + "eyes": "bloodshot", + "clothes": "bayc t black", + "earring": "silver hoop", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3509, + "metadata_dict": { + "eyes": "closed", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigar", + "background": "gray", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3510, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "black", + "background": "orange", + "eyes": "sleepy", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3511, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "eyes": "robot", + "background": "gray", + "hat": "safari", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3512, + "metadata_dict": { + "fur": "tan", + "eyes": "robot", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3513, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "red", + "clothes": "tanktop", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3514, + "metadata_dict": { + "eyes": "heart", + "background": "army green", + "fur": "blue", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3515, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "rainbow suspenders", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "hat": "safari", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3516, + "metadata_dict": { + "mouth": "discomfort", + "earring": "silver stud", + "background": "yellow", + "eyes": "sleepy", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3517, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "eyes": "3d", + "clothes": "smoking jacket", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3518, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "zombie", + "background": "gray", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3519, + "metadata_dict": { + "eyes": "closed", + "background": "yellow", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3520, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "background": "aquamarine", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3521, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "black", + "hat": "commie hat", + "eyes": "sleepy", + "earring": "cross", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3522, + "metadata_dict": { + "background": "orange", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "fur": "brown", + "hat": "vietnam era helmet", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3523, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "clothes": "black t", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3524, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "irish boho", + "eyes": "zombie", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3525, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "noise", + "eyes": "bored", + "hat": "faux hawk", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3526, + "metadata_dict": { + "eyes": "x eyes", + "background": "gray", + "mouth": "bored unshaven cigarette", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3527, + "metadata_dict": { + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "mouth": "bored unshaven kazoo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3528, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "earring": "silver stud", + "mouth": "phoneme vuh", + "fur": "dark brown", + "hat": "bunny ears", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3529, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven party horn", + "earring": "silver stud", + "background": "purple", + "hat": "bayc hat red", + "clothes": "guayabera", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3530, + "metadata_dict": { + "fur": "tan", + "mouth": "bored dagger", + "clothes": "tie dye", + "eyes": "bloodshot", + "background": "gray", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3531, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "background": "orange", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3532, + "metadata_dict": { + "hat": "fez", + "fur": "black", + "eyes": "bored", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3533, + "metadata_dict": { + "clothes": "work vest", + "background": "aquamarine", + "mouth": "bored unshaven kazoo", + "fur": "dark brown", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3534, + "metadata_dict": { + "clothes": "rainbow suspenders", + "mouth": "dumbfounded", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "faux hawk", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3535, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven cigarette", + "earring": "diamond stud", + "fur": "dark brown", + "background": "gray", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3536, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "background": "blue", + "earring": "gold stud", + "eyes": "3d", + "clothes": "tie dye" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3537, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3538, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "hat": "seaman's hat", + "mouth": "tongue out", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3539, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3540, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "sailor shirt", + "earring": "gold stud", + "background": "orange", + "hat": "fisherman's hat", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3541, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3542, + "metadata_dict": { + "eyes": "heart", + "clothes": "rainbow suspenders", + "mouth": "phoneme vuh", + "background": "orange", + "fur": "cheetah", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3543, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "mouth": "bored unshaven bubblegum", + "eyes": "bloodshot", + "clothes": "tanktop", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3544, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "hat": "fez", + "mouth": "dumbfounded", + "clothes": "biker vest", + "eyes": "3d", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3545, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "earring": "silver stud", + "background": "orange", + "clothes": "bone necklace", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3546, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "golden brown", + "eyes": "zombie", + "clothes": "tweed suit", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3547, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "earring": "gold stud", + "hat": "short mohawk", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3548, + "metadata_dict": { + "hat": "s&m hat", + "fur": "dmt", + "mouth": "bored unshaven cigarette", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3549, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3550, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "caveman pelt", + "fur": "red", + "eyes": "bloodshot", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3551, + "metadata_dict": { + "fur": "dmt", + "background": "aquamarine", + "mouth": "small grin", + "eyes": "bored", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3552, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "background": "purple", + "eyes": "sleepy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3553, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored party horn", + "background": "aquamarine", + "eyes": "robot", + "earring": "silver hoop", + "fur": "cheetah", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3554, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3555, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "background": "aquamarine", + "earring": "gold stud", + "hat": "cowboy hat", + "fur": "cheetah", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3556, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "small grin", + "background": "gray", + "hat": "beanie", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3557, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin", + "earring": "silver stud", + "clothes": "lab coat", + "background": "yellow", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3558, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "cowboy hat", + "background": "gray", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3559, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "eyes": "coins", + "earring": "gold hoop", + "clothes": "sailor shirt", + "fur": "black", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3560, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "scumbag", + "hat": "stuntman helmet", + "fur": "noise", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3561, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3562, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "clothes": "black suit", + "background": "blue", + "hat": "bayc flipped brim", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3563, + "metadata_dict": { + "fur": "cream", + "hat": "army hat", + "background": "yellow", + "mouth": "bored unshaven dagger", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3564, + "metadata_dict": { + "mouth": "grin", + "earring": "silver stud", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "toga", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3565, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "striped tee", + "eyes": "robot", + "fur": "black", + "background": "yellow", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3566, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "mouth": "jovial", + "eyes": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3567, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "hat": "horns", + "fur": "gray", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3568, + "metadata_dict": { + "clothes": "striped tee", + "hat": "seaman's hat", + "fur": "red", + "mouth": "bored pipe", + "eyes": "robot", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3569, + "metadata_dict": { + "mouth": "bored cigarette", + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3570, + "metadata_dict": { + "fur": "gray", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3571, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "hat": "party hat 1", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3572, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "eyes": "coins", + "background": "aquamarine", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3573, + "metadata_dict": { + "fur": "black", + "clothes": "biker vest", + "background": "purple", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3574, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "fur": "black", + "clothes": "lab coat", + "hat": "commie hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3575, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "black t", + "fur": "dark brown", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3576, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "brown", + "background": "orange", + "hat": "bayc flipped brim", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3577, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "white", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3578, + "metadata_dict": { + "clothes": "striped tee", + "hat": "bandana blue", + "fur": "cream", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3579, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "hat": "seaman's hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3580, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "background": "yellow", + "fur": "white", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3581, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "gray", + "eyes": "coins", + "mouth": "dumbfounded", + "clothes": "bayc t black", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3582, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "bone tee", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3583, + "metadata_dict": { + "background": "gray", + "fur": "gray", + "eyes": "bored", + "clothes": "tanktop", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3584, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin diamond grill", + "background": "blue", + "fur": "dark brown", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3585, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "dumbfounded", + "background": "gray", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3586, + "metadata_dict": { + "mouth": "rage", + "clothes": "biker vest", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3587, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3588, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "pink", + "background": "gray", + "mouth": "bored", + "eyes": "angry", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3589, + "metadata_dict": { + "background": "gray", + "mouth": "grin", + "earring": "silver stud", + "eyes": "3d", + "clothes": "bayc t black", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3590, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "dark brown", + "background": "gray", + "clothes": "navy striped tee", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3591, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "earring": "gold hoop", + "hat": "cowboy hat", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3592, + "metadata_dict": { + "fur": "cream", + "clothes": "space suit", + "background": "aquamarine", + "eyes": "3d", + "hat": "beanie", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3593, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "zombie", + "earring": "silver stud", + "hat": "cowboy hat", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3594, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "background": "blue", + "fur": "black", + "earring": "silver hoop", + "eyes": "sleepy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3595, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "background": "gray", + "clothes": "work vest", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3596, + "metadata_dict": { + "fur": "golden brown", + "background": "aquamarine", + "hat": "ww2 pilot helm", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3597, + "metadata_dict": { + "mouth": "discomfort", + "fur": "red", + "earring": "silver hoop", + "hat": "beanie", + "eyes": "angry", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3598, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "gray", + "mouth": "dumbfounded", + "hat": "army hat", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3599, + "metadata_dict": { + "fur": "golden brown", + "mouth": "small grin", + "background": "purple", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3600, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "eyes": "robot", + "clothes": "pimp coat", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3601, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "dumbfounded", + "background": "purple", + "hat": "halo", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3602, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "clothes": "biker vest", + "mouth": "tongue out", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3603, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "eyes": "3d", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3604, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3605, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "mouth": "rage", + "clothes": "prison jumpsuit", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3606, + "metadata_dict": { + "fur": "brown", + "eyes": "closed", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3607, + "metadata_dict": { + "hat": "irish boho", + "clothes": "smoking jacket", + "fur": "pink", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3608, + "metadata_dict": { + "fur": "black", + "background": "orange", + "mouth": "small grin", + "clothes": "tanktop", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3609, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven dagger", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3610, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "holographic", + "earring": "silver stud", + "background": "orange", + "mouth": "bored unshaven cigar", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3611, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "bandana blue", + "mouth": "bored unshaven", + "background": "yellow", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3612, + "metadata_dict": { + "fur": "tan", + "clothes": "wool turtleneck", + "eyes": "blindfold", + "earring": "gold hoop", + "hat": "fez", + "background": "aquamarine", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3613, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "hat": "s&m hat", + "fur": "golden brown", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3614, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "coins", + "mouth": "rage", + "background": "orange", + "fur": "noise", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3615, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "earring": "silver stud", + "fur": "black", + "background": "purple", + "hat": "safari", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3616, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "fur": "pink", + "hat": "girl's hair short", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3617, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "leather punk jacket", + "fur": "red", + "mouth": "bored bubblegum", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3618, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "seaman's hat", + "background": "yellow", + "earring": "cross", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3619, + "metadata_dict": { + "fur": "brown", + "eyes": "3d", + "background": "orange", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3620, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "closed", + "earring": "silver stud", + "fur": "cheetah", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3621, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "blue", + "eyes": "robot", + "clothes": "biker vest", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3622, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "background": "yellow", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3623, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "grin", + "earring": "silver stud", + "clothes": "hawaiian", + "fur": "cheetah", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3624, + "metadata_dict": { + "background": "new punk blue", + "hat": "vietnam era helmet", + "fur": "dark brown", + "clothes": "bone necklace", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3625, + "metadata_dict": { + "hat": "fez", + "clothes": "biker vest", + "eyes": "bloodshot", + "mouth": "small grin", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3626, + "metadata_dict": { + "mouth": "grin", + "eyes": "robot", + "background": "blue", + "clothes": "leather jacket", + "fur": "dark brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3627, + "metadata_dict": { + "clothes": "wool turtleneck", + "earring": "diamond stud", + "hat": "fez", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3628, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "clothes": "rainbow suspenders", + "background": "blue", + "hat": "ww2 pilot helm", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3629, + "metadata_dict": { + "fur": "golden brown", + "background": "aquamarine", + "hat": "short mohawk", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3630, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cream", + "hat": "horns", + "mouth": "grin multicolored", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3631, + "metadata_dict": { + "fur": "cream", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "eyes": "3d", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3632, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "golden brown", + "hat": "spinner hat", + "clothes": "tie dye", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3633, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "fez", + "eyes": "bored", + "mouth": "bored cigarette", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3634, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "black", + "clothes": "guayabera", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3635, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "party hat 1", + "background": "orange", + "fur": "dark brown", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3636, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black t", + "eyes": "bored", + "hat": "army hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3637, + "metadata_dict": { + "eyes": "sad", + "background": "army green", + "mouth": "bored", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3638, + "metadata_dict": { + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3639, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "tweed suit", + "background": "yellow", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3640, + "metadata_dict": { + "fur": "red", + "background": "purple", + "clothes": "smoking jacket", + "mouth": "small grin", + "eyes": "sleepy", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3641, + "metadata_dict": { + "clothes": "striped tee", + "fur": "gray", + "hat": "spinner hat", + "eyes": "3d", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3642, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "background": "blue", + "fur": "pink", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3643, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "bored", + "background": "gray", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3644, + "metadata_dict": { + "fur": "dmt", + "hat": "girl's hair pink", + "clothes": "biker vest", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3645, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "background": "aquamarine", + "eyes": "3d", + "earring": "silver hoop", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3646, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "background": "blue", + "mouth": "bored unshaven kazoo", + "clothes": "stunt jacket", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3647, + "metadata_dict": { + "eyes": "hypnotized", + "background": "blue", + "clothes": "leather jacket", + "mouth": "bored", + "fur": "white", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3648, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "eyes": "bloodshot", + "fur": "brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3649, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "tan", + "hat": "seaman's hat", + "clothes": "prison jumpsuit", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3650, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "horns", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3651, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "fur": "cheetah", + "hat": "commie hat", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3652, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "fur": "cream", + "clothes": "black t", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3653, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "rainbow suspenders", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3654, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "clothes": "smoking jacket", + "hat": "bayc flipped brim", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3655, + "metadata_dict": { + "hat": "police motorcycle helmet", + "background": "blue", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3656, + "metadata_dict": { + "mouth": "jovial", + "clothes": "cowboy shirt", + "background": "orange", + "hat": "cowboy hat", + "fur": "cheetah", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3657, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t red", + "hat": "seaman's hat", + "eyes": "3d", + "mouth": "tongue out", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3658, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "zombie", + "earring": "gold hoop", + "clothes": "tie dye", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3659, + "metadata_dict": { + "eyes": "blindfold", + "hat": "spinner hat", + "fur": "dark brown", + "background": "gray", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3660, + "metadata_dict": { + "hat": "king's crown", + "mouth": "rage", + "earring": "gold stud", + "clothes": "tie dye", + "fur": "dark brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3661, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "earring": "silver hoop", + "fur": "brown", + "hat": "bowler", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3662, + "metadata_dict": { + "hat": "fisherman's hat", + "clothes": "work vest", + "mouth": "small grin", + "fur": "death bot", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3663, + "metadata_dict": { + "hat": "irish boho", + "earring": "gold hoop", + "eyes": "robot", + "background": "blue", + "fur": "brown", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3664, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven bubblegum", + "clothes": "sailor shirt", + "earring": "gold stud", + "eyes": "bored", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3665, + "metadata_dict": { + "background": "gray", + "fur": "black", + "eyes": "coins", + "mouth": "bored unshaven" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3666, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "golden brown", + "clothes": "black suit", + "mouth": "phoneme vuh", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3667, + "metadata_dict": { + "clothes": "sleeveless logo t", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigarette", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3668, + "metadata_dict": { + "fur": "golden brown", + "eyes": "zombie", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3669, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "eyes": "coins", + "mouth": "rage", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3670, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "stuntman helmet", + "fur": "dark brown", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3671, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "eyes": "holographic", + "fur": "black", + "clothes": "smoking jacket", + "hat": "girl's hair short", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3672, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "clothes": "biker vest", + "earring": "silver hoop", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3673, + "metadata_dict": { + "eyes": "zombie", + "mouth": "dumbfounded", + "background": "orange", + "fur": "dark brown", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3674, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "background": "blue", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3675, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "yellow", + "eyes": "crazy", + "fur": "robot", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3676, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "eyes": "robot", + "fur": "black", + "hat": "cowboy hat", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3677, + "metadata_dict": { + "eyes": "closed", + "hat": "bandana blue", + "mouth": "rage", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3678, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "clothes": "smoking jacket", + "eyes": "3d", + "hat": "cowboy hat", + "background": "gray", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3679, + "metadata_dict": { + "clothes": "blue dress", + "eyes": "coins", + "background": "blue", + "fur": "pink", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3680, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored pizza", + "background": "purple", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3681, + "metadata_dict": { + "fur": "golden brown", + "mouth": "phoneme ooo", + "eyes": "bored", + "clothes": "lab coat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3682, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "mouth": "bored", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3683, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "background": "orange", + "eyes": "bloodshot", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3684, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "eyes": "coins", + "earring": "gold hoop", + "hat": "fez", + "fur": "dark brown", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3685, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "black holes t", + "mouth": "rage", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3686, + "metadata_dict": { + "background": "gray", + "eyes": "zombie", + "mouth": "bored party horn", + "earring": "silver stud", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3687, + "metadata_dict": { + "hat": "horns", + "earring": "gold hoop", + "eyes": "coins", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3688, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored unshaven bubblegum", + "fur": "black", + "earring": "silver hoop", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3689, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "robot", + "fur": "black", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3690, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "background": "blue", + "hat": "bunny ears", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3691, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "hat": "irish boho", + "mouth": "grin", + "earring": "gold stud", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3692, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme vuh", + "earring": "silver stud", + "eyes": "bored", + "clothes": "caveman pelt", + "fur": "zombie", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3693, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "bone necklace", + "hat": "bayc flipped brim", + "background": "yellow", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3694, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "bored", + "fur": "white", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3695, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "fur": "tan", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "girl's hair short", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3696, + "metadata_dict": { + "mouth": "grin diamond grill", + "earring": "gold stud", + "fur": "dark brown", + "clothes": "bayc t black", + "hat": "bayc flipped brim", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3697, + "metadata_dict": { + "hat": "horns", + "clothes": "black holes t", + "fur": "gray", + "background": "orange", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3698, + "metadata_dict": { + "background": "blue", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "tongue out", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3699, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "background": "purple", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3700, + "metadata_dict": { + "clothes": "sailor shirt", + "earring": "silver stud", + "fur": "dark brown", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3701, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "prison jumpsuit", + "background": "purple", + "mouth": "small grin", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3702, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "space suit", + "mouth": "grin multicolored", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3703, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "mouth": "jovial", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3704, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "background": "aquamarine", + "hat": "bunny ears", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3705, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "irish boho", + "earring": "silver stud", + "background": "blue", + "fur": "black", + "eyes": "bored", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3706, + "metadata_dict": { + "fur": "golden brown", + "clothes": "leather jacket", + "hat": "spinner hat", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3707, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "black holes t", + "fur": "golden brown", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3708, + "metadata_dict": { + "hat": "horns", + "mouth": "rage", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "lab coat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3709, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "hat": "ww2 pilot helm", + "fur": "brown", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3710, + "metadata_dict": { + "fur": "brown", + "clothes": "tie dye", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3711, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "fur": "dark brown", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3712, + "metadata_dict": { + "background": "new punk blue", + "hat": "sea captain's hat", + "earring": "gold stud", + "fur": "dark brown", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3713, + "metadata_dict": { + "fur": "cream", + "clothes": "sleeveless t", + "eyes": "robot", + "mouth": "tongue out", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3714, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "space suit", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3715, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "fur": "gray", + "mouth": "small grin", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3716, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "smoking jacket", + "earring": "silver hoop", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3717, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "zombie", + "mouth": "small grin", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3718, + "metadata_dict": { + "background": "gray", + "clothes": "black holes t", + "hat": "seaman's hat", + "fur": "noise", + "mouth": "bored unshaven cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3719, + "metadata_dict": { + "eyes": "holographic", + "mouth": "phoneme ooo", + "earring": "silver stud", + "background": "blue", + "clothes": "biker vest", + "hat": "beanie", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3720, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "hat": "short mohawk", + "clothes": "hip hop", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3721, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "fez", + "background": "aquamarine", + "fur": "pink", + "eyes": "angry", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3722, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "earring": "gold hoop", + "clothes": "black t", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3723, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "clothes": "black t", + "hat": "stuntman helmet", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3724, + "metadata_dict": { + "clothes": "caveman pelt", + "fur": "golden brown", + "hat": "baby's bonnet", + "mouth": "jovial", + "eyes": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3725, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather punk jacket", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3726, + "metadata_dict": { + "eyes": "x eyes", + "hat": "horns", + "clothes": "space suit", + "fur": "golden brown", + "background": "aquamarine", + "mouth": "jovial" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3727, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "phoneme ooo", + "clothes": "black t", + "fur": "dark brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3728, + "metadata_dict": { + "clothes": "bone tee", + "background": "aquamarine", + "hat": "army hat", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3729, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "earring": "gold stud", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3730, + "metadata_dict": { + "eyes": "heart", + "background": "gray", + "clothes": "black t", + "hat": "prussian helmet", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3731, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "clothes": "bayc t black", + "earring": "silver hoop", + "hat": "fisherman's hat", + "fur": "brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3732, + "metadata_dict": { + "mouth": "grin diamond grill", + "background": "aquamarine", + "fur": "red", + "clothes": "biker vest", + "eyes": "bloodshot", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3733, + "metadata_dict": { + "hat": "s&m hat", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3734, + "metadata_dict": { + "background": "new punk blue", + "hat": "cowboy hat", + "fur": "brown", + "clothes": "prom dress", + "mouth": "bored cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3735, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "dmt", + "eyes": "3d", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3736, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "mouth": "phoneme vuh", + "background": "blue", + "hat": "bowler", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3737, + "metadata_dict": { + "fur": "tan", + "hat": "fez", + "background": "blue", + "eyes": "robot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3738, + "metadata_dict": { + "mouth": "grin diamond grill", + "fur": "pink", + "background": "orange", + "clothes": "stunt jacket", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3739, + "metadata_dict": { + "background": "aquamarine", + "eyes": "sleepy", + "mouth": "bored", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3740, + "metadata_dict": { + "fur": "blue", + "mouth": "grin multicolored", + "earring": "silver stud", + "background": "orange", + "clothes": "biker vest", + "hat": "safari", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3741, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "black t", + "background": "blue", + "hat": "spinner hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3742, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "background": "aquamarine", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3743, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3744, + "metadata_dict": { + "hat": "baby's bonnet", + "eyes": "coins", + "mouth": "bored unshaven bubblegum", + "fur": "pink", + "earring": "silver hoop", + "background": "gray", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3745, + "metadata_dict": { + "fur": "black", + "earring": "silver hoop", + "background": "gray", + "clothes": "prom dress", + "mouth": "phoneme wah", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3746, + "metadata_dict": { + "fur": "gray", + "background": "blue", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3747, + "metadata_dict": { + "hat": "horns", + "eyes": "hypnotized", + "background": "aquamarine", + "clothes": "leather jacket", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3748, + "metadata_dict": { + "mouth": "bored cigar", + "clothes": "blue dress", + "earring": "gold stud", + "background": "orange", + "hat": "bowler", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3749, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "black t", + "mouth": "small grin", + "fur": "solid gold", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3750, + "metadata_dict": { + "background": "new punk blue", + "clothes": "work vest", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3751, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "fur": "black", + "earring": "silver hoop", + "clothes": "tanktop", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3752, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "gray", + "hat": "girl's hair pink", + "eyes": "robot", + "background": "yellow", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3753, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "clothes": "lab coat", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3754, + "metadata_dict": { + "background": "purple", + "eyes": "3d", + "mouth": "small grin", + "earring": "silver hoop", + "fur": "brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3755, + "metadata_dict": { + "fur": "golden brown", + "mouth": "grin", + "hat": "king's crown", + "clothes": "work vest", + "background": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3756, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "fur": "trippy", + "mouth": "grin multicolored", + "clothes": "leather jacket", + "earring": "gold stud", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3757, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "hat": "baby's bonnet", + "clothes": "biker vest", + "fur": "dark brown", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3758, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "sailor shirt", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3759, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "mouth": "jovial", + "fur": "pink", + "earring": "silver hoop", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3760, + "metadata_dict": { + "clothes": "prison jumpsuit", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3761, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "black", + "mouth": "bored unshaven kazoo", + "hat": "faux hawk", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3762, + "metadata_dict": { + "fur": "red", + "background": "blue", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigar", + "clothes": "hip hop", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3763, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "sleeveless t", + "fur": "pink", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3764, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "eyepatch", + "clothes": "leather punk jacket", + "background": "gray", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3765, + "metadata_dict": { + "background": "new punk blue", + "clothes": "prom dress", + "mouth": "bored pipe", + "hat": "bowler", + "fur": "death bot", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3766, + "metadata_dict": { + "fur": "tan", + "clothes": "sailor shirt", + "background": "blue", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3767, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "clothes": "toga", + "background": "yellow", + "hat": "commie hat", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3768, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "red", + "hat": "short mohawk", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3769, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "bone necklace", + "hat": "girl's hair short", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3770, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "gray", + "background": "blue", + "earring": "silver hoop", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3771, + "metadata_dict": { + "eyes": "holographic", + "clothes": "bandolier", + "fur": "gray", + "mouth": "grin diamond grill", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3772, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "short mohawk", + "earring": "silver hoop", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3773, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "hat": "king's crown", + "earring": "gold stud", + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3774, + "metadata_dict": { + "mouth": "rage", + "fur": "pink", + "clothes": "tuxedo tee", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3775, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "prison jumpsuit", + "eyes": "bored", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3776, + "metadata_dict": { + "clothes": "black t", + "earring": "gold stud", + "fur": "brown", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3777, + "metadata_dict": { + "hat": "irish boho", + "earring": "silver stud", + "fur": "black", + "clothes": "bone necklace", + "background": "purple", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3778, + "metadata_dict": { + "background": "aquamarine", + "clothes": "pimp coat", + "mouth": "small grin", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3779, + "metadata_dict": { + "fur": "gray", + "eyes": "coins", + "mouth": "bored unshaven pipe", + "background": "blue", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3780, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bored", + "fur": "brown", + "earring": "cross", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3781, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "irish boho", + "eyes": "3d", + "earring": "silver hoop", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3782, + "metadata_dict": { + "fur": "dmt", + "clothes": "rainbow suspenders", + "mouth": "jovial", + "background": "yellow", + "hat": "safari", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3783, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "clothes": "smoking jacket", + "eyes": "bored", + "mouth": "bored pizza", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3784, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "fur": "red", + "background": "aquamarine", + "hat": "bayc flipped brim", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3785, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "irish boho", + "mouth": "grin", + "clothes": "cowboy shirt", + "fur": "dark brown", + "background": "gray", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3786, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "eyes": "bored", + "mouth": "tongue out", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3787, + "metadata_dict": { + "fur": "dmt", + "clothes": "black t", + "eyes": "bloodshot", + "hat": "ww2 pilot helm", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3788, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "sailor shirt", + "background": "aquamarine", + "hat": "beanie", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3789, + "metadata_dict": { + "eyes": "heart", + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "dark brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3790, + "metadata_dict": { + "hat": "stuntman helmet", + "earring": "silver stud", + "fur": "red", + "background": "blue", + "clothes": "tuxedo tee", + "eyes": "angry", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3791, + "metadata_dict": { + "clothes": "striped tee", + "background": "blue", + "eyes": "bored", + "mouth": "bored", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3792, + "metadata_dict": { + "eyes": "x eyes", + "hat": "bayc hat black", + "fur": "tan", + "clothes": "sleeveless t", + "background": "aquamarine", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3793, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "sailor shirt", + "fur": "red", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3794, + "metadata_dict": { + "hat": "seaman's hat", + "background": "aquamarine", + "clothes": "work vest", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3795, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "grin", + "fur": "red", + "clothes": "bayc t black", + "hat": "vietnam era helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3796, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "earring": "silver stud", + "fur": "black", + "hat": "bayc flipped brim", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3797, + "metadata_dict": { + "background": "new punk blue", + "hat": "laurel wreath", + "fur": "red", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3798, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "robot", + "fur": "pink", + "clothes": "biker vest", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3799, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "eyes": "scumbag", + "mouth": "grin", + "fur": "pink", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3800, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3801, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "earring": "silver stud", + "background": "aquamarine", + "hat": "spinner hat", + "fur": "black", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3802, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "black", + "clothes": "biker vest", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3803, + "metadata_dict": { + "eyes": "robot", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3804, + "metadata_dict": { + "fur": "dmt", + "eyes": "heart", + "background": "orange", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3805, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "clothes": "smoking jacket", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3806, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "hat": "baby's bonnet", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3807, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "brown", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3808, + "metadata_dict": { + "earring": "gold hoop", + "hat": "fez", + "mouth": "phoneme vuh", + "fur": "pink", + "background": "orange", + "clothes": "tanktop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3809, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "earring": "gold stud", + "clothes": "tie dye", + "hat": "short mohawk", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3810, + "metadata_dict": { + "fur": "tan", + "hat": "girl's hair pink", + "clothes": "sailor shirt", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3811, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "background": "purple", + "fur": "dark brown", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3812, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "rainbow suspenders", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3813, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3814, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored party horn", + "eyes": "bloodshot", + "clothes": "prom dress", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3815, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "clothes": "black t", + "hat": "fez", + "background": "blue", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3816, + "metadata_dict": { + "mouth": "grin", + "hat": "baby's bonnet", + "background": "orange", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3817, + "metadata_dict": { + "eyes": "heart", + "hat": "fez", + "fur": "pink", + "clothes": "smoking jacket", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3818, + "metadata_dict": { + "background": "orange", + "eyes": "bored", + "clothes": "admirals coat", + "hat": "bowler", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3819, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "beanie", + "fur": "cheetah", + "background": "yellow", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3820, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "bandolier", + "earring": "silver hoop", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3821, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "clothes": "bayc t black", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3822, + "metadata_dict": { + "fur": "tan", + "hat": "seaman's hat", + "background": "blue", + "clothes": "tanktop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3823, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "party hat 1", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3824, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "dumbfounded", + "fur": "black", + "earring": "gold stud", + "hat": "short mohawk", + "background": "gray", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3825, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "fur": "black", + "clothes": "tuxedo tee", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3826, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "blue", + "mouth": "bored", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3827, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven pipe", + "hat": "vietnam era helmet", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3828, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "golden brown", + "mouth": "bored unshaven pipe", + "clothes": "guayabera", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3829, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "eyepatch", + "mouth": "bored party horn" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3830, + "metadata_dict": { + "fur": "cream", + "eyes": "zombie", + "mouth": "rage", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3831, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "black holes t", + "earring": "gold hoop", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3832, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "horns", + "clothes": "black holes t", + "background": "gray", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3833, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3834, + "metadata_dict": { + "hat": "s&m hat", + "fur": "gray", + "eyes": "bloodshot", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3835, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "clothes": "lab coat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3836, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "work vest", + "background": "orange", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3837, + "metadata_dict": { + "hat": "stuntman helmet", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "bayc t black", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3838, + "metadata_dict": { + "hat": "fez", + "fur": "dark brown", + "background": "yellow", + "eyes": "crazy", + "mouth": "phoneme wah", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3839, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "clothes": "tie dye", + "fur": "noise", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3840, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3841, + "metadata_dict": { + "earring": "gold stud", + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "eyes": "cyborg", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3842, + "metadata_dict": { + "eyes": "heart", + "hat": "fez", + "fur": "cheetah", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3843, + "metadata_dict": { + "background": "gray", + "fur": "death bot", + "mouth": "bored", + "eyes": "crazy", + "hat": "halo", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3844, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "red", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3845, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "earring": "gold hoop", + "background": "blue", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3846, + "metadata_dict": { + "eyes": "heart", + "hat": "irish boho", + "clothes": "black holes t", + "fur": "red", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3847, + "metadata_dict": { + "eyes": "closed", + "hat": "laurel wreath", + "fur": "golden brown", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3848, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "rage", + "fur": "black", + "clothes": "biker vest", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3849, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "earring": "gold hoop", + "mouth": "phoneme vuh", + "hat": "army hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3850, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "grin diamond grill", + "fur": "pink", + "eyes": "bored", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3851, + "metadata_dict": { + "hat": "party hat 2", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3852, + "metadata_dict": { + "eyes": "scumbag", + "fur": "gray", + "background": "orange", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3853, + "metadata_dict": { + "earring": "silver stud", + "eyes": "bloodshot", + "clothes": "toga", + "mouth": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3854, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "fur": "black", + "background": "gray", + "hat": "vietnam era helmet", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3855, + "metadata_dict": { + "fur": "golden brown", + "eyes": "heart", + "mouth": "grin", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3856, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3857, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "hat": "fez", + "background": "blue", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3858, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "clothes": "guayabera", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3859, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "earring": "silver stud", + "background": "blue", + "fur": "black", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3860, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "red", + "clothes": "tanktop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3861, + "metadata_dict": { + "clothes": "leather jacket", + "fur": "black", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3862, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored dagger", + "hat": "fisherman's hat", + "fur": "cream", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3863, + "metadata_dict": { + "background": "orange", + "clothes": "guayabera", + "mouth": "bored", + "fur": "solid gold", + "eyes": "sleepy", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3864, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "bored bubblegum", + "fur": "noise", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3865, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "earring": "silver stud", + "background": "orange", + "hat": "bayc hat red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3866, + "metadata_dict": { + "fur": "dark brown", + "background": "orange", + "eyes": "bloodshot", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3867, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3868, + "metadata_dict": { + "eyes": "heart", + "clothes": "tie dye", + "fur": "dark brown", + "mouth": "bored cigarette", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3869, + "metadata_dict": { + "fur": "brown", + "hat": "fez", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3870, + "metadata_dict": { + "fur": "cream", + "mouth": "grin diamond grill", + "hat": "fez", + "clothes": "biker vest", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3871, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "black holes t", + "mouth": "phoneme vuh", + "earring": "silver stud", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3872, + "metadata_dict": { + "eyes": "zombie", + "clothes": "sailor shirt", + "background": "blue", + "fur": "pink", + "mouth": "small grin", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3873, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "hat": "faux hawk", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3874, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "background": "gray", + "eyes": "coins", + "clothes": "smoking jacket", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3875, + "metadata_dict": { + "mouth": "grin", + "fur": "dmt", + "eyes": "3d", + "hat": "short mohawk", + "clothes": "toga", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3876, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "background": "blue", + "clothes": "tuxedo tee", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3877, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3878, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "horns", + "eyes": "zombie", + "earring": "silver hoop", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3879, + "metadata_dict": { + "hat": "sushi chef headband", + "earring": "diamond stud", + "fur": "red", + "background": "blue", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3880, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3881, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "fur": "black", + "clothes": "guayabera", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3882, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "eyes": "eyepatch", + "mouth": "grin", + "fur": "dark brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3883, + "metadata_dict": { + "hat": "stuntman helmet", + "clothes": "work vest", + "background": "orange", + "mouth": "bored", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3884, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "gray", + "fur": "black", + "hat": "spinner hat", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3885, + "metadata_dict": { + "clothes": "striped tee", + "fur": "dmt", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "silver stud", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3886, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "leather jacket", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3887, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "prison jumpsuit", + "mouth": "phoneme vuh", + "fur": "pink", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3888, + "metadata_dict": { + "background": "new punk blue", + "mouth": "jovial", + "fur": "black", + "clothes": "sleeveless logo t", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3889, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "black", + "mouth": "bored pizza", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3890, + "metadata_dict": { + "fur": "tan", + "eyes": "holographic", + "hat": "bandana blue", + "clothes": "sleeveless t", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3891, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "pink", + "eyes": "bored", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3892, + "metadata_dict": { + "background": "blue", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "cross", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3893, + "metadata_dict": { + "fur": "brown", + "hat": "fez", + "background": "gray", + "mouth": "bored", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3894, + "metadata_dict": { + "eyes": "3d", + "background": "orange", + "fur": "pink", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3895, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "bayc t red", + "fur": "dmt", + "hat": "fez", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3896, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "hat": "party hat 1", + "clothes": "biker vest", + "mouth": "small grin", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3897, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "tan", + "mouth": "grin", + "background": "aquamarine", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3898, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "fez", + "clothes": "smoking jacket", + "fur": "dark brown", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3899, + "metadata_dict": { + "clothes": "sailor shirt", + "background": "blue", + "fur": "pink", + "hat": "bowler", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3900, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "irish boho", + "clothes": "black t", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3901, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3902, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "background": "orange", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigar", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3903, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3904, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "gray", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3905, + "metadata_dict": { + "eyes": "coins", + "clothes": "bone necklace", + "background": "yellow", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3906, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "background": "yellow", + "eyes": "bored", + "hat": "vietnam era helmet", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3907, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "gold hoop", + "clothes": "sailor shirt", + "eyes": "robot", + "fur": "dark brown", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3908, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "clothes": "cowboy shirt", + "background": "blue", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3909, + "metadata_dict": { + "background": "orange", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3910, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "clothes": "tanktop", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3911, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "stuntman helmet", + "background": "aquamarine", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3912, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "hat": "beanie", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3913, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme vuh", + "background": "aquamarine", + "earring": "silver stud", + "hat": "spinner hat", + "eyes": "bored", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3914, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "grin diamond grill", + "fur": "black", + "background": "gray", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3915, + "metadata_dict": { + "eyes": "heart", + "hat": "sushi chef headband", + "mouth": "grin", + "clothes": "sailor shirt", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3916, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "hat": "party hat 1", + "eyes": "robot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3917, + "metadata_dict": { + "hat": "party hat 2", + "fur": "golden brown", + "clothes": "black suit", + "background": "aquamarine", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3918, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "fur": "black", + "background": "purple", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3919, + "metadata_dict": { + "fur": "tan", + "clothes": "bandolier", + "mouth": "bored bubblegum", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3920, + "metadata_dict": { + "fur": "tan", + "mouth": "rage", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3921, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3922, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "fur": "dark brown", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3923, + "metadata_dict": { + "eyes": "heart", + "clothes": "blue dress", + "mouth": "bored unshaven pipe", + "background": "orange", + "earring": "silver hoop", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3924, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "golden brown", + "earring": "gold stud", + "background": "orange", + "eyes": "3d", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3925, + "metadata_dict": { + "clothes": "striped tee", + "hat": "fez", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3926, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "fur": "gray", + "background": "blue", + "hat": "short mohawk", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3927, + "metadata_dict": { + "mouth": "discomfort", + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3928, + "metadata_dict": { + "eyes": "heart", + "background": "orange", + "earring": "silver hoop", + "fur": "solid gold", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3929, + "metadata_dict": { + "fur": "black", + "earring": "silver hoop", + "clothes": "tanktop", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3930, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "tan", + "hat": "baby's bonnet", + "background": "orange", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3931, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "fur": "brown", + "eyes": "robot", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3932, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "holographic", + "fur": "golden brown", + "hat": "army hat", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3933, + "metadata_dict": { + "hat": "irish boho", + "fur": "golden brown", + "clothes": "work vest", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3934, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "phoneme vuh", + "fur": "black", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3935, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3936, + "metadata_dict": { + "background": "blue", + "clothes": "tie dye", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "hat": "vietnam era helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3937, + "metadata_dict": { + "mouth": "phoneme l", + "background": "blue", + "fur": "black", + "hat": "short mohawk", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3938, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "zombie", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3939, + "metadata_dict": { + "mouth": "dumbfounded", + "earring": "silver stud", + "fur": "dark brown", + "background": "yellow", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3940, + "metadata_dict": { + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "mouth": "bored unshaven cigar", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3941, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "seaman's hat", + "earring": "silver stud", + "fur": "red", + "background": "blue", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3942, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "king's crown", + "fur": "black", + "background": "yellow", + "clothes": "stunt jacket", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3943, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black suit", + "hat": "party hat 1", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3944, + "metadata_dict": { + "eyes": "robot", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3945, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "dumbfounded", + "eyes": "3d", + "background": "orange", + "hat": "short mohawk", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3946, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "mouth": "jovial", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3947, + "metadata_dict": { + "eyes": "heart", + "hat": "stuntman helmet", + "earring": "silver stud", + "fur": "pink", + "clothes": "biker vest", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3948, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "bayc t black", + "fur": "brown", + "eyes": "sleepy", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3949, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "gray", + "eyes": "coins", + "background": "aquamarine", + "clothes": "smoking jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3950, + "metadata_dict": { + "eyes": "heart", + "clothes": "puffy vest", + "fur": "black", + "mouth": "tongue out", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3951, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "striped tee", + "eyes": "scumbag", + "fur": "cream", + "mouth": "grin", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3952, + "metadata_dict": { + "fur": "cream", + "eyes": "robot", + "hat": "short mohawk", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3953, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "eyes": "crazy", + "fur": "cream", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3954, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "clothes": "sailor shirt", + "earring": "silver stud", + "mouth": "bored unshaven cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3955, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "mouth": "tongue out", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3956, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "hat": "short mohawk", + "clothes": "toga", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3957, + "metadata_dict": { + "fur": "golden brown", + "background": "gray", + "hat": "vietnam era helmet", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3958, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "work vest", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3959, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "hat": "safari", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3960, + "metadata_dict": { + "mouth": "rage", + "eyes": "3d", + "fur": "cheetah", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3961, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "sushi chef headband", + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3962, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "golden brown", + "clothes": "black t", + "earring": "gold stud", + "hat": "beanie", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3963, + "metadata_dict": { + "fur": "black", + "clothes": "smoking jacket", + "mouth": "bored", + "background": "purple", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3964, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3965, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "clothes": "tuxedo tee", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3966, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "eyes": "robot", + "background": "blue", + "hat": "short mohawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3967, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "hat": "sea captain's hat", + "mouth": "bored unshaven cigar", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3968, + "metadata_dict": { + "fur": "gray", + "clothes": "admirals coat", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3969, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "space suit", + "hat": "army hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3970, + "metadata_dict": { + "clothes": "striped tee", + "background": "aquamarine", + "earring": "silver hoop", + "fur": "death bot", + "eyes": "sleepy", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3971, + "metadata_dict": { + "hat": "sushi chef headband", + "earring": "diamond stud", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3972, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "clothes": "guayabera", + "hat": "commie hat", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3973, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "hat": "spinner hat", + "clothes": "biker vest", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3974, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "clothes": "sleeveless t", + "mouth": "grin", + "earring": "gold hoop", + "background": "orange", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3975, + "metadata_dict": { + "eyes": "sad", + "mouth": "dumbfounded", + "background": "blue", + "fur": "black", + "earring": "silver hoop", + "hat": "fisherman's hat", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3976, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "clothes": "sailor shirt", + "hat": "short mohawk", + "eyes": "bored", + "background": "gray", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3977, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "gray", + "earring": "gold hoop", + "background": "blue", + "eyes": "robot", + "clothes": "bayc t black", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3978, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "dark brown", + "eyes": "bored", + "clothes": "sleeveless logo t", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3979, + "metadata_dict": { + "eyes": "heart", + "clothes": "prison jumpsuit", + "hat": "fez", + "background": "aquamarine", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3980, + "metadata_dict": { + "fur": "cream", + "clothes": "leather jacket", + "eyes": "bloodshot", + "hat": "girl's hair short", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3981, + "metadata_dict": { + "fur": "pink", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3982, + "metadata_dict": { + "clothes": "striped tee", + "earring": "gold hoop", + "mouth": "bored party horn", + "background": "aquamarine", + "fur": "black", + "hat": "army hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3983, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3984, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "scumbag", + "fur": "gray", + "background": "orange", + "hat": "girl's hair short", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3985, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored cigarette", + "fur": "cream", + "hat": "army hat", + "background": "purple", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3986, + "metadata_dict": { + "eyes": "heart", + "hat": "s&m hat", + "background": "gray", + "mouth": "grin", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3987, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "mouth": "dumbfounded", + "clothes": "leather jacket", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3988, + "metadata_dict": { + "fur": "tan", + "eyes": "bloodshot", + "hat": "faux hawk", + "background": "yellow", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3989, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3990, + "metadata_dict": { + "hat": "horns", + "background": "purple", + "earring": "silver hoop", + "fur": "death bot", + "clothes": "stunt jacket", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3991, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin multicolored", + "fur": "golden brown", + "background": "yellow", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3992, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "mouth": "dumbfounded", + "hat": "spinner hat", + "fur": "pink", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3993, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "background": "orange", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3994, + "metadata_dict": { + "eyes": "heart", + "clothes": "biker vest", + "fur": "dark brown", + "background": "orange", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3995, + "metadata_dict": { + "background": "blue", + "fur": "black", + "hat": "commie hat", + "mouth": "bored cigar", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3996, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "tongue out", + "fur": "cheetah", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3997, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "dumbfounded", + "background": "blue", + "hat": "beanie", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3998, + "metadata_dict": { + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "stunt jacket", + "mouth": "bored", + "background": "army green", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3999, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "baby's bonnet", + "earring": "silver stud", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4000, + "metadata_dict": { + "mouth": "grin", + "clothes": "stunt jacket", + "eyes": "bloodshot", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4001, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "striped tee", + "mouth": "dumbfounded", + "fur": "pink", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4002, + "metadata_dict": { + "fur": "golden brown", + "background": "purple", + "hat": "commie hat", + "earring": "silver hoop", + "eyes": "crazy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4003, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "striped tee", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "silver hoop", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4004, + "metadata_dict": { + "fur": "dmt", + "hat": "fez", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4005, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "hat": "cowboy hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4006, + "metadata_dict": { + "earring": "silver stud", + "background": "aquamarine", + "fur": "dark brown", + "hat": "army hat", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4007, + "metadata_dict": { + "clothes": "black holes t", + "fur": "gray", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4008, + "metadata_dict": { + "clothes": "kings robe", + "hat": "girl's hair pink", + "mouth": "rage", + "fur": "dark brown", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4009, + "metadata_dict": { + "background": "orange", + "hat": "short mohawk", + "eyes": "bloodshot", + "earring": "silver hoop", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4010, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "mouth": "phoneme vuh", + "earring": "gold stud", + "hat": "safari", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4011, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4012, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "rage", + "fur": "brown", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4013, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "work vest", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4014, + "metadata_dict": { + "clothes": "black suit", + "eyes": "bored", + "hat": "bayc hat red", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4015, + "metadata_dict": { + "eyes": "holographic", + "clothes": "caveman pelt", + "fur": "golden brown", + "hat": "girl's hair pink", + "mouth": "small grin", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4016, + "metadata_dict": { + "clothes": "bone necklace", + "fur": "black", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4017, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "background": "purple", + "clothes": "guayabera", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4018, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "new punk blue", + "eyes": "blindfold", + "hat": "short mohawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4019, + "metadata_dict": { + "fur": "cream", + "mouth": "rage", + "clothes": "tuxedo tee", + "hat": "bowler", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4020, + "metadata_dict": { + "eyes": "scumbag", + "background": "aquamarine", + "fur": "black", + "mouth": "small grin", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4021, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "sleeveless t", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4022, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven cigarette", + "fur": "dark brown", + "clothes": "tanktop", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4023, + "metadata_dict": { + "mouth": "rage", + "clothes": "leather jacket", + "background": "orange", + "hat": "bowler", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4024, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "background": "orange", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4025, + "metadata_dict": { + "background": "blue", + "mouth": "bored", + "fur": "robot", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4026, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "eyes": "scumbag", + "hat": "fez", + "fur": "black", + "earring": "silver hoop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4027, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "background": "blue", + "earring": "silver hoop", + "hat": "faux hawk", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4028, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "earring": "diamond stud", + "clothes": "rainbow suspenders", + "background": "gray", + "fur": "white", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4029, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "clothes": "black t", + "mouth": "jovial", + "background": "aquamarine", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4030, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "earring": "gold hoop", + "mouth": "rage", + "fur": "brown", + "background": "yellow", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4031, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "vietnam era helmet", + "earring": "gold stud", + "mouth": "small grin", + "background": "yellow", + "clothes": "stunt jacket", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4032, + "metadata_dict": { + "mouth": "discomfort", + "hat": "horns", + "clothes": "leather jacket", + "fur": "black", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4033, + "metadata_dict": { + "background": "gray", + "eyes": "coins", + "clothes": "bayc t black", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4034, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "tan", + "clothes": "black t", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4035, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "earring": "diamond stud", + "fur": "pink", + "eyes": "sleepy", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4036, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "puffy vest", + "hat": "fez", + "fur": "brown", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4037, + "metadata_dict": { + "clothes": "tie dye", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4038, + "metadata_dict": { + "fur": "golden brown", + "hat": "short mohawk", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4039, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "mouth": "bored", + "fur": "cream" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4040, + "metadata_dict": { + "background": "orange", + "hat": "army hat", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4041, + "metadata_dict": { + "fur": "red", + "hat": "bayc flipped brim", + "background": "yellow", + "mouth": "bored", + "clothes": "hip hop", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4042, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "hat": "faux hawk", + "background": "blue", + "mouth": "tongue out", + "clothes": "bone necklace", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4043, + "metadata_dict": { + "mouth": "grin", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4044, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "fur": "red", + "hat": "bayc flipped brim", + "eyes": "bored", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4045, + "metadata_dict": { + "fur": "golden brown", + "clothes": "tweed suit", + "hat": "bayc flipped brim", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4046, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "scumbag", + "fur": "cream", + "earring": "gold hoop", + "clothes": "sailor shirt", + "hat": "short mohawk", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4047, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "rage", + "fur": "red", + "background": "purple", + "clothes": "biker vest", + "hat": "army hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4048, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "horns", + "earring": "gold hoop", + "clothes": "rainbow suspenders", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4049, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "black", + "background": "orange", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4050, + "metadata_dict": { + "fur": "tan", + "clothes": "tweed suit", + "mouth": "dumbfounded", + "background": "orange", + "hat": "army hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4051, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4052, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "eyes": "bored", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4053, + "metadata_dict": { + "clothes": "cowboy shirt", + "fur": "black", + "eyes": "bored", + "background": "gray", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4054, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "clothes": "lumberjack shirt", + "fur": "dmt", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4055, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "earring": "silver stud", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "phoneme wah", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4056, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "mouth": "rage", + "earring": "gold stud", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4057, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "pink", + "background": "yellow", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4058, + "metadata_dict": { + "clothes": "bandolier", + "fur": "dmt", + "earring": "diamond stud", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4059, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "phoneme vuh", + "background": "gray", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4060, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "hat": "fez", + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4061, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "earring": "gold hoop", + "eyes": "3d", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4062, + "metadata_dict": { + "eyes": "robot", + "background": "orange", + "clothes": "tuxedo tee", + "hat": "faux hawk", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4063, + "metadata_dict": { + "fur": "cream", + "hat": "irish boho", + "mouth": "jovial", + "clothes": "guayabera", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4064, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "dumbfounded", + "hat": "beanie", + "clothes": "guayabera", + "earring": "cross", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4065, + "metadata_dict": { + "background": "new punk blue", + "fur": "cheetah", + "mouth": "bored", + "clothes": "hip hop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4066, + "metadata_dict": { + "hat": "king's crown", + "mouth": "dumbfounded", + "background": "orange", + "eyes": "sleepy", + "fur": "white", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4067, + "metadata_dict": { + "mouth": "bored dagger", + "earring": "diamond stud", + "clothes": "black t", + "background": "blue", + "fur": "black", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4068, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "silver stud", + "fur": "pink", + "eyes": "bored", + "background": "gray", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4069, + "metadata_dict": { + "eyes": "heart", + "background": "orange", + "fur": "white", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4070, + "metadata_dict": { + "background": "yellow", + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4071, + "metadata_dict": { + "eyes": "heart", + "hat": "girl's hair pink", + "background": "yellow", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4072, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "clothes": "tweed suit", + "fur": "brown", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4073, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "leather jacket", + "earring": "silver hoop", + "hat": "beanie", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4074, + "metadata_dict": { + "background": "new punk blue", + "fur": "brown", + "hat": "girl's hair pink", + "eyes": "3d", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4075, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "gray", + "clothes": "sleeveless logo t", + "fur": "brown", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4076, + "metadata_dict": { + "background": "new punk blue", + "hat": "irish boho", + "earring": "gold hoop", + "clothes": "tuxedo tee", + "fur": "cheetah", + "mouth": "bored cigarette", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4077, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "blue", + "hat": "fez", + "background": "blue", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4078, + "metadata_dict": { + "mouth": "grin", + "fur": "cheetah", + "clothes": "tanktop", + "background": "gray", + "hat": "commie hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4079, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "gray", + "clothes": "black t", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4080, + "metadata_dict": { + "fur": "red", + "background": "gray", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4081, + "metadata_dict": { + "fur": "golden brown", + "hat": "bowler", + "mouth": "bored cigarette", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4082, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "gold hoop", + "hat": "prussian helmet", + "background": "purple", + "clothes": "smoking jacket", + "fur": "dark brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4083, + "metadata_dict": { + "clothes": "striped tee", + "fur": "black", + "background": "gray", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4084, + "metadata_dict": { + "mouth": "discomfort", + "hat": "baby's bonnet", + "earring": "silver stud", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4085, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "earring": "gold hoop", + "eyes": "sleepy", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4086, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "scumbag", + "mouth": "dumbfounded", + "background": "blue", + "fur": "dark brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4087, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "black holes t", + "hat": "baby's bonnet", + "earring": "gold stud", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4088, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "grin multicolored", + "background": "orange", + "clothes": "biker vest", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4089, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "eyes": "hypnotized", + "hat": "fisherman's hat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4090, + "metadata_dict": { + "fur": "dmt", + "mouth": "bored unshaven pipe", + "eyes": "robot", + "clothes": "guayabera", + "hat": "cowboy hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4091, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored party horn", + "hat": "bowler", + "fur": "dark brown", + "clothes": "lab coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4092, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "silver stud", + "hat": "girl's hair short", + "background": "purple", + "fur": "white", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4093, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "mouth": "grin", + "hat": "seaman's hat", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4094, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "background": "aquamarine", + "earring": "gold stud", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4095, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "background": "aquamarine", + "fur": "red", + "eyes": "bloodshot", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4096, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "hat": "prussian helmet", + "earring": "silver stud", + "mouth": "phoneme vuh", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4097, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4098, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "fur": "gray", + "earring": "silver stud", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4099, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "baby's bonnet", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4100, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme ooo", + "earring": "silver stud", + "background": "blue", + "fur": "cheetah", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4101, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "noise", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4102, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "dark brown", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4103, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "tie dye", + "mouth": "tongue out", + "fur": "brown", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4104, + "metadata_dict": { + "earring": "silver stud", + "fur": "pink", + "eyes": "bored", + "mouth": "bored", + "background": "gray", + "hat": "commie hat", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4105, + "metadata_dict": { + "eyes": "heart", + "background": "gray", + "mouth": "bored", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4106, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "dumbfounded", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4107, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "eyes": "scumbag", + "background": "aquamarine", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4108, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "black suit", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4109, + "metadata_dict": { + "mouth": "jovial", + "fur": "brown", + "background": "yellow", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4110, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "irish boho", + "background": "orange", + "fur": "dark brown", + "clothes": "hip hop", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4111, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4112, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bone tee", + "hat": "cowboy hat", + "background": "gray", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4113, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "earring": "diamond stud", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4114, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "mouth": "bored party horn", + "eyes": "robot", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4115, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "earring": "silver stud", + "background": "orange", + "fur": "brown", + "hat": "bunny ears", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4116, + "metadata_dict": { + "hat": "party hat 2", + "fur": "cream", + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4117, + "metadata_dict": { + "fur": "cream", + "hat": "s&m hat", + "clothes": "biker vest", + "eyes": "bored", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4118, + "metadata_dict": { + "mouth": "grin", + "fur": "cheetah", + "background": "gray", + "hat": "beanie", + "clothes": "caveman pelt", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4119, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "mouth": "bored unshaven cigarette", + "fur": "brown", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4120, + "metadata_dict": { + "earring": "gold hoop", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4121, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "phoneme vuh", + "clothes": "tie dye", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4122, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "work vest", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4123, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4124, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "irish boho", + "fur": "brown", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4125, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "hat": "seaman's hat", + "earring": "silver stud", + "clothes": "smoking jacket", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4126, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "gray", + "mouth": "tongue out", + "background": "gray", + "clothes": "stunt jacket", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4127, + "metadata_dict": { + "hat": "s&m hat", + "fur": "dmt", + "mouth": "rage", + "clothes": "admirals coat", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4128, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored unshaven cigar", + "eyes": "sleepy", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4129, + "metadata_dict": { + "clothes": "blue dress", + "fur": "golden brown", + "earring": "silver stud", + "background": "orange", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4130, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "sailor shirt", + "fur": "black", + "background": "orange", + "mouth": "bored pizza", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4131, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "bayc flipped brim", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4132, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "mouth": "phoneme vuh", + "background": "gray", + "hat": "bowler", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4133, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "brown", + "clothes": "vietnam jacket", + "hat": "army hat", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4134, + "metadata_dict": { + "clothes": "work vest", + "mouth": "bored pipe", + "fur": "pink", + "hat": "fisherman's hat", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4135, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "crazy", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4136, + "metadata_dict": { + "hat": "stuntman helmet", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4137, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "cheetah", + "background": "purple", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4138, + "metadata_dict": { + "mouth": "grin", + "clothes": "rainbow suspenders", + "background": "blue", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4139, + "metadata_dict": { + "fur": "brown", + "earring": "diamond stud", + "hat": "short mohawk", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4140, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "tie dye", + "mouth": "tongue out", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4141, + "metadata_dict": { + "eyes": "closed", + "hat": "fez", + "mouth": "dumbfounded", + "earring": "silver stud", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4142, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "background": "purple", + "clothes": "toga", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4143, + "metadata_dict": { + "eyes": "coins", + "mouth": "rage", + "fur": "pink", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4144, + "metadata_dict": { + "background": "blue", + "mouth": "bored bubblegum", + "eyes": "sleepy", + "fur": "white", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4145, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "eyes": "robot", + "earring": "silver hoop", + "background": "purple", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4146, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "fur": "pink", + "background": "orange", + "hat": "army hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4147, + "metadata_dict": { + "background": "aquamarine", + "fur": "noise", + "eyes": "bored", + "clothes": "bone necklace", + "hat": "bunny ears", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4148, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored unshaven pipe", + "fur": "black", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4149, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "black", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4150, + "metadata_dict": { + "background": "orange", + "mouth": "phoneme wah", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4151, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "hat": "party hat 1", + "clothes": "biker vest", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4152, + "metadata_dict": { + "clothes": "striped tee", + "fur": "gray", + "earring": "diamond stud", + "background": "gray", + "mouth": "bored", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4153, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "hat": "laurel wreath", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4154, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "gray", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4155, + "metadata_dict": { + "fur": "cheetah", + "background": "blue", + "mouth": "bored", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4156, + "metadata_dict": { + "fur": "golden brown", + "eyes": "3d", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4157, + "metadata_dict": { + "fur": "golden brown", + "clothes": "bayc t black", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4158, + "metadata_dict": { + "mouth": "jovial", + "clothes": "biker vest", + "eyes": "3d", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4159, + "metadata_dict": { + "fur": "cheetah", + "mouth": "bored", + "background": "army green", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4160, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "earring": "silver hoop", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4161, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "striped tee", + "eyes": "blindfold", + "fur": "black", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4162, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme l", + "fur": "golden brown", + "clothes": "tweed suit", + "hat": "stuntman helmet", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4163, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "golden brown", + "hat": "short mohawk", + "eyes": "bloodshot", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4164, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4165, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "earring": "silver stud", + "background": "blue", + "clothes": "tie dye", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4166, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "fur": "pink", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4167, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver hoop", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4168, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "3d", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4169, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "hat": "bayc flipped brim", + "clothes": "toga", + "fur": "death bot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4170, + "metadata_dict": { + "fur": "black", + "eyes": "3d", + "clothes": "bayc t black", + "earring": "silver hoop", + "hat": "girl's hair short", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4171, + "metadata_dict": { + "mouth": "phoneme wah", + "clothes": "smoking jacket", + "hat": "short mohawk", + "fur": "brown", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4172, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored unshaven cigarette", + "background": "purple", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4173, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "earring": "diamond stud", + "fur": "red", + "hat": "bunny ears", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4174, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "earring": "gold hoop", + "clothes": "biker vest", + "mouth": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4175, + "metadata_dict": { + "eyes": "x eyes", + "hat": "bayc hat black", + "background": "gray", + "fur": "brown", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4176, + "metadata_dict": { + "eyes": "closed", + "clothes": "tweed suit", + "mouth": "jovial", + "background": "gray", + "hat": "bowler", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4177, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black suit", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "hat": "bayc hat red", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4178, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "background": "aquamarine", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "guayabera", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4179, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "mouth": "bored unshaven kazoo", + "hat": "army hat", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4180, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "background": "yellow", + "eyes": "bored", + "clothes": "pimp coat", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4181, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "earring": "silver hoop", + "eyes": "bored", + "background": "gray", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4182, + "metadata_dict": { + "hat": "s&m hat", + "fur": "black", + "mouth": "small grin", + "earring": "silver hoop", + "background": "yellow", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4183, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "grin", + "eyes": "coins", + "clothes": "black t", + "earring": "silver stud", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4184, + "metadata_dict": { + "clothes": "tweed suit", + "fur": "black", + "background": "orange", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4185, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "background": "blue", + "eyes": "3d", + "earring": "cross", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4186, + "metadata_dict": { + "mouth": "discomfort", + "fur": "golden brown", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4187, + "metadata_dict": { + "eyes": "closed", + "fur": "dmt", + "mouth": "bored unshaven bubblegum", + "hat": "faux hawk", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4188, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "background": "gray", + "fur": "robot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4189, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "earring": "cross", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4190, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "fur": "golden brown", + "mouth": "phoneme vuh", + "eyes": "bored", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4191, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "background": "blue", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4192, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4193, + "metadata_dict": { + "background": "aquamarine", + "hat": "spinner hat", + "clothes": "smoking jacket", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4194, + "metadata_dict": { + "background": "gray", + "earring": "silver stud", + "mouth": "bored pizza", + "fur": "brown", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4195, + "metadata_dict": { + "background": "gray", + "fur": "black", + "clothes": "smoking jacket", + "mouth": "bored unshaven cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4196, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "rainbow suspenders", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4197, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "blindfold", + "background": "orange", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4198, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "fez", + "mouth": "dumbfounded", + "fur": "red", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4199, + "metadata_dict": { + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4200, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "irish boho", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4201, + "metadata_dict": { + "hat": "girl's hair pink", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "clothes": "lab coat", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4202, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored cigarette", + "fur": "dark brown", + "eyes": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4203, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "bored unshaven party horn", + "background": "yellow", + "fur": "brown", + "hat": "bowler", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4204, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4205, + "metadata_dict": { + "eyes": "closed", + "background": "orange", + "fur": "brown", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4206, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "wool turtleneck", + "mouth": "jovial", + "background": "orange", + "eyes": "bloodshot", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4207, + "metadata_dict": { + "eyes": "holographic", + "fur": "golden brown", + "mouth": "bored bubblegum", + "earring": "silver hoop", + "clothes": "tanktop", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4208, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "golden brown", + "mouth": "grin", + "earring": "gold hoop", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4209, + "metadata_dict": { + "clothes": "blue dress", + "background": "blue", + "hat": "short mohawk", + "mouth": "tongue out", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4210, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "lumberjack shirt", + "fur": "black", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4211, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "eyes": "robot", + "fur": "black", + "earring": "silver hoop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4212, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "background": "orange", + "eyes": "bloodshot", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4213, + "metadata_dict": { + "eyes": "holographic", + "fur": "cream", + "clothes": "black t", + "mouth": "phoneme vuh", + "earring": "gold stud", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4214, + "metadata_dict": { + "eyes": "holographic", + "mouth": "dumbfounded", + "background": "orange", + "fur": "noise", + "hat": "cowboy hat", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4215, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "eyepatch", + "mouth": "grin diamond grill", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4216, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "aquamarine", + "fur": "noise", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4217, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "bone tee", + "fur": "golden brown", + "background": "gray", + "eyes": "cyborg", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4218, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "king's crown", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4219, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "blindfold", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4220, + "metadata_dict": { + "hat": "spinner hat", + "mouth": "small grin", + "fur": "white", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4221, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "fur": "pink", + "eyes": "angry", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4222, + "metadata_dict": { + "fur": "pink", + "eyes": "bored", + "hat": "girl's hair short", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4223, + "metadata_dict": { + "mouth": "phoneme wah", + "earring": "silver stud", + "clothes": "biker vest", + "fur": "brown", + "background": "purple", + "eyes": "angry", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4224, + "metadata_dict": { + "fur": "gray", + "background": "aquamarine", + "clothes": "work vest", + "mouth": "bored bubblegum", + "hat": "cowboy hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4225, + "metadata_dict": { + "mouth": "bored cigarette", + "clothes": "prison jumpsuit", + "background": "blue", + "hat": "fisherman's hat", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4226, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "fur": "dark brown", + "hat": "army hat", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4227, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "fur": "dark brown", + "hat": "cowboy hat", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4228, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "mouth": "dumbfounded", + "fur": "brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4229, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "fur": "brown", + "background": "purple", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4230, + "metadata_dict": { + "fur": "tan", + "hat": "horns", + "mouth": "bored party horn", + "background": "orange", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4231, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "eyes": "sunglasses", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4232, + "metadata_dict": { + "clothes": "black holes t", + "background": "blue", + "fur": "black", + "mouth": "bored unshaven cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4233, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "earring": "silver stud", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4234, + "metadata_dict": { + "hat": "sea captain's hat", + "mouth": "jovial", + "background": "blue", + "eyes": "crazy", + "fur": "zombie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4235, + "metadata_dict": { + "mouth": "bored bubblegum", + "clothes": "smoking jacket", + "eyes": "3d", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4236, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4237, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "hawaiian", + "fur": "dark brown", + "hat": "girl's hair short", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4238, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin diamond grill", + "background": "orange", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4239, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "black", + "mouth": "bored pizza", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4240, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored unshaven pipe", + "clothes": "sleeveless logo t", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4241, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4242, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "earring": "gold stud", + "fur": "dark brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4243, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored party horn", + "background": "blue", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4244, + "metadata_dict": { + "fur": "brown", + "background": "blue", + "mouth": "bored party horn", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4245, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "mouth": "bored unshaven", + "hat": "party hat 1", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4246, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "lumberjack shirt", + "background": "aquamarine", + "hat": "cowboy hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4247, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "dumbfounded", + "fur": "dark brown", + "hat": "army hat", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4248, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "earring": "gold hoop", + "clothes": "tweed suit", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4249, + "metadata_dict": { + "clothes": "bandolier", + "hat": "sushi chef headband", + "background": "blue", + "fur": "brown", + "mouth": "phoneme wah", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4250, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "robot", + "fur": "black", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4251, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "hat": "fez", + "clothes": "biker vest", + "background": "orange", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4252, + "metadata_dict": { + "eyes": "zombie", + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4253, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "sleeveless t", + "hat": "spinner hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4254, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "kings robe", + "mouth": "bored unshaven", + "fur": "brown", + "earring": "gold stud", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4255, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "tongue out", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4256, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "red", + "clothes": "leather jacket", + "hat": "bayc flipped brim", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4257, + "metadata_dict": { + "background": "aquamarine", + "mouth": "jovial", + "fur": "black", + "clothes": "tie dye", + "hat": "faux hawk", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4258, + "metadata_dict": { + "eyes": "holographic", + "clothes": "blue dress", + "mouth": "grin", + "fur": "gray", + "background": "blue", + "earring": "gold stud", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4259, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "earring": "silver hoop", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4260, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "hat": "spinner hat", + "background": "blue", + "fur": "dark brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4261, + "metadata_dict": { + "clothes": "striped tee", + "earring": "silver stud", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4262, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored cigarette", + "earring": "gold stud", + "background": "orange", + "hat": "army hat", + "fur": "white", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4263, + "metadata_dict": { + "eyes": "coins", + "fur": "dark brown", + "hat": "bayc flipped brim", + "clothes": "bone necklace", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4264, + "metadata_dict": { + "clothes": "space suit", + "fur": "dmt", + "earring": "silver stud", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4265, + "metadata_dict": { + "eyes": "coins", + "hat": "fez", + "mouth": "grin diamond grill", + "clothes": "work vest", + "background": "blue", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4266, + "metadata_dict": { + "eyes": "blindfold", + "fur": "red", + "background": "blue", + "clothes": "smoking jacket", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4267, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "fur": "gray", + "eyes": "bored", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4268, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "pink", + "mouth": "small grin", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4269, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "eyes": "coins", + "fur": "black", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4270, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "hat": "sea captain's hat", + "clothes": "pimp coat", + "mouth": "bored unshaven cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4271, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "red", + "hat": "army hat", + "eyes": "bored", + "clothes": "sleeveless logo t", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4272, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "hat": "prussian helmet", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4273, + "metadata_dict": { + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored pizza", + "fur": "brown", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4274, + "metadata_dict": { + "background": "blue", + "eyes": "robot", + "hat": "bayc flipped brim", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4275, + "metadata_dict": { + "fur": "cream", + "hat": "horns", + "eyes": "hypnotized", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4276, + "metadata_dict": { + "hat": "bandana blue", + "eyes": "blindfold", + "background": "gray", + "clothes": "smoking jacket", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4277, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "dark brown", + "hat": "faux hawk", + "clothes": "sleeveless logo t", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4278, + "metadata_dict": { + "hat": "fez", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bloodshot", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4279, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "earring": "gold hoop", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4280, + "metadata_dict": { + "fur": "cream", + "eyes": "blindfold", + "hat": "fez", + "earring": "silver hoop", + "clothes": "toga", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4281, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "eyes": "blue beams", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4282, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "hat": "bandana blue", + "clothes": "rainbow suspenders", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4283, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "eyes": "bloodshot", + "hat": "short mohawk", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4284, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "mouth": "rage", + "background": "orange", + "earring": "silver hoop", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4285, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "fur": "golden brown", + "hat": "bunny ears", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4286, + "metadata_dict": { + "eyes": "closed", + "earring": "silver stud", + "fur": "black", + "clothes": "smoking jacket", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4287, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "service", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4288, + "metadata_dict": { + "mouth": "phoneme vuh", + "earring": "silver stud", + "clothes": "tie dye", + "background": "orange", + "fur": "dark brown", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4289, + "metadata_dict": { + "hat": "baby's bonnet", + "earring": "silver stud", + "eyes": "bloodshot", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4290, + "metadata_dict": { + "fur": "red", + "earring": "gold stud", + "eyes": "3d", + "hat": "beanie", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4291, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4292, + "metadata_dict": { + "hat": "s&m hat", + "fur": "gray", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4293, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "dark brown", + "background": "gray", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4294, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "background": "orange", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4295, + "metadata_dict": { + "fur": "cream", + "hat": "irish boho", + "clothes": "sleeveless t", + "mouth": "grin", + "background": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4296, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4297, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "sleeveless t", + "fur": "dmt", + "background": "blue", + "hat": "spinner hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4298, + "metadata_dict": { + "mouth": "grin", + "clothes": "tanktop", + "background": "orange", + "fur": "brown", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4299, + "metadata_dict": { + "clothes": "kings robe", + "fur": "tan", + "background": "blue", + "hat": "bunny ears", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4300, + "metadata_dict": { + "fur": "tan", + "clothes": "tie dye", + "eyes": "3d", + "hat": "spinner hat", + "background": "yellow", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4301, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4302, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "fur": "gray", + "hat": "short mohawk", + "earring": "silver hoop", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4303, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored cigarette", + "eyes": "blindfold", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4304, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "bunny ears", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4305, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "golden brown", + "eyes": "zombie", + "clothes": "tie dye", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4306, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "phoneme vuh", + "hat": "fisherman's hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4307, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4308, + "metadata_dict": { + "fur": "tan", + "mouth": "rage", + "background": "orange", + "hat": "commie hat", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4309, + "metadata_dict": { + "eyes": "holographic", + "fur": "golden brown", + "clothes": "lab coat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4310, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "fur": "gray", + "mouth": "small grin", + "earring": "silver hoop", + "eyes": "bored", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4311, + "metadata_dict": { + "eyes": "heart", + "earring": "gold hoop", + "mouth": "phoneme vuh", + "fur": "pink", + "background": "orange", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4312, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "hat": "horns", + "fur": "pink", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4313, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "commie hat", + "fur": "white", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4314, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "earring": "gold stud", + "fur": "dark brown", + "hat": "beanie", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4315, + "metadata_dict": { + "eyes": "closed", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "mouth": "tongue out", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4316, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "brown", + "hat": "vietnam era helmet", + "background": "purple", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4317, + "metadata_dict": { + "mouth": "grin", + "eyes": "3d", + "fur": "pink", + "background": "orange", + "hat": "short mohawk", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4318, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "hat": "seaman's hat", + "mouth": "small grin", + "fur": "brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4319, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "black t", + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4320, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "new punk blue", + "clothes": "bayc t red", + "fur": "tan", + "hat": "spinner hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4321, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "robot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4322, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "fur": "red", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4323, + "metadata_dict": { + "hat": "s&m hat", + "background": "yellow", + "eyes": "crazy", + "mouth": "bored cigar", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4324, + "metadata_dict": { + "eyes": "heart", + "hat": "s&m hat", + "mouth": "grin", + "background": "orange", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4325, + "metadata_dict": { + "clothes": "black t", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4326, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "background": "blue", + "fur": "brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4327, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "clothes": "work vest", + "mouth": "bored unshaven kazoo", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4328, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "earring": "gold hoop", + "hat": "spinner hat", + "background": "orange", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4329, + "metadata_dict": { + "earring": "diamond stud", + "mouth": "dumbfounded", + "eyes": "sleepy", + "fur": "dark brown", + "background": "purple", + "hat": "safari", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4330, + "metadata_dict": { + "clothes": "black t", + "mouth": "dumbfounded", + "background": "yellow", + "eyes": "sleepy", + "hat": "commie hat", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4331, + "metadata_dict": { + "background": "gray", + "clothes": "rainbow suspenders", + "mouth": "bored unshaven pipe", + "hat": "fisherman's hat", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4332, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "bored", + "background": "gray", + "hat": "halo", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4333, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "clothes": "prison jumpsuit", + "fur": "red", + "eyes": "robot", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4334, + "metadata_dict": { + "hat": "bayc flipped brim", + "eyes": "bored", + "mouth": "bored", + "background": "army green", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4335, + "metadata_dict": { + "clothes": "striped tee", + "earring": "diamond stud", + "mouth": "phoneme vuh", + "fur": "brown", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4336, + "metadata_dict": { + "clothes": "striped tee", + "earring": "gold hoop", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4337, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "hat": "horns", + "fur": "gray", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4338, + "metadata_dict": { + "hat": "party hat 1", + "earring": "gold stud", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4339, + "metadata_dict": { + "fur": "cream", + "hat": "prussian helmet", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4340, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "clothes": "biker vest", + "mouth": "small grin", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4341, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored kazoo", + "earring": "gold hoop", + "fur": "black", + "eyes": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4342, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "earring": "silver stud", + "hat": "fisherman's hat", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4343, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "closed", + "fur": "cream", + "mouth": "dumbfounded", + "background": "aquamarine", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4344, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "phoneme oh", + "hat": "s&m hat", + "fur": "brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4345, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "earring": "silver stud", + "mouth": "dumbfounded", + "eyes": "robot", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4346, + "metadata_dict": { + "fur": "red", + "eyes": "heart", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4347, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "stunt jacket", + "hat": "army hat", + "background": "gray", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4348, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "faux hawk", + "background": "purple", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4349, + "metadata_dict": { + "eyes": "coins", + "clothes": "sailor shirt", + "background": "aquamarine", + "hat": "vietnam era helmet", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4350, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "heart", + "fur": "black", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4351, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven party horn", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4352, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "red", + "hat": "girl's hair short", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4353, + "metadata_dict": { + "fur": "dmt", + "eyes": "bloodshot", + "hat": "bowler", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4354, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin", + "hat": "fez", + "fur": "brown", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4355, + "metadata_dict": { + "fur": "tan", + "mouth": "bored", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4356, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "background": "orange", + "eyes": "bloodshot", + "hat": "bayc hat red", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4357, + "metadata_dict": { + "hat": "irish boho", + "fur": "dmt", + "earring": "diamond stud", + "background": "blue", + "eyes": "bored", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4358, + "metadata_dict": { + "fur": "tan", + "background": "aquamarine", + "eyes": "bored", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4359, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "black", + "hat": "spinner hat", + "earring": "silver hoop", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4360, + "metadata_dict": { + "hat": "party hat 1", + "background": "aquamarine", + "clothes": "leather jacket", + "eyes": "3d", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4361, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "grin", + "clothes": "biker vest", + "earring": "silver hoop", + "hat": "girl's hair short", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4362, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "irish boho", + "fur": "pink", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4363, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "mouth": "grin multicolored", + "hat": "seaman's hat", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4364, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin", + "fur": "dark brown", + "eyes": "angry", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4365, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "scumbag", + "fur": "white", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4366, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "golden brown", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored", + "hat": "commie hat", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4367, + "metadata_dict": { + "eyes": "heart", + "clothes": "blue dress", + "hat": "party hat 1", + "mouth": "bored unshaven pipe", + "background": "blue", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4368, + "metadata_dict": { + "fur": "cream", + "clothes": "lumberjack shirt", + "eyes": "bloodshot", + "mouth": "bored pizza", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4369, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "scumbag", + "mouth": "dumbfounded", + "fur": "brown", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4370, + "metadata_dict": { + "fur": "tan", + "eyes": "3d", + "mouth": "bored", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4371, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "tan", + "hat": "horns", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4372, + "metadata_dict": { + "mouth": "grin", + "fur": "dark brown", + "eyes": "bored", + "clothes": "tanktop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4373, + "metadata_dict": { + "earring": "silver stud", + "mouth": "jovial", + "background": "blue", + "eyes": "bored", + "hat": "bowler", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4374, + "metadata_dict": { + "fur": "dmt", + "background": "aquamarine", + "eyes": "bored", + "mouth": "tongue out", + "hat": "beanie", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4375, + "metadata_dict": { + "mouth": "grin diamond grill", + "clothes": "biker vest", + "fur": "dark brown", + "eyes": "bored", + "hat": "cowboy hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4376, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "new punk blue", + "fur": "cream", + "hat": "bowler", + "eyes": "sleepy", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4377, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "background": "gray", + "hat": "bayc flipped brim", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4378, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "earring": "gold stud", + "hat": "fisherman's hat", + "clothes": "navy striped tee", + "mouth": "bored cigar", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4379, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "sleeveless t", + "mouth": "phoneme ooo", + "hat": "beanie", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4380, + "metadata_dict": { + "fur": "trippy", + "clothes": "black t", + "mouth": "bored unshaven pipe", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4381, + "metadata_dict": { + "mouth": "discomfort", + "fur": "golden brown", + "clothes": "leather jacket", + "background": "orange", + "hat": "bayc flipped brim", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4382, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "fur": "brown", + "background": "yellow", + "clothes": "stunt jacket", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4383, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "background": "aquamarine", + "hat": "fisherman's hat", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4384, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "girl's hair short", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4385, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "purple", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4386, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "bone necklace", + "fur": "death bot", + "hat": "safari", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4387, + "metadata_dict": { + "fur": "gray", + "clothes": "black t", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4388, + "metadata_dict": { + "eyes": "holographic", + "fur": "golden brown", + "clothes": "rainbow suspenders", + "hat": "fez", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4389, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "grin multicolored", + "earring": "gold hoop", + "hat": "fisherman's hat", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4390, + "metadata_dict": { + "background": "gray", + "eyes": "zombie", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4391, + "metadata_dict": { + "fur": "red", + "mouth": "jovial", + "background": "blue", + "hat": "bayc hat red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4392, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven", + "eyes": "3d", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4393, + "metadata_dict": { + "fur": "cheetah", + "eyes": "coins", + "hat": "prussian helmet", + "background": "aquamarine", + "mouth": "tongue out", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4394, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "background": "aquamarine", + "clothes": "leather jacket", + "mouth": "bored bubblegum", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4395, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "closed", + "clothes": "tie dye", + "earring": "gold stud", + "hat": "short mohawk", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4396, + "metadata_dict": { + "eyes": "coins", + "fur": "pink", + "earring": "silver hoop", + "mouth": "bored unshaven cigar", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4397, + "metadata_dict": { + "fur": "brown", + "mouth": "grin", + "eyes": "coins", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4398, + "metadata_dict": { + "fur": "gray", + "mouth": "rage", + "background": "blue", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4399, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "black", + "clothes": "toga", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4400, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme oh", + "background": "aquamarine", + "fur": "solid gold", + "hat": "fisherman's hat", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4401, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "striped tee", + "fur": "pink", + "earring": "silver hoop", + "hat": "fisherman's hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4402, + "metadata_dict": { + "mouth": "grin", + "fur": "red", + "background": "aquamarine", + "clothes": "tie dye", + "eyes": "bloodshot", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4403, + "metadata_dict": { + "hat": "laurel wreath", + "eyes": "coins", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4404, + "metadata_dict": { + "mouth": "bored cigarette", + "earring": "silver hoop", + "background": "gray", + "fur": "white", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4405, + "metadata_dict": { + "fur": "gray", + "background": "aquamarine", + "hat": "army hat", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4406, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "jovial", + "clothes": "biker vest", + "eyes": "bored", + "background": "purple", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4407, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "blue", + "clothes": "biker vest", + "earring": "silver hoop", + "hat": "vietnam era helmet", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4408, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "dark brown", + "eyes": "bored", + "clothes": "tanktop", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4409, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "bayc t red", + "eyes": "bloodshot", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4410, + "metadata_dict": { + "fur": "tan", + "earring": "silver hoop", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4411, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "black t", + "eyes": "bored", + "background": "gray", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4412, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "mouth": "jovial", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4413, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin multicolored", + "fur": "golden brown", + "background": "gray", + "earring": "silver hoop", + "clothes": "pimp coat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4414, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "tie dye", + "earring": "silver hoop", + "mouth": "tongue out", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4415, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored unshaven party horn", + "earring": "gold stud", + "background": "orange", + "hat": "commie hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4416, + "metadata_dict": { + "fur": "golden brown", + "hat": "girl's hair pink", + "clothes": "cowboy shirt", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4417, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "black holes t", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4418, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "laser eyes", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4419, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "clothes": "leather jacket", + "hat": "short mohawk", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4420, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "hat": "army hat", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4421, + "metadata_dict": { + "fur": "golden brown", + "background": "aquamarine", + "mouth": "bored pipe", + "hat": "beanie", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4422, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "orange", + "fur": "brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4423, + "metadata_dict": { + "fur": "cream", + "hat": "baby's bonnet", + "background": "orange", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4424, + "metadata_dict": { + "fur": "dark brown", + "hat": "commie hat", + "eyes": "bored", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4425, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "eyes": "holographic", + "fur": "red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4426, + "metadata_dict": { + "background": "orange", + "clothes": "prom dress", + "eyes": "sleepy", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4427, + "metadata_dict": { + "mouth": "phoneme l", + "background": "orange", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4428, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "work vest", + "fur": "black", + "mouth": "small grin", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4429, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "pink", + "earring": "silver hoop", + "background": "purple", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4430, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "golden brown", + "clothes": "bayc t black", + "mouth": "bored", + "earring": "silver hoop", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4431, + "metadata_dict": { + "fur": "gray", + "hat": "party hat 1", + "mouth": "phoneme vuh", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4432, + "metadata_dict": { + "background": "yellow", + "eyes": "bloodshot", + "mouth": "bored", + "fur": "brown", + "clothes": "prom dress", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4433, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored kazoo", + "eyes": "hypnotized", + "earring": "silver stud", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4434, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "fur": "gray", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4435, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin multicolored", + "fur": "red", + "background": "blue", + "clothes": "tuxedo tee", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4436, + "metadata_dict": { + "mouth": "dumbfounded", + "earring": "gold stud", + "fur": "dark brown", + "background": "purple", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4437, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "mouth": "jovial", + "eyes": "bloodshot", + "hat": "faux hawk", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4438, + "metadata_dict": { + "clothes": "smoking jacket", + "background": "gray", + "hat": "bunny ears", + "mouth": "bored", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4439, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "pink", + "clothes": "bayc t black", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4440, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "eyes": "zombie", + "clothes": "tanktop", + "hat": "cowboy hat", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4441, + "metadata_dict": { + "hat": "horns", + "clothes": "black holes t", + "fur": "black", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4442, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "fur": "brown", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4443, + "metadata_dict": { + "eyes": "3d", + "clothes": "guayabera", + "fur": "cheetah", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4444, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "fez", + "earring": "gold stud", + "clothes": "biker vest", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4445, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "black", + "background": "orange", + "hat": "girl's hair short", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4446, + "metadata_dict": { + "fur": "tan", + "clothes": "lumberjack shirt", + "eyes": "3d", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4447, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4448, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "fur": "black", + "eyes": "bloodshot", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4449, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "seaman's hat", + "background": "blue", + "earring": "silver hoop", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4450, + "metadata_dict": { + "mouth": "dumbfounded", + "hat": "faux hawk", + "background": "blue", + "clothes": "toga", + "fur": "cheetah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4451, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "3d", + "background": "orange", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4452, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "hat": "fisherman's hat", + "background": "army green", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4453, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "eyes": "3d", + "fur": "dark brown", + "clothes": "bayc t black", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4454, + "metadata_dict": { + "mouth": "discomfort", + "earring": "silver stud", + "eyes": "sleepy", + "fur": "dark brown", + "hat": "army hat", + "background": "purple", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4455, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "background": "yellow", + "fur": "black", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4456, + "metadata_dict": { + "fur": "golden brown", + "background": "yellow", + "eyes": "bloodshot", + "hat": "bayc hat red", + "clothes": "stunt jacket", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4457, + "metadata_dict": { + "fur": "golden brown", + "hat": "faux hawk", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4458, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "trippy", + "background": "aquamarine", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4459, + "metadata_dict": { + "eyes": "heart", + "hat": "sea captain's hat", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4460, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "robot", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4461, + "metadata_dict": { + "eyes": "x eyes", + "hat": "bayc hat black", + "fur": "golden brown", + "earring": "silver stud", + "mouth": "phoneme vuh", + "clothes": "cowboy shirt", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4462, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "clothes": "black suit", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4463, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "fur": "dark brown", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4464, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "clothes": "lab coat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4465, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "brown", + "hat": "bunny ears", + "eyes": "angry", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4466, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "striped tee", + "hat": "king's crown", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4467, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "background": "blue", + "mouth": "bored", + "hat": "safari", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4468, + "metadata_dict": { + "eyes": "closed", + "clothes": "sailor shirt", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4469, + "metadata_dict": { + "mouth": "grin", + "clothes": "tanktop", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4470, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "background": "blue", + "fur": "noise", + "hat": "army hat", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4471, + "metadata_dict": { + "clothes": "space suit", + "fur": "red", + "hat": "army hat", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4472, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "golden brown", + "background": "blue", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4473, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "black", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4474, + "metadata_dict": { + "eyes": "x eyes", + "hat": "halo", + "fur": "black", + "mouth": "bored", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4475, + "metadata_dict": { + "fur": "cream", + "earring": "silver hoop", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4476, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "black t", + "background": "blue", + "earring": "silver hoop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4477, + "metadata_dict": { + "mouth": "jovial", + "fur": "black", + "eyes": "sleepy", + "hat": "safari", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4478, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme l", + "hat": "stuntman helmet", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4479, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "dmt", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4480, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "clothes": "tuxedo tee", + "background": "yellow", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4481, + "metadata_dict": { + "eyes": "x eyes", + "background": "gray", + "clothes": "toga", + "earring": "silver stud", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4482, + "metadata_dict": { + "eyes": "heart", + "fur": "trippy", + "mouth": "grin multicolored", + "clothes": "prison jumpsuit", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4483, + "metadata_dict": { + "mouth": "rage", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "eyes": "sleepy", + "hat": "commie hat", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4484, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "background": "purple", + "fur": "robot", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4485, + "metadata_dict": { + "eyes": "closed", + "hat": "bandana blue", + "mouth": "grin", + "earring": "diamond stud", + "clothes": "tie dye", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4486, + "metadata_dict": { + "fur": "cream", + "clothes": "black holes t", + "mouth": "grin", + "earring": "silver stud", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4487, + "metadata_dict": { + "hat": "s&m hat", + "background": "aquamarine", + "fur": "black", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4488, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "red", + "background": "orange", + "eyes": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4489, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "background": "orange", + "eyes": "blindfold" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4490, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "grin", + "eyes": "coins", + "clothes": "tweed suit", + "fur": "pink", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4491, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "fisherman's hat", + "fur": "tan", + "eyes": "bored", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4492, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "scumbag", + "clothes": "cowboy shirt", + "hat": "spinner hat", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4493, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "kings robe", + "hat": "baby's bonnet", + "background": "blue", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4494, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "fez", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4495, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "mouth": "bored", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4496, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tweed suit", + "background": "aquamarine", + "fur": "red", + "earring": "gold stud", + "hat": "vietnam era helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4497, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "hypnotized", + "hat": "fez", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4498, + "metadata_dict": { + "background": "gray", + "fur": "golden brown", + "hat": "army hat", + "mouth": "bored unshaven cigarette", + "clothes": "guayabera", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4499, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "blue dress", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4500, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "rage", + "clothes": "smoking jacket", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4501, + "metadata_dict": { + "fur": "brown", + "background": "orange", + "eyes": "bloodshot", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4502, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "zombie", + "fur": "gray", + "earring": "silver stud", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4503, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "grin multicolored", + "fur": "golden brown", + "earring": "silver hoop", + "hat": "safari", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4504, + "metadata_dict": { + "hat": "irish boho", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "lab coat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4505, + "metadata_dict": { + "fur": "gray", + "mouth": "bored unshaven pipe", + "background": "blue", + "hat": "cowboy hat", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4506, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "clothes": "black t", + "background": "orange", + "hat": "short mohawk", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4507, + "metadata_dict": { + "background": "new punk blue", + "fur": "brown", + "eyes": "bloodshot", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4508, + "metadata_dict": { + "hat": "bandana blue", + "background": "blue", + "eyes": "bloodshot", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4509, + "metadata_dict": { + "background": "blue", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "hat": "cowboy hat", + "clothes": "bone necklace", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4510, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "golden brown", + "eyes": "coins", + "clothes": "bone necklace", + "background": "yellow", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4511, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "king's crown", + "background": "gray", + "eyes": "sleepy", + "fur": "white", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4512, + "metadata_dict": { + "clothes": "black t", + "background": "orange", + "hat": "commie hat", + "fur": "brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4513, + "metadata_dict": { + "eyes": "zombie", + "hat": "fez", + "fur": "black", + "clothes": "tanktop", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4514, + "metadata_dict": { + "fur": "cream", + "earring": "diamond stud", + "mouth": "rage", + "background": "orange", + "eyes": "bored", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4515, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "black holes t", + "earring": "diamond stud", + "mouth": "jovial", + "background": "blue", + "fur": "pink", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4516, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "stunt jacket", + "eyes": "bloodshot", + "fur": "noise", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4517, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 1", + "earring": "silver stud", + "eyes": "3d", + "fur": "noise", + "clothes": "bone necklace", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4518, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "hypnotized", + "fur": "golden brown", + "hat": "prussian helmet", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4519, + "metadata_dict": { + "hat": "irish boho", + "earring": "silver stud", + "mouth": "jovial", + "clothes": "smoking jacket", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4520, + "metadata_dict": { + "clothes": "prison jumpsuit", + "earring": "silver stud", + "eyes": "robot", + "fur": "brown", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4521, + "metadata_dict": { + "fur": "gray", + "background": "blue", + "eyes": "bloodshot", + "clothes": "bayc t black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4522, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "army hat", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4523, + "metadata_dict": { + "clothes": "black holes t", + "background": "aquamarine", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4524, + "metadata_dict": { + "clothes": "striped tee", + "background": "purple", + "mouth": "bored", + "eyes": "crazy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4525, + "metadata_dict": { + "eyes": "closed", + "fur": "brown", + "hat": "stuntman helmet", + "mouth": "dumbfounded", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4526, + "metadata_dict": { + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "robot", + "fur": "brown", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4527, + "metadata_dict": { + "eyes": "sunglasses", + "earring": "silver stud", + "hat": "bayc flipped brim", + "mouth": "small grin", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4528, + "metadata_dict": { + "clothes": "striped tee", + "earring": "gold hoop", + "fur": "red", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4529, + "metadata_dict": { + "fur": "black", + "clothes": "tie dye", + "background": "orange", + "earring": "silver hoop", + "eyes": "angry", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4530, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "eyes": "zombie", + "earring": "diamond stud", + "fur": "black", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4531, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven", + "fur": "death bot", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4532, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "zombie", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4533, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "dumbfounded", + "clothes": "work vest", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4534, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sailor shirt", + "eyes": "sleepy", + "hat": "bunny ears", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4535, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "hat": "beanie", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4536, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "eyes": "robot", + "background": "orange", + "fur": "brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4537, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "prussian helmet", + "earring": "silver stud", + "background": "blue", + "fur": "black", + "eyes": "robot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4538, + "metadata_dict": { + "clothes": "striped tee", + "hat": "s&m hat", + "mouth": "grin diamond grill", + "fur": "red", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4539, + "metadata_dict": { + "fur": "trippy", + "eyes": "coins", + "clothes": "black t", + "earring": "silver hoop", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4540, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "phoneme oh", + "clothes": "sailor shirt", + "fur": "black", + "eyes": "3d", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4541, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "mouth": "bored bubblegum", + "clothes": "biker vest", + "hat": "girl's hair short", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4542, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "pink", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4543, + "metadata_dict": { + "fur": "golden brown", + "earring": "diamond stud", + "clothes": "sailor shirt", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4544, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "holographic", + "background": "orange", + "fur": "dark brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4545, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "bandolier", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "robot", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4546, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "hawaiian", + "hat": "cowboy hat", + "mouth": "tongue out", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4547, + "metadata_dict": { + "background": "aquamarine", + "eyes": "3d", + "fur": "pink", + "hat": "fisherman's hat", + "clothes": "sleeveless logo t", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4548, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "black", + "eyes": "3d", + "clothes": "tanktop", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4549, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "mouth": "grin diamond grill", + "earring": "gold stud", + "hat": "fisherman's hat", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4550, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "golden brown", + "earring": "silver stud", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4551, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "eyes": "sad", + "background": "purple", + "fur": "zombie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4552, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "eyes": "bloodshot", + "mouth": "small grin", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4553, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "discomfort", + "hat": "seaman's hat", + "clothes": "leather jacket", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4554, + "metadata_dict": { + "mouth": "jovial", + "eyes": "3d", + "clothes": "sleeveless logo t", + "background": "yellow", + "hat": "safari", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4555, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "dark brown", + "background": "gray", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4556, + "metadata_dict": { + "mouth": "phoneme wah", + "hat": "fez", + "fur": "pink", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4557, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "tan", + "earring": "gold stud", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4558, + "metadata_dict": { + "background": "aquamarine", + "fur": "red", + "eyes": "3d", + "earring": "silver hoop", + "mouth": "bored cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4559, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "irish boho", + "mouth": "grin", + "background": "blue", + "earring": "silver hoop", + "fur": "cheetah", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4560, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "clothes": "sailor shirt", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4561, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "earring": "diamond stud", + "fur": "brown", + "hat": "halo", + "eyes": "sunglasses", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4562, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "bored pipe", + "background": "orange", + "hat": "cowboy hat", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4563, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "hat": "girl's hair pink", + "eyes": "3d", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4564, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "stunt jacket", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4565, + "metadata_dict": { + "eyes": "x eyes", + "hat": "party hat 1", + "background": "blue", + "mouth": "small grin", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4566, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "grin", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4567, + "metadata_dict": { + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "hat": "bayc flipped brim", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4568, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "eyes": "bored", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4569, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "earring": "silver stud", + "eyes": "bored", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4570, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "fur": "dark brown", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4571, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "fur": "black", + "hat": "cowboy hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4572, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "hat": "seaman's hat", + "background": "orange", + "clothes": "toga", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4573, + "metadata_dict": { + "fur": "tan", + "background": "orange", + "hat": "faux hawk", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4574, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "black t", + "eyes": "coins", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4575, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "prussian helmet", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4576, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "clothes": "bayc t black", + "background": "gray", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4577, + "metadata_dict": { + "clothes": "bone tee", + "hat": "prussian helmet", + "fur": "dark brown", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4578, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "clothes": "black t", + "background": "purple", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4579, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "sleeveless t", + "earring": "gold stud", + "background": "orange", + "hat": "bunny ears", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4580, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "dumbfounded", + "eyes": "3d", + "clothes": "biker vest", + "background": "orange", + "fur": "solid gold" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4581, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "background": "blue", + "fur": "pink", + "hat": "faux hawk", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4582, + "metadata_dict": { + "clothes": "rainbow suspenders", + "eyes": "bored", + "mouth": "bored", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4583, + "metadata_dict": { + "earring": "diamond stud", + "fur": "dark brown", + "mouth": "bored pizza", + "background": "purple", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4584, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "background": "gray", + "hat": "safari", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4585, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "short mohawk", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4586, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "golden brown", + "hat": "cowboy hat", + "earring": "silver hoop", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4587, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "grin", + "earring": "gold hoop", + "fur": "dark brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4588, + "metadata_dict": { + "fur": "dmt", + "clothes": "tanktop", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4589, + "metadata_dict": { + "fur": "tan", + "clothes": "wool turtleneck", + "mouth": "grin", + "eyes": "coins", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4590, + "metadata_dict": { + "eyes": "zombie", + "fur": "brown", + "mouth": "rage", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4591, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "hat": "fez", + "eyes": "3d", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4592, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tweed suit", + "hat": "fez", + "fur": "brown", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4593, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "fur": "dark brown", + "eyes": "bored", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4594, + "metadata_dict": { + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "clothes": "prom dress", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4595, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4596, + "metadata_dict": { + "eyes": "coins", + "clothes": "leather jacket", + "fur": "black", + "background": "orange", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4597, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "background": "blue", + "fur": "brown", + "eyes": "sleepy", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4598, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "smoking jacket", + "background": "orange", + "eyes": "bored", + "hat": "safari", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4599, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "earring": "diamond stud", + "fur": "gray", + "mouth": "bored unshaven cigarette", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4600, + "metadata_dict": { + "fur": "tan", + "hat": "fez", + "clothes": "biker vest", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4601, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 1", + "earring": "silver stud", + "fur": "red", + "mouth": "jovial", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4602, + "metadata_dict": { + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "clothes": "leather jacket", + "fur": "black", + "eyes": "bloodshot", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4603, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "diamond stud", + "fur": "black", + "hat": "beanie", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4604, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "wool turtleneck", + "earring": "diamond stud", + "background": "aquamarine", + "fur": "black", + "hat": "army hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4605, + "metadata_dict": { + "fur": "golden brown", + "background": "purple", + "hat": "spinner hat", + "clothes": "guayabera", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4606, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "fur": "black", + "clothes": "stunt jacket", + "hat": "short mohawk", + "mouth": "tongue out", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4607, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "fur": "gray", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4608, + "metadata_dict": { + "clothes": "caveman pelt", + "hat": "baby's bonnet", + "background": "aquamarine", + "mouth": "jovial", + "eyes": "bloodshot", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4609, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "background": "yellow", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4610, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "work vest", + "fur": "black", + "eyes": "3d", + "background": "gray", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4611, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "eyes": "3d", + "fur": "death bot", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4612, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "horns", + "fur": "golden brown", + "clothes": "black t", + "mouth": "dumbfounded", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4613, + "metadata_dict": { + "earring": "silver stud", + "eyes": "robot", + "background": "orange", + "mouth": "small grin", + "fur": "death bot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4614, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "earring": "silver hoop", + "fur": "solid gold", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4615, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "earring": "gold stud", + "eyes": "crazy", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4616, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "irish boho", + "mouth": "bored unshaven kazoo", + "earring": "silver hoop", + "clothes": "stunt jacket", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4617, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored dagger", + "fur": "black", + "eyes": "bored", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4618, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "girl's hair pink", + "eyes": "robot", + "clothes": "cowboy shirt", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4619, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "clothes": "bayc t black", + "hat": "army hat", + "fur": "cheetah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4620, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "bayc t red", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4621, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "dmt", + "clothes": "rainbow suspenders", + "hat": "faux hawk", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4622, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "silver stud", + "clothes": "work vest", + "fur": "pink", + "eyes": "sleepy", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4623, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "holographic", + "fur": "cream", + "hat": "seaman's hat", + "background": "yellow", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4624, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "background": "gray", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4625, + "metadata_dict": { + "clothes": "tie dye", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4626, + "metadata_dict": { + "hat": "bayc hat black", + "background": "orange", + "clothes": "tuxedo tee", + "mouth": "bored", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4627, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "hat": "girl's hair short", + "fur": "brown", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4628, + "metadata_dict": { + "hat": "horns", + "clothes": "admirals coat", + "background": "purple", + "mouth": "bored", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4629, + "metadata_dict": { + "eyes": "heart", + "earring": "gold hoop", + "clothes": "black t", + "background": "blue", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4630, + "metadata_dict": { + "eyes": "robot", + "fur": "black", + "mouth": "small grin", + "clothes": "sleeveless logo t", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4631, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "rainbow suspenders", + "mouth": "dumbfounded", + "fur": "black", + "earring": "silver hoop", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4632, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "mouth": "phoneme ooo", + "eyes": "coins", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4633, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4634, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "diamond stud", + "clothes": "sailor shirt", + "background": "blue", + "hat": "fisherman's hat", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4635, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black suit", + "mouth": "rage", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4636, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven", + "hat": "laurel wreath", + "clothes": "biker vest", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4637, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "robot", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4638, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4639, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "fur": "golden brown", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4640, + "metadata_dict": { + "background": "aquamarine", + "clothes": "work vest", + "fur": "black", + "eyes": "3d", + "hat": "army hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4641, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "mouth": "phoneme ooo", + "eyes": "coins", + "background": "blue", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4642, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "king's crown", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4643, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven bubblegum", + "clothes": "bayc t black", + "background": "gray", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4644, + "metadata_dict": { + "hat": "party hat 1", + "background": "aquamarine", + "earring": "gold stud", + "clothes": "tuxedo tee", + "eyes": "sleepy", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4645, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "seaman's hat", + "clothes": "sailor shirt", + "background": "purple", + "fur": "pink", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4646, + "metadata_dict": { + "fur": "dmt", + "mouth": "rage", + "background": "orange", + "clothes": "stunt jacket", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4647, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "background": "orange", + "hat": "bunny ears", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4648, + "metadata_dict": { + "mouth": "discomfort", + "hat": "horns", + "eyes": "bloodshot", + "clothes": "pimp coat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4649, + "metadata_dict": { + "background": "yellow", + "eyes": "bloodshot", + "clothes": "sleeveless logo t", + "hat": "beanie", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4650, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "fur": "brown", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4651, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "blue", + "fur": "black", + "mouth": "small grin", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4652, + "metadata_dict": { + "background": "blue", + "hat": "girl's hair short", + "fur": "cheetah", + "mouth": "bored", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4653, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "fur": "black", + "eyes": "bored", + "hat": "bunny ears", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4654, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "earring": "silver hoop", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4655, + "metadata_dict": { + "eyes": "x eyes", + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "mouth": "grin", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4656, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme ooo", + "background": "blue", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4657, + "metadata_dict": { + "eyes": "closed", + "fur": "dmt", + "background": "blue", + "clothes": "guayabera", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4658, + "metadata_dict": { + "background": "aquamarine", + "eyes": "robot", + "mouth": "bored bubblegum", + "fur": "dark brown", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4659, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "fur": "dark brown", + "hat": "short mohawk", + "earring": "silver hoop", + "clothes": "tanktop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4660, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "eyes": "blindfold", + "hat": "seaman's hat", + "clothes": "biker vest", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4661, + "metadata_dict": { + "clothes": "caveman pelt", + "fur": "red", + "background": "blue", + "mouth": "bored unshaven cigarette", + "eyes": "angry", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4662, + "metadata_dict": { + "clothes": "striped tee", + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4663, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "sailor shirt", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4664, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "clothes": "tie dye", + "background": "orange", + "fur": "cheetah", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4665, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "3d", + "hat": "cowboy hat", + "clothes": "toga", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4666, + "metadata_dict": { + "hat": "party hat 2", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4667, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "zombie", + "fur": "black", + "background": "orange", + "mouth": "bored bubblegum", + "earring": "silver hoop", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4668, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "dmt", + "earring": "silver stud", + "clothes": "leather jacket", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4669, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "cowboy hat", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4670, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "mouth": "grin", + "eyes": "robot", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4671, + "metadata_dict": { + "hat": "party hat 1", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4672, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "gray", + "clothes": "smoking jacket", + "eyes": "sleepy", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4673, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "eyes": "bored", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4674, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "fur": "black", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4675, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "striped tee", + "hat": "baby's bonnet", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4676, + "metadata_dict": { + "fur": "cream", + "eyes": "robot", + "background": "gray", + "hat": "vietnam era helmet", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4677, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "black t", + "hat": "spinner hat", + "earring": "silver hoop", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4678, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "black", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4679, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "toga", + "fur": "pink", + "background": "orange", + "hat": "army hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4680, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven cigarette", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4681, + "metadata_dict": { + "eyes": "zombie", + "clothes": "sailor shirt", + "fur": "black", + "background": "orange", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4682, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "background": "aquamarine", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4683, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "eyes": "robot", + "fur": "black", + "earring": "silver hoop", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4684, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "black t", + "hat": "stuntman helmet", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4685, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "eyes": "hypnotized", + "fur": "black", + "hat": "army hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4686, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "black", + "background": "orange", + "clothes": "sleeveless logo t", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4687, + "metadata_dict": { + "fur": "cheetah", + "background": "yellow", + "mouth": "bored unshaven", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4688, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4689, + "metadata_dict": { + "clothes": "black holes t", + "fur": "black", + "mouth": "bored", + "background": "yellow", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4690, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "earring": "silver stud", + "hat": "spinner hat", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4691, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "red", + "mouth": "grin multicolored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4692, + "metadata_dict": { + "clothes": "bandolier", + "fur": "dmt", + "eyes": "coins", + "mouth": "bored bubblegum", + "hat": "short mohawk", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4693, + "metadata_dict": { + "clothes": "tweed suit", + "background": "blue", + "mouth": "small grin", + "fur": "cheetah", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4694, + "metadata_dict": { + "clothes": "bandolier", + "hat": "seaman's hat", + "eyes": "robot", + "background": "blue", + "mouth": "bored pizza", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4695, + "metadata_dict": { + "mouth": "rage", + "earring": "silver stud", + "hat": "spinner hat", + "clothes": "stunt jacket", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4696, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "dark brown", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4697, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "hat": "baby's bonnet", + "background": "orange", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4698, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "eyes": "bored", + "clothes": "toga", + "fur": "brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4699, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "wide eyed", + "fur": "black", + "clothes": "hip hop", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4700, + "metadata_dict": { + "fur": "golden brown", + "hat": "commie hat", + "background": "gray", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4701, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "mouth": "grin", + "hat": "seaman's hat", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4702, + "metadata_dict": { + "clothes": "black t", + "eyes": "3d", + "background": "orange", + "hat": "faux hawk", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4703, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "yellow", + "eyes": "bloodshot", + "hat": "bowler", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4704, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "cheetah", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4705, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "seaman's hat", + "earring": "gold stud", + "background": "orange", + "eyes": "bloodshot", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4706, + "metadata_dict": { + "earring": "silver stud", + "clothes": "work vest", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4707, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "leather punk jacket", + "eyes": "3d", + "background": "orange", + "fur": "death bot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4708, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "striped tee", + "hat": "sushi chef headband", + "eyes": "coins", + "earring": "silver stud", + "background": "orange", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4709, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "tweed suit", + "background": "blue", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4710, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "prussian helmet", + "background": "aquamarine", + "eyes": "robot", + "earring": "gold stud", + "fur": "noise", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4711, + "metadata_dict": { + "background": "new punk blue", + "fur": "dmt", + "clothes": "work vest", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4712, + "metadata_dict": { + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4713, + "metadata_dict": { + "eyes": "coins", + "hat": "fez", + "background": "orange", + "earring": "silver hoop", + "clothes": "toga", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4714, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "aquamarine", + "hat": "short mohawk", + "fur": "cheetah", + "eyes": "crazy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4715, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "diamond stud", + "mouth": "dumbfounded", + "clothes": "bayc t black", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4716, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "mouth": "phoneme oh", + "earring": "gold stud", + "clothes": "smoking jacket", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4717, + "metadata_dict": { + "hat": "prussian helmet", + "eyes": "3d", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4718, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "hypnotized", + "earring": "gold stud", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4719, + "metadata_dict": { + "fur": "golden brown", + "mouth": "small grin", + "background": "army green", + "clothes": "service", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4720, + "metadata_dict": { + "mouth": "discomfort", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "hat": "vietnam era helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4721, + "metadata_dict": { + "fur": "golden brown", + "background": "aquamarine", + "eyes": "robot", + "clothes": "biker vest", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4722, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "rage", + "clothes": "bayc t black", + "hat": "fisherman's hat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4723, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "golden brown", + "hat": "king's crown", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4724, + "metadata_dict": { + "fur": "cream", + "eyes": "zombie", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4725, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "fur": "gray", + "clothes": "toga", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4726, + "metadata_dict": { + "hat": "bandana blue", + "fur": "red", + "eyes": "robot", + "background": "orange", + "clothes": "navy striped tee", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4727, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "robot", + "fur": "red", + "clothes": "biker vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4728, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "dmt", + "background": "orange", + "eyes": "bored", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4729, + "metadata_dict": { + "eyes": "blindfold", + "background": "blue", + "fur": "black", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4730, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "gray", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4731, + "metadata_dict": { + "eyes": "closed", + "earring": "silver stud", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4732, + "metadata_dict": { + "eyes": "x eyes", + "hat": "party hat 2", + "clothes": "smoking jacket", + "background": "purple", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4733, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "robot", + "clothes": "biker vest", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4734, + "metadata_dict": { + "mouth": "bored unshaven dagger", + "fur": "golden brown", + "background": "orange", + "clothes": "tuxedo tee", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4735, + "metadata_dict": { + "eyes": "coins", + "mouth": "phoneme vuh", + "earring": "gold stud", + "background": "orange", + "fur": "brown", + "hat": "vietnam era helmet", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4736, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "seaman's hat", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4737, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "clothes": "prison jumpsuit", + "fur": "black", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4738, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "silver stud", + "hat": "fisherman's hat", + "fur": "white", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4739, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "bone tee", + "mouth": "grin multicolored", + "background": "aquamarine", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4740, + "metadata_dict": { + "hat": "horns", + "background": "blue", + "fur": "pink", + "eyes": "bloodshot", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4741, + "metadata_dict": { + "mouth": "bored kazoo", + "hat": "party hat 1", + "fur": "pink", + "earring": "silver hoop", + "eyes": "bored", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4742, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "striped tee", + "eyes": "closed", + "mouth": "phoneme ooo", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4743, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "heart", + "fur": "trippy", + "background": "orange", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4744, + "metadata_dict": { + "eyes": "bloodshot", + "hat": "army hat", + "background": "gray", + "mouth": "bored cigarette", + "fur": "robot", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4745, + "metadata_dict": { + "clothes": "service", + "mouth": "bored pipe", + "background": "blue", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4746, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "clothes": "wool turtleneck", + "hat": "fez", + "background": "aquamarine", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4747, + "metadata_dict": { + "fur": "brown", + "mouth": "bored bubblegum", + "hat": "short mohawk", + "earring": "silver hoop", + "eyes": "bored", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4748, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "vietnam era helmet", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4749, + "metadata_dict": { + "clothes": "blue dress", + "earring": "gold stud", + "background": "orange", + "hat": "fisherman's hat", + "fur": "cheetah", + "mouth": "phoneme wah", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4750, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "background": "blue", + "earring": "gold stud", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4751, + "metadata_dict": { + "eyes": "closed", + "clothes": "leather punk jacket", + "mouth": "phoneme ooo", + "hat": "fez", + "fur": "red", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4752, + "metadata_dict": { + "eyes": "blindfold", + "hat": "seaman's hat", + "fur": "black", + "clothes": "tuxedo tee", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4753, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "blindfold", + "fur": "pink", + "background": "orange", + "hat": "cowboy hat", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4754, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless logo t", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4755, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "clothes": "tweed suit", + "fur": "red", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4756, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "hat": "seaman's hat", + "clothes": "black suit", + "fur": "dark brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4757, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "hat": "spinner hat", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4758, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "clothes": "prom dress", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4759, + "metadata_dict": { + "hat": "s&m hat", + "fur": "brown", + "clothes": "work vest", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4760, + "metadata_dict": { + "eyes": "eyepatch", + "background": "blue", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4761, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "fur": "dmt", + "clothes": "smoking jacket", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4762, + "metadata_dict": { + "earring": "diamond stud", + "eyes": "bored", + "mouth": "bored", + "clothes": "navy striped tee", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4763, + "metadata_dict": { + "fur": "tan", + "clothes": "blue dress", + "eyes": "bored", + "hat": "bowler", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4764, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "rainbow suspenders", + "eyes": "bored", + "hat": "bayc hat red", + "background": "purple", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4765, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4766, + "metadata_dict": { + "eyes": "sunglasses", + "fur": "red", + "mouth": "bored pizza", + "hat": "faux hawk", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4767, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "background": "orange", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4768, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "earring": "silver stud", + "clothes": "biker vest", + "eyes": "bloodshot", + "hat": "short mohawk", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4769, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "earring": "silver stud", + "hat": "vietnam era helmet", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4770, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "hat": "faux hawk", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4771, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "black", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4772, + "metadata_dict": { + "eyes": "coins", + "hat": "fez", + "fur": "black", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4773, + "metadata_dict": { + "background": "aquamarine", + "eyes": "robot", + "hat": "faux hawk", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4774, + "metadata_dict": { + "eyes": "x eyes", + "earring": "silver stud", + "mouth": "bored pipe", + "background": "orange", + "fur": "brown", + "clothes": "stunt jacket", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4775, + "metadata_dict": { + "fur": "gray", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4776, + "metadata_dict": { + "hat": "irish boho", + "background": "orange", + "mouth": "bored", + "clothes": "lab coat", + "fur": "brown", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4777, + "metadata_dict": { + "background": "gray", + "fur": "tan", + "eyes": "blindfold", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4778, + "metadata_dict": { + "earring": "silver stud", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "hat": "beanie", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4779, + "metadata_dict": { + "eyes": "holographic", + "hat": "s&m hat", + "clothes": "leather jacket", + "fur": "black", + "earring": "silver hoop", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4780, + "metadata_dict": { + "hat": "stuntman helmet", + "clothes": "toga", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4781, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "striped tee", + "eyes": "coins", + "mouth": "phoneme vuh", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4782, + "metadata_dict": { + "eyes": "blindfold", + "background": "gray", + "hat": "prussian helmet", + "mouth": "phoneme vuh", + "earring": "silver hoop", + "clothes": "lab coat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4783, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "golden brown", + "earring": "gold hoop", + "mouth": "bored unshaven bubblegum", + "hat": "fez", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4784, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4785, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "prison jumpsuit", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4786, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "smoking jacket", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4787, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "tie dye", + "hat": "beanie", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4788, + "metadata_dict": { + "eyes": "closed", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "background": "orange", + "fur": "brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4789, + "metadata_dict": { + "background": "aquamarine", + "eyes": "3d", + "fur": "pink", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4790, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "jovial", + "background": "orange", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4791, + "metadata_dict": { + "fur": "tan", + "mouth": "rage", + "clothes": "smoking jacket", + "hat": "fisherman's hat", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4792, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "toga", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4793, + "metadata_dict": { + "hat": "fez", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "dark brown", + "eyes": "sleepy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4794, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "seaman's hat", + "fur": "gray", + "mouth": "dumbfounded", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4795, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "leather jacket", + "background": "orange", + "hat": "cowboy hat", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4796, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "phoneme vuh", + "background": "orange", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4797, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "irish boho", + "earring": "gold hoop", + "background": "blue", + "fur": "pink", + "clothes": "guayabera", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4798, + "metadata_dict": { + "hat": "horns", + "fur": "golden brown", + "mouth": "phoneme ooo", + "clothes": "rainbow suspenders", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4799, + "metadata_dict": { + "fur": "dark brown", + "hat": "short mohawk", + "clothes": "prom dress", + "background": "purple", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4800, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "coins", + "fur": "brown", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4801, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "hat": "horns", + "fur": "golden brown", + "clothes": "tweed suit", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4802, + "metadata_dict": { + "eyes": "holographic", + "fur": "brown", + "hat": "stuntman helmet", + "clothes": "smoking jacket", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4803, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "tan", + "hat": "irish boho", + "earring": "silver stud", + "background": "yellow", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4804, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "blue", + "clothes": "smoking jacket", + "hat": "faux hawk", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4805, + "metadata_dict": { + "clothes": "prom dress", + "mouth": "jovial", + "fur": "red", + "earring": "silver hoop", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4806, + "metadata_dict": { + "earring": "silver stud", + "fur": "red", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4807, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "mouth": "grin", + "hat": "fez", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4808, + "metadata_dict": { + "fur": "cream", + "mouth": "grin multicolored", + "background": "aquamarine", + "eyes": "3d", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4809, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "mouth": "jovial", + "fur": "dark brown", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4810, + "metadata_dict": { + "clothes": "prom dress", + "mouth": "bored unshaven pipe", + "eyes": "3d", + "background": "yellow", + "fur": "death bot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4811, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "mouth": "phoneme ooo", + "fur": "dark brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4812, + "metadata_dict": { + "eyes": "heart", + "hat": "irish boho", + "mouth": "rage", + "background": "aquamarine", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4813, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "earring": "gold stud", + "background": "orange", + "eyes": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4814, + "metadata_dict": { + "clothes": "kings robe", + "fur": "cream", + "hat": "fez", + "earring": "cross", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4815, + "metadata_dict": { + "hat": "irish boho", + "clothes": "black holes t", + "eyes": "zombie", + "fur": "noise", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4816, + "metadata_dict": { + "background": "yellow", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4817, + "metadata_dict": { + "fur": "cream", + "hat": "baby's bonnet", + "background": "blue", + "clothes": "bayc t black", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4818, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "background": "yellow", + "hat": "bunny ears", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4819, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "mouth": "bored pipe", + "hat": "vietnam era helmet", + "clothes": "stunt jacket", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4820, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "hat": "stuntman helmet", + "eyes": "bored", + "background": "gray", + "fur": "death bot", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4821, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "hat": "bayc hat red", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4822, + "metadata_dict": { + "eyes": "coins", + "hat": "prussian helmet", + "fur": "pink", + "clothes": "smoking jacket", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4823, + "metadata_dict": { + "eyes": "zombie", + "earring": "silver stud", + "clothes": "smoking jacket", + "mouth": "bored", + "hat": "halo", + "fur": "blue", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4824, + "metadata_dict": { + "background": "yellow", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4825, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "pink", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4826, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4827, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "golden brown", + "background": "aquamarine", + "eyes": "3d", + "earring": "silver hoop", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4828, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "hat": "seaman's hat", + "fur": "black", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4829, + "metadata_dict": { + "hat": "party hat 2", + "fur": "black", + "background": "gray", + "clothes": "prom dress", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4830, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "fur": "pink", + "background": "yellow", + "hat": "bunny ears", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4831, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "fisherman's hat", + "mouth": "bored cigarette", + "clothes": "caveman pelt", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4832, + "metadata_dict": { + "clothes": "bandolier", + "hat": "sushi chef headband", + "mouth": "rage", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4833, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored pipe", + "background": "blue", + "fur": "brown", + "clothes": "guayabera", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4834, + "metadata_dict": { + "hat": "sea captain's hat", + "background": "blue", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4835, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored", + "eyes": "bored", + "fur": "brown", + "earring": "cross", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4836, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "blue", + "clothes": "tie dye", + "hat": "bayc flipped brim", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4837, + "metadata_dict": { + "mouth": "discomfort", + "hat": "baby's bonnet", + "eyes": "coins", + "background": "aquamarine", + "clothes": "work vest", + "fur": "red", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4838, + "metadata_dict": { + "eyes": "closed", + "hat": "laurel wreath", + "mouth": "phoneme vuh", + "clothes": "smoking jacket", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4839, + "metadata_dict": { + "mouth": "jovial", + "background": "blue", + "hat": "spinner hat", + "clothes": "leather jacket", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4840, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "bunny ears", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4841, + "metadata_dict": { + "hat": "horns", + "fur": "black", + "eyes": "bloodshot", + "clothes": "tanktop", + "background": "yellow", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4842, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "eyes": "bloodshot", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4843, + "metadata_dict": { + "clothes": "bone necklace", + "mouth": "grin diamond grill", + "fur": "red", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4844, + "metadata_dict": { + "background": "aquamarine", + "fur": "noise", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4845, + "metadata_dict": { + "fur": "gray", + "eyes": "3d", + "hat": "army hat", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4846, + "metadata_dict": { + "fur": "zombie", + "mouth": "grin diamond grill", + "eyes": "bloodshot", + "background": "yellow", + "hat": "bunny ears", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4847, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "cowboy hat", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4848, + "metadata_dict": { + "mouth": "rage", + "earring": "silver stud", + "fur": "black", + "hat": "spinner hat", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4849, + "metadata_dict": { + "hat": "horns", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "purple", + "fur": "dark brown", + "clothes": "guayabera", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4850, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "zombie", + "hat": "spinner hat", + "background": "orange", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4851, + "metadata_dict": { + "clothes": "black holes t", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4852, + "metadata_dict": { + "background": "new punk blue", + "hat": "cowboy hat", + "eyes": "bored", + "clothes": "bone necklace", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4853, + "metadata_dict": { + "hat": "fez", + "mouth": "tongue out", + "fur": "cheetah", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4854, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4855, + "metadata_dict": { + "clothes": "black t", + "hat": "party hat 1", + "fur": "black", + "mouth": "small grin", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4856, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "gray", + "clothes": "tuxedo tee", + "hat": "beanie", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4857, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "gray", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4858, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "beanie", + "background": "yellow", + "fur": "white", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4859, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "gray", + "hat": "fez", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4860, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "mouth": "bored unshaven bubblegum", + "background": "aquamarine", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4861, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "black holes t", + "background": "blue", + "fur": "black", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4862, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "bloodshot", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4863, + "metadata_dict": { + "earring": "silver stud", + "eyes": "3d", + "fur": "dark brown", + "background": "orange", + "clothes": "biker vest", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4864, + "metadata_dict": { + "fur": "gray", + "background": "gray", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4865, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4866, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "3d", + "background": "yellow", + "hat": "safari", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4867, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "laurel wreath", + "fur": "golden brown", + "background": "blue", + "clothes": "biker vest", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4868, + "metadata_dict": { + "fur": "gray", + "eyes": "coins", + "clothes": "sailor shirt", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4869, + "metadata_dict": { + "eyes": "eyepatch", + "background": "blue", + "fur": "pink", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4870, + "metadata_dict": { + "mouth": "grin", + "fur": "red", + "background": "purple", + "clothes": "guayabera", + "hat": "fisherman's hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4871, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "fur": "dark brown", + "eyes": "bored", + "hat": "bayc hat red", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4872, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "cream", + "mouth": "jovial", + "eyes": "3d", + "earring": "silver hoop", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4873, + "metadata_dict": { + "eyes": "scumbag", + "earring": "gold hoop", + "mouth": "bored pipe", + "clothes": "tie dye", + "background": "orange", + "hat": "army hat", + "fur": "solid gold" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4874, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "hat": "sushi chef headband", + "mouth": "grin", + "fur": "pink", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4875, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "dmt", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4876, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "tweed suit", + "eyes": "bored", + "hat": "bayc hat red", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4877, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "dumbfounded", + "eyes": "bored", + "clothes": "lab coat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4878, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "eyes": "coins", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4879, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "space suit", + "mouth": "bored pipe", + "fur": "black", + "earring": "silver hoop", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4880, + "metadata_dict": { + "eyes": "heart", + "clothes": "blue dress", + "fur": "dark brown", + "hat": "army hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4881, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "mouth": "phoneme ooo", + "fur": "gray", + "eyes": "bloodshot", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4882, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "trippy", + "clothes": "black suit", + "earring": "silver stud", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4883, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "cheetah", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4884, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "black holes t", + "background": "orange", + "eyes": "bored", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4885, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "red", + "background": "orange", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4886, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "background": "yellow", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4887, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin gold grill", + "clothes": "bandolier", + "earring": "diamond stud", + "fur": "red", + "hat": "spinner hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4888, + "metadata_dict": { + "clothes": "blue dress", + "fur": "pink", + "hat": "fisherman's hat", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4889, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "trippy", + "eyes": "zombie", + "earring": "gold hoop", + "background": "blue", + "hat": "faux hawk", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4890, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "eyes": "zombie", + "clothes": "tweed suit", + "mouth": "grin diamond grill", + "earring": "gold stud", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4891, + "metadata_dict": { + "eyes": "blindfold", + "earring": "diamond stud", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "dark brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4892, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "fur": "gray", + "clothes": "bayc t black", + "background": "gray", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4893, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "red", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4894, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "mouth": "small grin", + "fur": "brown", + "hat": "beanie", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4895, + "metadata_dict": { + "fur": "gray", + "mouth": "bored bubblegum", + "eyes": "bored", + "background": "yellow", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4896, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "smoking jacket", + "fur": "white", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4897, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "background": "blue", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4898, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cream", + "eyes": "zombie", + "mouth": "bored party horn", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4899, + "metadata_dict": { + "earring": "diamond stud", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown", + "mouth": "bored pizza", + "hat": "commie hat", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4900, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "bandolier", + "hat": "prussian helmet", + "eyes": "3d", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4901, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold stud", + "mouth": "small grin", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4902, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "fur": "tan", + "mouth": "grin", + "clothes": "work vest", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4903, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "fur": "golden brown", + "earring": "gold hoop", + "background": "aquamarine", + "hat": "army hat", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4904, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "background": "aquamarine", + "mouth": "bored pizza", + "hat": "girl's hair short", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4905, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "clothes": "rainbow suspenders", + "background": "blue", + "hat": "short mohawk", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4906, + "metadata_dict": { + "fur": "brown", + "earring": "silver stud", + "hat": "cowboy hat", + "clothes": "toga", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4907, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored dagger", + "eyes": "blindfold", + "earring": "silver stud", + "clothes": "hawaiian", + "background": "orange", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4908, + "metadata_dict": { + "clothes": "rainbow suspenders", + "earring": "silver stud", + "background": "blue", + "fur": "black", + "mouth": "small grin", + "hat": "vietnam era helmet", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4909, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "grin", + "background": "blue", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4910, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "lumberjack shirt", + "hat": "fisherman's hat", + "mouth": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4911, + "metadata_dict": { + "mouth": "bored dagger", + "hat": "sea captain's hat", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "cheetah", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4912, + "metadata_dict": { + "clothes": "bayc t red", + "earring": "gold hoop", + "background": "blue", + "mouth": "bored", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4913, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "rainbow suspenders", + "fur": "noise", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4914, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "earring": "gold stud", + "background": "orange", + "eyes": "bloodshot", + "hat": "cowboy hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4915, + "metadata_dict": { + "background": "new punk blue", + "clothes": "space suit", + "earring": "silver hoop", + "mouth": "bored", + "hat": "halo", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4916, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "fur": "golden brown", + "earring": "gold stud", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4917, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "gray", + "hat": "fez", + "earring": "silver stud", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4918, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "fez", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "black", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4919, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless logo t", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4920, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "eyes": "closed", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4921, + "metadata_dict": { + "earring": "silver stud", + "mouth": "dumbfounded", + "fur": "black", + "background": "army green", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4922, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "fur": "black", + "clothes": "tie dye", + "eyes": "bored", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4923, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "lumberjack shirt", + "hat": "horns", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4924, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "hat": "s&m hat", + "background": "blue", + "eyes": "bloodshot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4925, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "earring": "silver hoop", + "fur": "brown", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4926, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "black t", + "earring": "silver stud", + "background": "aquamarine", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4927, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "cream", + "mouth": "jovial", + "clothes": "biker vest", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4928, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4929, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bloodshot", + "hat": "short mohawk", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4930, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "s&m hat", + "background": "blue", + "clothes": "biker vest", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4931, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4932, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "gray", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4933, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "bayc flipped brim", + "background": "purple", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4934, + "metadata_dict": { + "eyes": "zombie", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "blue", + "fur": "dark brown", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4935, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "background": "aquamarine", + "clothes": "biker vest", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4936, + "metadata_dict": { + "mouth": "grin", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "fur": "red", + "background": "orange", + "eyes": "bloodshot", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4937, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "mouth": "rage", + "hat": "spinner hat", + "fur": "pink", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4938, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "background": "orange", + "fur": "brown", + "clothes": "stunt jacket", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4939, + "metadata_dict": { + "fur": "tan", + "earring": "diamond stud", + "clothes": "tie dye", + "hat": "short mohawk", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4940, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "background": "orange", + "eyes": "3d", + "clothes": "tuxedo tee", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4941, + "metadata_dict": { + "fur": "cream", + "clothes": "lumberjack shirt", + "mouth": "bored unshaven cigarette", + "earring": "silver hoop", + "background": "gray", + "hat": "beanie", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4942, + "metadata_dict": { + "eyes": "eyepatch", + "background": "orange", + "fur": "dark brown", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4943, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "fez", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4944, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "clothes": "tanktop", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4945, + "metadata_dict": { + "hat": "sushi chef headband", + "earring": "diamond stud", + "fur": "pink", + "clothes": "sleeveless logo t", + "mouth": "bored cigarette", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4946, + "metadata_dict": { + "hat": "laurel wreath", + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "background": "orange", + "clothes": "lab coat", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4947, + "metadata_dict": { + "hat": "irish boho", + "background": "orange", + "mouth": "bored", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4948, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4949, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "eyes": "crazy", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4950, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "black", + "background": "gray", + "hat": "beanie", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4951, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "leather punk jacket", + "hat": "fez", + "fur": "red", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4952, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "clothes": "cowboy shirt", + "background": "blue", + "mouth": "bored unshaven cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4953, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "hat": "seaman's hat", + "fur": "noise", + "eyes": "sleepy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4954, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "eyes": "robot", + "fur": "black", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4955, + "metadata_dict": { + "mouth": "discomfort", + "hat": "irish boho", + "fur": "golden brown", + "eyes": "bloodshot", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4956, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4957, + "metadata_dict": { + "clothes": "striped tee", + "hat": "irish boho", + "fur": "gray", + "eyes": "coins", + "mouth": "phoneme wah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4958, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black t", + "fur": "pink", + "earring": "silver hoop", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4959, + "metadata_dict": { + "mouth": "bored pipe", + "fur": "solid gold", + "hat": "fisherman's hat", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4960, + "metadata_dict": { + "eyes": "coins", + "mouth": "dumbfounded", + "hat": "bunny ears", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4961, + "metadata_dict": { + "clothes": "kings robe", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "earring": "cross", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4962, + "metadata_dict": { + "fur": "golden brown", + "mouth": "small grin", + "clothes": "tuxedo tee", + "background": "gray", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4963, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "background": "aquamarine", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4964, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "wool turtleneck", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4965, + "metadata_dict": { + "eyes": "holographic", + "hat": "baby's bonnet", + "mouth": "dumbfounded", + "fur": "cheetah", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4966, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "mouth": "bored", + "fur": "white", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4967, + "metadata_dict": { + "fur": "dmt", + "background": "orange", + "mouth": "bored unshaven kazoo", + "hat": "bayc flipped brim", + "eyes": "bloodshot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4968, + "metadata_dict": { + "mouth": "grin", + "hat": "prussian helmet", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4969, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "black", + "eyes": "3d", + "mouth": "small grin", + "earring": "silver hoop", + "hat": "bayc hat red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4970, + "metadata_dict": { + "clothes": "rainbow suspenders", + "background": "orange", + "fur": "brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4971, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "earring": "gold hoop", + "clothes": "work vest", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4972, + "metadata_dict": { + "fur": "dmt", + "mouth": "bored party horn", + "background": "purple", + "clothes": "smoking jacket", + "hat": "bunny ears", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4973, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bayc t red", + "mouth": "grin", + "earring": "gold stud", + "fur": "cheetah", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4974, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "dark brown", + "eyes": "bored", + "hat": "girl's hair short", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4975, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "s&m hat", + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4976, + "metadata_dict": { + "eyes": "closed", + "clothes": "biker vest", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4977, + "metadata_dict": { + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4978, + "metadata_dict": { + "background": "blue", + "fur": "black", + "hat": "army hat", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4979, + "metadata_dict": { + "background": "orange", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "clothes": "guayabera", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4980, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "party hat 1", + "earring": "gold stud", + "clothes": "smoking jacket", + "fur": "solid gold", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4981, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "hat": "seaman's hat", + "clothes": "biker vest", + "fur": "white", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4982, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "mouth": "phoneme vuh", + "fur": "brown", + "hat": "bunny ears", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4983, + "metadata_dict": { + "fur": "golden brown", + "hat": "baby's bonnet", + "clothes": "tie dye", + "mouth": "bored unshaven cigar", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4984, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "fur": "golden brown", + "eyes": "sad", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4985, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored", + "eyes": "eyepatch", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4986, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tweed suit", + "eyes": "bloodshot", + "hat": "army hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4987, + "metadata_dict": { + "fur": "tan", + "clothes": "black holes t", + "mouth": "grin", + "eyes": "robot", + "background": "orange", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4988, + "metadata_dict": { + "hat": "s&m hat", + "fur": "dmt", + "background": "orange", + "clothes": "sleeveless logo t", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4989, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "seaman's hat", + "clothes": "sailor shirt", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4990, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "black", + "eyes": "sleepy", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4991, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "hypnotized", + "earring": "silver stud", + "background": "blue", + "hat": "cowboy hat", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4992, + "metadata_dict": { + "clothes": "bayc t red", + "earring": "gold hoop", + "hat": "fez", + "background": "aquamarine", + "eyes": "sleepy", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4993, + "metadata_dict": { + "eyes": "heart", + "hat": "bandana blue", + "clothes": "sleeveless t", + "fur": "gray", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4994, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "fur": "black", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4995, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "holographic", + "clothes": "lumberjack shirt", + "fur": "golden brown", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4996, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "hat": "faux hawk", + "clothes": "admirals coat", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4997, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "striped tee", + "fur": "cream", + "hat": "seaman's hat", + "eyes": "zombie", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4998, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme oh", + "background": "orange", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4999, + "metadata_dict": { + "background": "yellow", + "earring": "silver stud", + "mouth": "bored pipe", + "fur": "pink", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5000, + "metadata_dict": { + "background": "new punk blue", + "clothes": "blue dress", + "fur": "gray", + "hat": "party hat 1", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5001, + "metadata_dict": { + "eyes": "3d", + "clothes": "tuxedo tee", + "fur": "white", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5002, + "metadata_dict": { + "clothes": "striped tee", + "hat": "fez", + "fur": "red", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5003, + "metadata_dict": { + "earring": "silver hoop", + "mouth": "tongue out", + "fur": "cheetah", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5004, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "mouth": "grin", + "fur": "gray", + "earring": "silver hoop", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5005, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "clothes": "bayc t black", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5006, + "metadata_dict": { + "fur": "red", + "background": "orange", + "eyes": "bored", + "mouth": "tongue out", + "hat": "beanie", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5007, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "bloodshot", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5008, + "metadata_dict": { + "mouth": "bored", + "background": "gray", + "clothes": "bone necklace", + "eyes": "sleepy", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5009, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "clothes": "cowboy shirt", + "fur": "black", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5010, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "tan", + "clothes": "blue dress", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5011, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "striped tee", + "background": "aquamarine", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5012, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "coins", + "clothes": "biker vest", + "hat": "bunny ears", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5013, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "fur": "gray", + "earring": "silver stud", + "clothes": "work vest", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5014, + "metadata_dict": { + "hat": "fez", + "clothes": "prison jumpsuit", + "mouth": "phoneme vuh", + "background": "blue", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5015, + "metadata_dict": { + "fur": "tan", + "hat": "bandana blue", + "background": "orange", + "clothes": "smoking jacket", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5016, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "party hat 1", + "clothes": "tie dye", + "background": "orange", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5017, + "metadata_dict": { + "clothes": "black suit", + "fur": "dark brown", + "eyes": "bored", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5018, + "metadata_dict": { + "fur": "robot", + "mouth": "tongue out", + "background": "yellow", + "clothes": "stunt jacket", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5019, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "dumbfounded", + "fur": "red", + "background": "yellow", + "hat": "bunny ears", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5020, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven party horn", + "clothes": "prison jumpsuit", + "hat": "army hat", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5021, + "metadata_dict": { + "hat": "fez", + "fur": "dark brown", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5022, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "stuntman helmet", + "background": "aquamarine", + "earring": "silver hoop", + "eyes": "angry", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5023, + "metadata_dict": { + "fur": "cheetah", + "earring": "silver stud", + "mouth": "jovial", + "eyes": "robot", + "background": "gray", + "hat": "beanie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5024, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "service", + "background": "yellow", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5025, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "background": "blue", + "hat": "short mohawk", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5026, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme vuh", + "background": "blue", + "hat": "bayc hat red", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5027, + "metadata_dict": { + "mouth": "discomfort", + "hat": "s&m hat", + "fur": "golden brown", + "background": "blue", + "clothes": "tanktop", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5028, + "metadata_dict": { + "fur": "golden brown", + "clothes": "prison jumpsuit", + "eyes": "robot", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5029, + "metadata_dict": { + "eyes": "closed", + "fur": "dmt", + "clothes": "tanktop", + "background": "gray", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5030, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "striped tee", + "fur": "gray", + "eyes": "coins", + "background": "orange", + "earring": "silver hoop", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5031, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "hat": "fez", + "fur": "black", + "eyes": "3d", + "clothes": "sleeveless logo t", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5032, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "earring": "gold stud", + "eyes": "bored", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5033, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "bored pipe", + "background": "blue", + "fur": "dark brown", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5034, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "brown", + "clothes": "hip hop", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5035, + "metadata_dict": { + "hat": "bandana blue", + "background": "gray", + "mouth": "jovial", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5036, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "laurel wreath", + "clothes": "work vest", + "background": "orange", + "mouth": "bored unshaven cigarette", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5037, + "metadata_dict": { + "fur": "gray", + "hat": "fez", + "eyes": "robot", + "background": "orange", + "clothes": "biker vest", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5038, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven cigarette", + "clothes": "black t", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5039, + "metadata_dict": { + "hat": "fez", + "eyes": "robot", + "fur": "dark brown", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5040, + "metadata_dict": { + "mouth": "rage", + "eyes": "robot", + "background": "blue", + "fur": "death bot", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5041, + "metadata_dict": { + "background": "new punk blue", + "clothes": "blue dress", + "mouth": "small grin", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5042, + "metadata_dict": { + "eyes": "wide eyed", + "earring": "gold stud", + "fur": "pink", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5043, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "scumbag", + "mouth": "rage", + "background": "aquamarine", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5044, + "metadata_dict": { + "background": "new punk blue", + "fur": "dmt", + "mouth": "dumbfounded", + "eyes": "bored", + "earring": "silver hoop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5045, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "biker vest", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5046, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "brown", + "eyes": "3d", + "mouth": "small grin", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5047, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "hat": "fez", + "fur": "black", + "background": "gray", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5048, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "beanie", + "fur": "pink", + "eyes": "bored", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5049, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "clothes": "rainbow suspenders", + "mouth": "rage", + "hat": "bunny ears", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5050, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "prussian helmet", + "clothes": "black t", + "earring": "silver stud", + "fur": "red", + "background": "blue", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5051, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored pipe", + "fur": "brown", + "clothes": "prom dress", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5052, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "space suit", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5053, + "metadata_dict": { + "background": "orange", + "hat": "bayc flipped brim", + "eyes": "bored", + "clothes": "bayc t black", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5054, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "fur": "golden brown", + "earring": "diamond stud", + "eyes": "bored", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5055, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "grin", + "clothes": "black t", + "background": "orange", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5056, + "metadata_dict": { + "hat": "horns", + "background": "aquamarine", + "fur": "black", + "clothes": "biker vest", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5057, + "metadata_dict": { + "background": "blue", + "clothes": "guayabera", + "hat": "army hat", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5058, + "metadata_dict": { + "mouth": "discomfort", + "hat": "sushi chef headband", + "clothes": "tweed suit", + "eyes": "3d", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5059, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "background": "orange", + "hat": "faux hawk", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5060, + "metadata_dict": { + "background": "blue", + "fur": "black", + "earring": "gold stud", + "eyes": "3d", + "mouth": "tongue out", + "hat": "vietnam era helmet", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5061, + "metadata_dict": { + "eyes": "x eyes", + "hat": "fez", + "fur": "cheetah", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5062, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "bone tee", + "eyes": "3d", + "background": "purple", + "mouth": "phoneme wah", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5063, + "metadata_dict": { + "clothes": "striped tee", + "hat": "s&m hat", + "earring": "silver stud", + "mouth": "jovial", + "background": "orange", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5064, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "earring": "silver hoop", + "eyes": "blue beams", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5065, + "metadata_dict": { + "mouth": "bored cigarette", + "earring": "diamond stud", + "background": "orange", + "fur": "dark brown", + "clothes": "bayc t black", + "hat": "vietnam era helmet", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5066, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "seaman's hat", + "earring": "gold stud", + "fur": "cheetah", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5067, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "eyes": "bored", + "background": "gray", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5068, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sailor shirt", + "mouth": "bored party horn", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5069, + "metadata_dict": { + "hat": "party hat 1", + "mouth": "rage", + "fur": "red", + "clothes": "biker vest", + "eyes": "bored", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5070, + "metadata_dict": { + "hat": "trippy captain's hat", + "background": "aquamarine", + "eyes": "robot", + "fur": "red", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5071, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "yellow", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "bowler", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5072, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc hat red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5073, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "orange", + "eyes": "bored", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5074, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "cheetah", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5075, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "clothes": "striped tee", + "hat": "fez", + "mouth": "dumbfounded", + "earring": "silver stud", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5076, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "zombie", + "hat": "fez", + "fur": "dark brown", + "clothes": "tuxedo tee", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5077, + "metadata_dict": { + "mouth": "grin", + "fur": "brown", + "background": "orange", + "eyes": "bloodshot", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5078, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "hat": "fez", + "mouth": "bored", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5079, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "striped tee", + "fur": "golden brown", + "eyes": "bloodshot", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5080, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "hat": "bandana blue", + "fur": "dark brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5081, + "metadata_dict": { + "fur": "cream", + "clothes": "sailor shirt", + "background": "blue", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5082, + "metadata_dict": { + "hat": "sushi chef headband", + "earring": "gold stud", + "background": "purple", + "mouth": "bored", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5083, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "eyes": "sunglasses", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5084, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "earring": "gold hoop", + "clothes": "tanktop", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5085, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "gray", + "hat": "fez", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5086, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "clothes": "striped tee", + "hat": "s&m hat", + "earring": "silver stud", + "background": "aquamarine", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5087, + "metadata_dict": { + "clothes": "vietnam jacket", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc hat red", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5088, + "metadata_dict": { + "mouth": "rage", + "fur": "black", + "clothes": "tanktop", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5089, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "s&m hat", + "clothes": "work vest", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5090, + "metadata_dict": { + "mouth": "phoneme l", + "background": "blue", + "fur": "black", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5091, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "striped tee", + "fur": "cream", + "mouth": "grin", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5092, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "bored unshaven kazoo", + "clothes": "lab coat", + "background": "gray", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5093, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "fur": "dark brown", + "mouth": "bored unshaven kazoo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5094, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "black holes t", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5095, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "spinner hat", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5096, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "phoneme vuh", + "fur": "black", + "clothes": "biker vest", + "earring": "gold stud", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5097, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "bloodshot", + "clothes": "lab coat", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5098, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme oh", + "clothes": "work vest", + "background": "purple", + "fur": "white", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5099, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "hat": "army hat", + "background": "yellow", + "clothes": "hip hop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5100, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "hat": "s&m hat", + "background": "blue", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5101, + "metadata_dict": { + "background": "blue", + "earring": "gold stud", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5102, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "phoneme l", + "fur": "dark brown", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5103, + "metadata_dict": { + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5104, + "metadata_dict": { + "mouth": "bored pipe", + "fur": "brown", + "background": "purple", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5105, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "eyes": "3d", + "clothes": "biker vest", + "background": "orange", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5106, + "metadata_dict": { + "eyes": "closed", + "background": "yellow", + "fur": "black", + "mouth": "tongue out", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5107, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored dagger", + "earring": "diamond stud", + "eyes": "bloodshot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5108, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "purple", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5109, + "metadata_dict": { + "hat": "fez", + "clothes": "biker vest", + "fur": "dark brown", + "background": "orange", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5110, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "black holes t", + "background": "blue", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5111, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "clothes": "black t", + "background": "orange", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5112, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "zombie", + "background": "aquamarine", + "fur": "pink", + "clothes": "tuxedo tee", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5113, + "metadata_dict": { + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5114, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "eyes": "sleepy", + "clothes": "bayc t black", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5115, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "black t", + "background": "aquamarine", + "fur": "black", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5116, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "caveman pelt", + "fur": "trippy", + "hat": "king's crown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5117, + "metadata_dict": { + "clothes": "leather jacket", + "background": "orange", + "fur": "noise", + "hat": "army hat", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5118, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "background": "gray", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5119, + "metadata_dict": { + "background": "gray", + "fur": "white", + "mouth": "bored cigarette", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5120, + "metadata_dict": { + "hat": "safari", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "clothes": "sleeveless logo t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5121, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "clothes": "lab coat", + "fur": "cheetah", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5122, + "metadata_dict": { + "fur": "red", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "hat": "safari", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5123, + "metadata_dict": { + "hat": "irish boho", + "mouth": "phoneme ooo", + "fur": "gray", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5124, + "metadata_dict": { + "fur": "red", + "hat": "commie hat", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5125, + "metadata_dict": { + "fur": "tan", + "eyes": "blindfold", + "mouth": "phoneme vuh", + "clothes": "tie dye", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5126, + "metadata_dict": { + "clothes": "black holes t", + "fur": "dmt", + "hat": "fez", + "eyes": "3d", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5127, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "leather punk jacket", + "earring": "silver stud", + "eyes": "robot", + "fur": "pink", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5128, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless t", + "hat": "faux hawk", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5129, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "horns", + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5130, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "wide eyed", + "mouth": "rage", + "fur": "dark brown", + "background": "purple", + "earring": "cross", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5131, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "eyes": "robot", + "earring": "gold stud", + "hat": "cowboy hat", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5132, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored pipe", + "fur": "pink", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5133, + "metadata_dict": { + "earring": "diamond stud", + "background": "aquamarine", + "fur": "pink", + "eyes": "bored", + "clothes": "tanktop", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5134, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "fur": "golden brown", + "eyes": "coins", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5135, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "hat": "laurel wreath", + "fur": "golden brown", + "earring": "gold hoop", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5136, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "fur": "red", + "clothes": "toga", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5137, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "blindfold", + "fur": "gray", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5138, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "clothes": "caveman pelt", + "mouth": "grin", + "hat": "prussian helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5139, + "metadata_dict": { + "mouth": "jovial", + "fur": "red", + "background": "gray", + "clothes": "guayabera", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5140, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "hat": "baby's bonnet", + "background": "blue", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5141, + "metadata_dict": { + "eyes": "zombie", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "pink", + "hat": "short mohawk", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5142, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "phoneme vuh", + "earring": "silver hoop", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5143, + "metadata_dict": { + "eyes": "blindfold", + "hat": "stuntman helmet", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5144, + "metadata_dict": { + "background": "blue", + "hat": "beanie", + "mouth": "bored", + "fur": "white", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5145, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "closed", + "clothes": "space suit", + "hat": "seaman's hat", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5146, + "metadata_dict": { + "fur": "black", + "eyes": "3d", + "mouth": "tongue out", + "background": "gray", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5147, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored", + "clothes": "tanktop", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5148, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "hat": "bowler", + "fur": "white", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5149, + "metadata_dict": { + "mouth": "grin", + "earring": "diamond stud", + "clothes": "black t", + "background": "orange", + "fur": "pink", + "hat": "bayc flipped brim", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5150, + "metadata_dict": { + "eyes": "scumbag", + "hat": "seaman's hat", + "clothes": "tie dye", + "earring": "silver hoop", + "mouth": "bored", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5151, + "metadata_dict": { + "eyes": "x eyes", + "hat": "king's crown", + "fur": "dark brown", + "clothes": "tuxedo tee", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5152, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "robot", + "fur": "black", + "background": "orange", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5153, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "tweed suit", + "background": "aquamarine", + "fur": "dark brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5154, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "earring": "gold hoop", + "mouth": "jovial", + "fur": "noise", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5155, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "fur": "dark brown", + "hat": "cowboy hat", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5156, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "biker vest", + "hat": "bunny ears", + "eyes": "sleepy", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5157, + "metadata_dict": { + "clothes": "bandolier", + "background": "blue", + "mouth": "bored", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5158, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black holes t", + "background": "blue", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5159, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "work vest", + "background": "orange", + "eyes": "3d", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5160, + "metadata_dict": { + "fur": "golden brown", + "hat": "stuntman helmet", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5161, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme oh", + "hat": "fez", + "clothes": "leather jacket", + "fur": "black", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5162, + "metadata_dict": { + "eyes": "closed", + "clothes": "sailor shirt", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5163, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "mouth": "tongue out", + "clothes": "pimp coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5164, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "earring": "diamond stud", + "clothes": "black t", + "mouth": "dumbfounded", + "eyes": "robot", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5165, + "metadata_dict": { + "clothes": "bayc t red", + "background": "orange", + "eyes": "bored", + "mouth": "bored cigarette", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5166, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "clothes": "rainbow suspenders", + "earring": "gold stud", + "fur": "black", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5167, + "metadata_dict": { + "fur": "cream", + "hat": "horns", + "earring": "gold hoop", + "clothes": "sailor shirt", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5168, + "metadata_dict": { + "hat": "bayc hat black", + "background": "gray", + "mouth": "bored unshaven kazoo", + "earring": "silver hoop", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5169, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "party hat 1", + "fur": "black", + "clothes": "smoking jacket", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5170, + "metadata_dict": { + "hat": "horns", + "mouth": "bored unshaven cigarette", + "background": "army green", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5171, + "metadata_dict": { + "background": "gray", + "hat": "seaman's hat", + "fur": "dark brown", + "mouth": "small grin", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5172, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "zombie", + "hat": "stuntman helmet", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5173, + "metadata_dict": { + "fur": "trippy", + "clothes": "tweed suit", + "background": "blue", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5174, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "pink", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5175, + "metadata_dict": { + "hat": "horns", + "clothes": "toga", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5176, + "metadata_dict": { + "clothes": "rainbow suspenders", + "earring": "gold stud", + "eyes": "3d", + "fur": "dark brown", + "hat": "bowler", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5177, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "eyes": "3d", + "clothes": "pimp coat", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5178, + "metadata_dict": { + "mouth": "bored dagger", + "earring": "silver stud", + "clothes": "work vest", + "fur": "black", + "hat": "vietnam era helmet", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5179, + "metadata_dict": { + "clothes": "striped tee", + "fur": "gray", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bloodshot", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5180, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "brown", + "background": "purple", + "hat": "cowboy hat", + "clothes": "tanktop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5181, + "metadata_dict": { + "fur": "cream", + "clothes": "black holes t", + "mouth": "dumbfounded", + "earring": "gold stud", + "eyes": "bored", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5182, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "seaman's hat", + "clothes": "sailor shirt", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5183, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "earring": "gold hoop", + "fur": "brown", + "mouth": "bored unshaven cigarette", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5184, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "hat": "fez", + "background": "blue", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5185, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "laurel wreath", + "background": "aquamarine", + "clothes": "smoking jacket", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5186, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "hat": "baby's bonnet", + "clothes": "biker vest", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5187, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "blindfold", + "fur": "black", + "background": "orange", + "clothes": "smoking jacket", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5188, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "s&m hat", + "mouth": "grin", + "earring": "gold hoop", + "clothes": "black t", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5189, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "blindfold", + "fur": "golden brown", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5190, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "blue", + "eyes": "robot", + "hat": "vietnam era helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5191, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "gray", + "earring": "gold hoop", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5192, + "metadata_dict": { + "eyes": "heart", + "background": "gray", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5193, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "cheetah", + "mouth": "bored", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5194, + "metadata_dict": { + "fur": "gray", + "eyes": "coins", + "earring": "silver stud", + "mouth": "tongue out", + "clothes": "hip hop", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5195, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "scumbag", + "mouth": "phoneme ooo", + "earring": "silver stud", + "background": "aquamarine", + "hat": "safari", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5196, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "service", + "earring": "gold stud", + "eyes": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5197, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "king's crown", + "eyes": "3d", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5198, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored cigarette", + "hat": "short mohawk", + "background": "gray", + "fur": "white", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5199, + "metadata_dict": { + "fur": "robot", + "mouth": "bored", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5200, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "clothes": "black t", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5201, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "background": "gray", + "eyes": "sleepy", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5202, + "metadata_dict": { + "fur": "tan", + "mouth": "dumbfounded", + "background": "blue", + "hat": "army hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5203, + "metadata_dict": { + "clothes": "black holes t", + "fur": "dmt", + "mouth": "bored", + "eyes": "bored", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5204, + "metadata_dict": { + "eyes": "eyepatch", + "background": "aquamarine", + "mouth": "small grin", + "earring": "silver hoop", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5205, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "golden brown", + "clothes": "work vest", + "mouth": "tongue out", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5206, + "metadata_dict": { + "mouth": "grin diamond grill", + "eyes": "robot", + "hat": "army hat", + "earring": "silver hoop", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5207, + "metadata_dict": { + "background": "gray", + "mouth": "grin", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5208, + "metadata_dict": { + "fur": "dmt", + "clothes": "work vest", + "background": "blue", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5209, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5210, + "metadata_dict": { + "mouth": "discomfort", + "hat": "horns", + "earring": "gold hoop", + "fur": "pink", + "background": "gray", + "eyes": "angry", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5211, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "clothes": "sailor shirt", + "background": "orange", + "hat": "girl's hair short", + "earring": "cross", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5212, + "metadata_dict": { + "mouth": "jovial", + "background": "orange", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "stunt jacket", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5213, + "metadata_dict": { + "eyes": "blindfold", + "fur": "dmt", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5214, + "metadata_dict": { + "eyes": "x eyes", + "hat": "party hat 1", + "fur": "black", + "background": "orange", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5215, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "earring": "silver stud", + "mouth": "tongue out", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5216, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t red", + "fur": "brown", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5217, + "metadata_dict": { + "earring": "gold hoop", + "fur": "black", + "eyes": "bloodshot", + "clothes": "toga", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5218, + "metadata_dict": { + "background": "yellow", + "clothes": "prison jumpsuit", + "fur": "pink", + "hat": "beanie", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5219, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "red", + "hat": "cowboy hat", + "background": "gray", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5220, + "metadata_dict": { + "eyes": "x eyes", + "fur": "pink", + "background": "gray", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5221, + "metadata_dict": { + "background": "aquamarine", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5222, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "black holes t", + "mouth": "grin", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5223, + "metadata_dict": { + "eyes": "heart", + "earring": "diamond stud", + "background": "orange", + "fur": "death bot", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5224, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "bored bubblegum", + "eyes": "bored", + "fur": "brown", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5225, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "fur": "black", + "background": "gray", + "hat": "bayc hat red", + "clothes": "stunt jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5226, + "metadata_dict": { + "clothes": "smoking jacket", + "eyes": "bloodshot", + "hat": "faux hawk", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5227, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "golden brown", + "clothes": "black t", + "background": "aquamarine", + "hat": "fisherman's hat", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5228, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bone necklace", + "earring": "silver stud", + "eyes": "bloodshot", + "background": "gray", + "hat": "bowler", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5229, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme ooo", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5230, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "earring": "silver hoop", + "eyes": "blue beams", + "mouth": "bored", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5231, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "spinner hat", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5232, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "girl's hair pink", + "fur": "black", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5233, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "earring": "gold stud", + "fur": "solid gold", + "background": "gray", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5234, + "metadata_dict": { + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5235, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "bored unshaven", + "clothes": "tweed suit", + "background": "orange", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5236, + "metadata_dict": { + "hat": "horns", + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5237, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "fez", + "mouth": "dumbfounded", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5238, + "metadata_dict": { + "fur": "golden brown", + "hat": "vietnam era helmet", + "eyes": "3d", + "earring": "silver hoop", + "background": "gray", + "clothes": "prom dress", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5239, + "metadata_dict": { + "earring": "diamond stud", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "purple", + "hat": "commie hat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5240, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "background": "orange", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5241, + "metadata_dict": { + "eyes": "wide eyed", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "hat": "bayc hat red", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5242, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5243, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored pipe", + "background": "army green", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5244, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "mouth": "bored unshaven kazoo", + "earring": "silver hoop", + "hat": "faux hawk", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5245, + "metadata_dict": { + "hat": "horns", + "clothes": "sailor shirt", + "mouth": "jovial", + "fur": "black", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5246, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "phoneme ooo", + "clothes": "black t", + "fur": "pink", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5247, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "coins", + "mouth": "rage", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5248, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "robot", + "clothes": "tanktop", + "hat": "short mohawk", + "background": "gray", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5249, + "metadata_dict": { + "earring": "diamond stud", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5250, + "metadata_dict": { + "fur": "brown", + "background": "purple", + "eyes": "bloodshot", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5251, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5252, + "metadata_dict": { + "mouth": "grin", + "eyes": "bored", + "clothes": "stunt jacket", + "hat": "safari", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5253, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored kazoo", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "cheetah", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5254, + "metadata_dict": { + "eyes": "coins", + "fur": "cheetah", + "hat": "bowler", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5255, + "metadata_dict": { + "fur": "brown", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5256, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5257, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "diamond stud", + "fur": "black", + "background": "purple", + "mouth": "bored", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5258, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "hat": "fez", + "fur": "black", + "earring": "silver hoop", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5259, + "metadata_dict": { + "hat": "fez", + "background": "orange", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5260, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "phoneme vuh", + "hat": "fisherman's hat", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5261, + "metadata_dict": { + "fur": "brown", + "background": "purple", + "eyes": "crazy", + "mouth": "bored unshaven" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5262, + "metadata_dict": { + "fur": "black", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5263, + "metadata_dict": { + "background": "blue", + "earring": "silver hoop", + "clothes": "tanktop", + "eyes": "sleepy", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5264, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tweed suit", + "fur": "dark brown", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5265, + "metadata_dict": { + "fur": "cream", + "hat": "s&m hat", + "mouth": "bored unshaven party horn", + "clothes": "tanktop", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5266, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "background": "gray", + "fur": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5267, + "metadata_dict": { + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "mouth": "tongue out", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5268, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5269, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "red", + "background": "blue", + "clothes": "tie dye", + "hat": "short mohawk", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5270, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "bayc t red", + "fur": "gray", + "earring": "silver hoop", + "background": "yellow", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5271, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5272, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "lumberjack shirt", + "background": "aquamarine", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5273, + "metadata_dict": { + "fur": "cream", + "hat": "girl's hair pink", + "earring": "silver stud", + "background": "orange", + "clothes": "bone necklace", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5274, + "metadata_dict": { + "clothes": "space suit", + "mouth": "rage", + "eyes": "3d", + "fur": "brown", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5275, + "metadata_dict": { + "hat": "halo", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "caveman pelt", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5276, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "mouth": "jovial", + "background": "orange", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5277, + "metadata_dict": { + "eyes": "closed", + "hat": "bandana blue", + "fur": "dark brown", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5278, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "phoneme l", + "fur": "dark brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5279, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "fur": "death bot", + "clothes": "tanktop", + "hat": "vietnam era helmet", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5280, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "mouth": "bored unshaven cigar", + "background": "orange", + "hat": "faux hawk", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5281, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "fur": "red", + "background": "blue", + "clothes": "work vest", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5282, + "metadata_dict": { + "fur": "cream", + "hat": "irish boho", + "mouth": "phoneme ooo", + "background": "aquamarine", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5283, + "metadata_dict": { + "mouth": "grin", + "earring": "diamond stud", + "background": "gray", + "fur": "white", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5284, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "blue", + "fur": "brown", + "eyes": "crazy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5285, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5286, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "fur": "brown", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5287, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "black t", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5288, + "metadata_dict": { + "clothes": "bandolier", + "fur": "noise", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5289, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver stud", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "clothes": "tanktop", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5290, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "earring": "silver hoop", + "mouth": "bored", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5291, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "rage", + "clothes": "tanktop", + "fur": "pink", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5292, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "hat": "seaman's hat", + "fur": "black", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5293, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored unshaven", + "hat": "girl's hair pink", + "fur": "red", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5294, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "fur": "pink", + "background": "gray", + "hat": "vietnam era helmet", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5295, + "metadata_dict": { + "background": "new punk blue", + "clothes": "work vest", + "fur": "black", + "mouth": "bored unshaven cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5296, + "metadata_dict": { + "eyes": "scumbag", + "hat": "king's crown", + "background": "aquamarine", + "fur": "black", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5297, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "grin diamond grill", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5298, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "striped tee", + "background": "blue", + "eyes": "bloodshot", + "fur": "cheetah", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5299, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "earring": "gold hoop", + "mouth": "jovial", + "background": "orange", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5300, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "fur": "dark brown", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5301, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "clothes": "prison jumpsuit", + "fur": "pink", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5302, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "fur": "robot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5303, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "hat": "short mohawk", + "clothes": "sleeveless logo t", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5304, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme l", + "earring": "silver stud", + "fur": "brown", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5305, + "metadata_dict": { + "eyes": "robot", + "background": "orange", + "fur": "dark brown", + "hat": "bunny ears", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5306, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "eyes": "coins", + "earring": "gold stud", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5307, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "short mohawk", + "fur": "dark brown", + "eyes": "bloodshot", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5308, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "coins", + "background": "orange", + "fur": "dark brown", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5309, + "metadata_dict": { + "background": "aquamarine", + "mouth": "jovial", + "clothes": "tie dye", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5310, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "bayc hat red", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5311, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "clothes": "sleeveless t", + "earring": "silver stud", + "background": "aquamarine", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5312, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "silver stud", + "mouth": "bored pizza", + "clothes": "toga", + "background": "gray", + "hat": "safari", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5313, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "grin", + "clothes": "prison jumpsuit", + "hat": "fez", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5314, + "metadata_dict": { + "fur": "golden brown", + "clothes": "tie dye", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5315, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven party horn", + "clothes": "work vest", + "hat": "spinner hat", + "background": "orange", + "earring": "silver hoop", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5316, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "clothes": "rainbow suspenders", + "background": "gray", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5317, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "hat": "prussian helmet", + "mouth": "dumbfounded", + "background": "orange", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5318, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "irish boho", + "earring": "silver hoop", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5319, + "metadata_dict": { + "hat": "seaman's hat", + "background": "orange", + "fur": "brown", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5320, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "hat": "s&m hat", + "clothes": "guayabera", + "mouth": "small grin", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5321, + "metadata_dict": { + "mouth": "discomfort", + "fur": "dmt", + "earring": "gold hoop", + "hat": "beanie", + "background": "gray", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5322, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "fur": "gray", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5323, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "mouth": "bored unshaven", + "background": "aquamarine", + "hat": "short mohawk", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5324, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "gold hoop", + "mouth": "dumbfounded", + "fur": "pink", + "hat": "cowboy hat", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5325, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "background": "blue", + "eyes": "bloodshot", + "clothes": "toga", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5326, + "metadata_dict": { + "eyes": "closed", + "fur": "brown", + "hat": "fez", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5327, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "dmt", + "mouth": "rage", + "background": "purple", + "eyes": "crazy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5328, + "metadata_dict": { + "fur": "golden brown", + "hat": "girl's hair pink", + "eyes": "3d", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5329, + "metadata_dict": { + "background": "new punk blue", + "clothes": "space suit", + "fur": "gray", + "hat": "fez", + "mouth": "bored cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5330, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "fur": "dark brown", + "clothes": "stunt jacket", + "earring": "silver hoop", + "hat": "vietnam era helmet", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5331, + "metadata_dict": { + "eyes": "bloodshot", + "hat": "girl's hair short", + "mouth": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5332, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "bayc t black", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5333, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "background": "orange", + "mouth": "bored unshaven cigarette", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5334, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "background": "orange", + "earring": "silver hoop", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5335, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "s&m hat", + "fur": "black", + "background": "orange", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5336, + "metadata_dict": { + "eyes": "scumbag", + "fur": "red", + "mouth": "tongue out", + "clothes": "pimp coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5337, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "stuntman helmet", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5338, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "space suit", + "background": "blue", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5339, + "metadata_dict": { + "fur": "gray", + "hat": "stuntman helmet", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5340, + "metadata_dict": { + "eyes": "heart", + "mouth": "discomfort", + "clothes": "bandolier", + "background": "blue", + "fur": "dark brown", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5341, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "fur": "brown", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5342, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme oh", + "hat": "fez", + "clothes": "work vest", + "background": "aquamarine", + "fur": "pink" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5343, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "clothes": "black t", + "background": "blue", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5344, + "metadata_dict": { + "eyes": "hypnotized", + "earring": "gold hoop", + "background": "blue", + "fur": "noise", + "clothes": "sleeveless logo t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5345, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "eyes": "bloodshot", + "clothes": "bayc t black", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5346, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "sushi chef headband", + "clothes": "sailor shirt", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5347, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "blue", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "cheetah", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5348, + "metadata_dict": { + "clothes": "blue dress", + "background": "yellow", + "mouth": "dumbfounded", + "fur": "pink", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5349, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "bone tee", + "hat": "beanie", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5350, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "earring": "diamond stud", + "clothes": "prison jumpsuit", + "fur": "red", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5351, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "background": "gray", + "hat": "seaman's hat", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5352, + "metadata_dict": { + "fur": "dmt", + "clothes": "leather jacket", + "eyes": "bloodshot", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5353, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven pizza", + "background": "aquamarine", + "hat": "bayc flipped brim", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5354, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "fur": "black", + "hat": "short mohawk", + "background": "purple", + "eyes": "sunglasses", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5355, + "metadata_dict": { + "hat": "irish boho", + "eyes": "coins", + "clothes": "leather jacket", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5356, + "metadata_dict": { + "background": "aquamarine", + "clothes": "tie dye", + "hat": "army hat", + "mouth": "phoneme wah", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5357, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "background": "blue", + "clothes": "bayc t black", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5358, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "grin", + "background": "blue", + "fur": "black", + "eyes": "bored", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5359, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "diamond stud", + "mouth": "jovial", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5360, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "3d", + "earring": "silver hoop", + "hat": "faux hawk", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5361, + "metadata_dict": { + "eyes": "blindfold", + "fur": "dmt", + "background": "blue", + "mouth": "small grin", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5362, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin", + "eyes": "coins", + "earring": "gold hoop", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5363, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "background": "aquamarine", + "hat": "cowboy hat", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5364, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "bored", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5365, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "seaman's hat", + "clothes": "leather jacket", + "background": "blue", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5366, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "fur": "black", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5367, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "striped tee", + "eyes": "closed", + "fur": "cream", + "mouth": "phoneme ooo", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5368, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "space suit", + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5369, + "metadata_dict": { + "fur": "black", + "background": "purple", + "mouth": "bored", + "clothes": "hip hop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5370, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored kazoo", + "hat": "prussian helmet", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5371, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5372, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "background": "blue", + "fur": "black", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5373, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "background": "blue", + "hat": "spinner hat", + "earring": "silver hoop", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5374, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "fur": "dmt", + "earring": "silver stud", + "clothes": "tie dye", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5375, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "fur": "dmt", + "earring": "silver stud", + "background": "blue", + "clothes": "tuxedo tee", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5376, + "metadata_dict": { + "fur": "dark brown", + "eyes": "blindfold", + "background": "army green", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5377, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "dark brown", + "clothes": "lab coat", + "hat": "beanie", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5378, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "sleeveless t", + "background": "gray", + "fur": "brown", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5379, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "sailor shirt", + "mouth": "jovial", + "fur": "black", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5380, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver stud", + "mouth": "jovial", + "clothes": "tanktop", + "background": "orange", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5381, + "metadata_dict": { + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5382, + "metadata_dict": { + "eyes": "holographic", + "fur": "gray", + "background": "blue", + "hat": "fisherman's hat", + "clothes": "bone necklace", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5383, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "background": "orange", + "hat": "army hat", + "fur": "solid gold", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5384, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "mouth": "phoneme vuh", + "clothes": "biker vest", + "hat": "cowboy hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5385, + "metadata_dict": { + "eyes": "heart", + "clothes": "wool turtleneck", + "fur": "gray", + "background": "yellow", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5386, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "cheetah", + "clothes": "admirals coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5387, + "metadata_dict": { + "fur": "dmt", + "background": "orange", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5388, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "laurel wreath", + "clothes": "sleeveless t", + "earring": "gold stud", + "eyes": "3d", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5389, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "fur": "golden brown", + "clothes": "sailor shirt", + "earring": "gold stud", + "mouth": "tongue out", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5390, + "metadata_dict": { + "clothes": "striped tee", + "fur": "brown", + "background": "orange", + "hat": "army hat", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5391, + "metadata_dict": { + "fur": "black", + "earring": "gold stud", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5392, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "fur": "cream", + "hat": "seaman's hat", + "eyes": "3d", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5393, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "fur": "black", + "clothes": "guayabera", + "hat": "bayc flipped brim", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5394, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "mouth": "grin multicolored", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5395, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black t", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5396, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5397, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "fur": "pink", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5398, + "metadata_dict": { + "mouth": "bored dagger", + "background": "blue", + "fur": "pink", + "hat": "fisherman's hat", + "eyes": "sleepy", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5399, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5400, + "metadata_dict": { + "clothes": "sailor shirt", + "background": "blue", + "mouth": "small grin", + "fur": "brown", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5401, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "bandolier", + "mouth": "phoneme ooo", + "fur": "golden brown", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5402, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "black", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5403, + "metadata_dict": { + "eyes": "blindfold", + "fur": "black", + "hat": "bayc flipped brim", + "clothes": "bone necklace", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5404, + "metadata_dict": { + "eyes": "closed", + "earring": "diamond stud", + "background": "blue", + "clothes": "biker vest", + "hat": "short mohawk", + "fur": "brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5405, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "horns", + "fur": "brown", + "eyes": "bored", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5406, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "earring": "silver stud", + "background": "blue", + "clothes": "bone necklace", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5407, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "earring": "silver hoop", + "eyes": "bored", + "clothes": "tanktop", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5408, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "gold stud", + "clothes": "smoking jacket", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5409, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "phoneme oh", + "eyes": "closed", + "clothes": "black t", + "fur": "pink", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5410, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "clothes": "bayc t black", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5411, + "metadata_dict": { + "eyes": "closed", + "clothes": "bayc t red", + "mouth": "rage", + "earring": "silver stud", + "fur": "red", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5412, + "metadata_dict": { + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "clothes": "pimp coat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5413, + "metadata_dict": { + "hat": "horns", + "earring": "silver stud", + "mouth": "phoneme vuh", + "fur": "pink", + "clothes": "tuxedo tee", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5414, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bone tee", + "eyes": "bored", + "hat": "cowboy hat", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5415, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "toga", + "fur": "cheetah", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5416, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5417, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme ooo", + "clothes": "black t", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5418, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin multicolored", + "clothes": "black suit", + "fur": "red", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5419, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "leather punk jacket", + "mouth": "grin multicolored", + "fur": "gray", + "hat": "spinner hat", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5420, + "metadata_dict": { + "eyes": "eyepatch", + "background": "orange", + "fur": "pink", + "clothes": "tuxedo tee", + "hat": "bayc flipped brim", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5421, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "service", + "mouth": "rage", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5422, + "metadata_dict": { + "background": "blue", + "clothes": "smoking jacket", + "eyes": "crazy", + "mouth": "bored cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5423, + "metadata_dict": { + "fur": "red", + "eyes": "heart", + "mouth": "bored unshaven", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5424, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "hat": "fisherman's hat", + "clothes": "tanktop", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5425, + "metadata_dict": { + "fur": "cream", + "clothes": "sleeveless t", + "hat": "baby's bonnet", + "mouth": "grin diamond grill", + "background": "blue", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5426, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "background": "orange", + "mouth": "tongue out", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5427, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme oh", + "fur": "cream", + "eyes": "blindfold", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5428, + "metadata_dict": { + "background": "aquamarine", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5429, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored", + "background": "gray", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5430, + "metadata_dict": { + "fur": "golden brown", + "background": "yellow", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5431, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme l", + "eyes": "coins", + "clothes": "work vest", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5432, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "eyes": "robot", + "fur": "dark brown", + "background": "gray", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5433, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "fur": "black", + "background": "orange", + "clothes": "sleeveless logo t", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5434, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "work vest", + "fur": "black", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5435, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc flipped brim", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5436, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "background": "aquamarine", + "hat": "bayc flipped brim", + "fur": "white", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5437, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "fur": "cream", + "eyes": "bloodshot", + "mouth": "small grin", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5438, + "metadata_dict": { + "hat": "horns", + "clothes": "sailor shirt", + "mouth": "bored unshaven cigarette", + "background": "purple", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5439, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5440, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "zombie", + "background": "orange", + "clothes": "lab coat", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5441, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "clothes": "work vest", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5442, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "heart", + "clothes": "bayc t red", + "earring": "silver stud", + "hat": "fisherman's hat", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5443, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored pipe", + "earring": "gold stud", + "background": "orange", + "fur": "pink", + "clothes": "bayc t black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5444, + "metadata_dict": { + "eyes": "holographic", + "fur": "dmt", + "clothes": "work vest", + "mouth": "jovial", + "background": "blue", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5445, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "red", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5446, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven party horn", + "background": "yellow", + "eyes": "bored", + "hat": "bowler", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5447, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc flipped brim", + "fur": "death bot", + "eyes": "sleepy", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5448, + "metadata_dict": { + "hat": "s&m hat", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "mouth": "bored unshaven kazoo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5449, + "metadata_dict": { + "clothes": "tweed suit", + "hat": "king's crown", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5450, + "metadata_dict": { + "fur": "tan", + "hat": "laurel wreath", + "mouth": "grin", + "eyes": "zombie", + "clothes": "sleeveless logo t", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5451, + "metadata_dict": { + "clothes": "blue dress", + "mouth": "dumbfounded", + "eyes": "robot", + "fur": "black", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5452, + "metadata_dict": { + "eyes": "laser eyes", + "background": "yellow", + "mouth": "bored", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5453, + "metadata_dict": { + "earring": "silver stud", + "hat": "beanie", + "fur": "black", + "eyes": "3d", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5454, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored pipe", + "background": "orange", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5455, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black t", + "background": "aquamarine", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5456, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "bandana blue", + "clothes": "cowboy shirt", + "background": "orange", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5457, + "metadata_dict": { + "clothes": "space suit", + "fur": "golden brown", + "mouth": "grin", + "hat": "short mohawk", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5458, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "bandolier", + "eyes": "robot", + "fur": "black", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5459, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "black t", + "fur": "pink", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5460, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "fur": "red", + "mouth": "jovial", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5461, + "metadata_dict": { + "hat": "s&m hat", + "background": "gray", + "eyes": "zombie", + "clothes": "sailor shirt", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5462, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "fisherman's hat", + "background": "yellow", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5463, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5464, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "clothes": "sleeveless t", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "army hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5465, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "dark brown", + "hat": "short mohawk", + "background": "gray", + "clothes": "stunt jacket", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5466, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "dark brown", + "clothes": "toga", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5467, + "metadata_dict": { + "mouth": "grin", + "background": "yellow", + "eyes": "heart", + "fur": "cream" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5468, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "closed", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5469, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "robot", + "hat": "short mohawk", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5470, + "metadata_dict": { + "clothes": "striped tee", + "hat": "s&m hat", + "background": "blue", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5471, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "phoneme ooo", + "fur": "red", + "eyes": "bored", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5472, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "phoneme ooo", + "background": "blue", + "clothes": "biker vest", + "hat": "fisherman's hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5473, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "clothes": "black t", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5474, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "background": "gray", + "mouth": "bored unshaven cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5475, + "metadata_dict": { + "fur": "gray", + "mouth": "bored unshaven bubblegum", + "background": "aquamarine", + "clothes": "tanktop", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5476, + "metadata_dict": { + "eyes": "closed", + "clothes": "blue dress", + "hat": "seaman's hat", + "fur": "black", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5477, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "noise", + "hat": "cowboy hat", + "clothes": "lab coat", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5478, + "metadata_dict": { + "background": "blue", + "fur": "black", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5479, + "metadata_dict": { + "hat": "prussian helmet", + "mouth": "jovial", + "earring": "gold stud", + "background": "purple", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5480, + "metadata_dict": { + "fur": "golden brown", + "hat": "baby's bonnet", + "mouth": "bored unshaven bubblegum", + "clothes": "sailor shirt", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5481, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "background": "yellow", + "fur": "dark brown", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5482, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "discomfort", + "fur": "gray", + "eyes": "bored", + "background": "yellow", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5483, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "hat": "army hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5484, + "metadata_dict": { + "fur": "dmt", + "mouth": "dumbfounded", + "background": "purple", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5485, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "background": "blue", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5486, + "metadata_dict": { + "mouth": "tongue out", + "clothes": "tie dye", + "background": "orange", + "fur": "noise", + "eyes": "blue beams" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5487, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "earring": "gold hoop", + "fur": "red", + "clothes": "tuxedo tee", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5488, + "metadata_dict": { + "clothes": "biker vest", + "hat": "fisherman's hat", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5489, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "red", + "eyes": "robot", + "background": "blue", + "mouth": "jovial", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5490, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "background": "aquamarine", + "eyes": "robot", + "hat": "short mohawk", + "fur": "dark brown", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5491, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven pizza", + "earring": "silver stud", + "clothes": "leather jacket", + "fur": "black", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5492, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "brown", + "hat": "bayc flipped brim", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5493, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "clothes": "sailor shirt", + "background": "orange", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5494, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "holographic", + "fur": "red", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5495, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "bored", + "hat": "safari", + "background": "army green", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5496, + "metadata_dict": { + "hat": "horns", + "eyes": "hypnotized", + "mouth": "grin", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5497, + "metadata_dict": { + "eyes": "closed", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "clothes": "bone necklace", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5498, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "fur": "dark brown", + "eyes": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5499, + "metadata_dict": { + "clothes": "work vest", + "fur": "cheetah", + "background": "purple", + "mouth": "bored", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5500, + "metadata_dict": { + "clothes": "bone tee", + "mouth": "phoneme ooo", + "background": "orange", + "eyes": "bored", + "hat": "bowler", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5501, + "metadata_dict": { + "fur": "dmt", + "mouth": "bored", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5502, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "sushi chef headband", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5503, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "black holes t", + "eyes": "3d", + "background": "gray", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5504, + "metadata_dict": { + "mouth": "rage", + "hat": "fisherman's hat", + "background": "yellow", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5505, + "metadata_dict": { + "eyes": "scumbag", + "fur": "brown", + "clothes": "prison jumpsuit", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5506, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5507, + "metadata_dict": { + "eyes": "closed", + "hat": "stuntman helmet", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5508, + "metadata_dict": { + "hat": "seaman's hat", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "fur": "robot", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5509, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5510, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "clothes": "biker vest", + "eyes": "bored", + "fur": "white", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5511, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "bayc t black", + "hat": "ww2 pilot helm", + "fur": "brown", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5512, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5513, + "metadata_dict": { + "eyes": "heart", + "earring": "gold hoop", + "hat": "prussian helmet", + "clothes": "work vest", + "background": "aquamarine", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5514, + "metadata_dict": { + "fur": "gray", + "background": "aquamarine", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5515, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "fur": "black", + "eyes": "blue beams", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5516, + "metadata_dict": { + "eyes": "closed", + "clothes": "lumberjack shirt", + "background": "yellow", + "fur": "black", + "earring": "cross", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5517, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5518, + "metadata_dict": { + "fur": "black", + "earring": "gold stud", + "background": "orange", + "eyes": "bloodshot", + "mouth": "tongue out", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5519, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "phoneme vuh", + "eyes": "robot", + "hat": "ww2 pilot helm", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5520, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5521, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "smoking jacket", + "fur": "dark brown", + "hat": "army hat", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5522, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "gray", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5523, + "metadata_dict": { + "fur": "robot", + "mouth": "bored cigar", + "hat": "bandana blue", + "background": "yellow", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5524, + "metadata_dict": { + "fur": "golden brown", + "earring": "diamond stud", + "hat": "fez", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5525, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bored", + "fur": "brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5526, + "metadata_dict": { + "fur": "dmt", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5527, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "background": "blue", + "earring": "gold stud", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5528, + "metadata_dict": { + "background": "new punk blue", + "fur": "blue", + "hat": "party hat 1", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5529, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "mouth": "dumbfounded", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5530, + "metadata_dict": { + "fur": "tan", + "hat": "s&m hat", + "clothes": "sailor shirt", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5531, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5532, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "gray", + "clothes": "sailor shirt", + "background": "aquamarine", + "hat": "girl's hair short", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5533, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin multicolored", + "background": "blue", + "fur": "death bot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5534, + "metadata_dict": { + "clothes": "black t", + "fur": "black", + "background": "purple", + "mouth": "bored", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5535, + "metadata_dict": { + "fur": "golden brown", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5536, + "metadata_dict": { + "fur": "red", + "background": "orange", + "eyes": "bloodshot", + "clothes": "smoking jacket", + "hat": "cowboy hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5537, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "background": "aquamarine", + "hat": "ww2 pilot helm", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5538, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "prussian helmet", + "mouth": "dumbfounded", + "background": "blue", + "fur": "black", + "eyes": "bored", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5539, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "golden brown", + "clothes": "sailor shirt", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5540, + "metadata_dict": { + "eyes": "x eyes", + "hat": "ww2 pilot helm", + "mouth": "tongue out", + "fur": "cheetah", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5541, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "cowboy shirt", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5542, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5543, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "eyes": "coins", + "earring": "gold stud", + "background": "gray", + "clothes": "bone necklace", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5544, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "hat": "army hat", + "clothes": "admirals coat", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5545, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "earring": "diamond stud", + "hat": "king's crown", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5546, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "fur": "golden brown", + "clothes": "black t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5547, + "metadata_dict": { + "eyes": "3d", + "background": "orange", + "clothes": "bone necklace", + "mouth": "bored cigarette", + "fur": "zombie", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5548, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "stuntman helmet", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5549, + "metadata_dict": { + "mouth": "grin", + "clothes": "leather jacket", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray", + "hat": "vietnam era helmet", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5550, + "metadata_dict": { + "clothes": "leather jacket", + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5551, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "sleeveless t", + "hat": "girl's hair pink", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5552, + "metadata_dict": { + "background": "purple", + "eyes": "closed", + "mouth": "phoneme oh", + "fur": "cream" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5553, + "metadata_dict": { + "hat": "irish boho", + "eyes": "zombie", + "background": "aquamarine", + "clothes": "biker vest", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5554, + "metadata_dict": { + "eyes": "heart", + "mouth": "rage", + "clothes": "toga", + "background": "gray", + "hat": "vietnam era helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5555, + "metadata_dict": { + "clothes": "black suit", + "background": "yellow", + "fur": "dark brown", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5556, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "cream", + "mouth": "phoneme vuh", + "clothes": "leather jacket", + "background": "orange", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5557, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "biker vest", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5558, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5559, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "hat": "fez", + "fur": "black", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5560, + "metadata_dict": { + "clothes": "space suit", + "fur": "golden brown", + "hat": "girl's hair short", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5561, + "metadata_dict": { + "fur": "golden brown", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "background": "gray", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5562, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "background": "aquamarine", + "hat": "bayc flipped brim", + "eyes": "bored", + "clothes": "sleeveless logo t", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5563, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored cigar", + "clothes": "bandolier", + "background": "orange", + "fur": "death bot", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5564, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "purple", + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5565, + "metadata_dict": { + "fur": "brown", + "hat": "beanie", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5566, + "metadata_dict": { + "eyes": "laser eyes", + "earring": "gold stud", + "hat": "faux hawk", + "background": "purple", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5567, + "metadata_dict": { + "fur": "brown", + "background": "purple", + "eyes": "bloodshot", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5568, + "metadata_dict": { + "fur": "tan", + "mouth": "bored party horn", + "background": "aquamarine", + "clothes": "smoking jacket", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5569, + "metadata_dict": { + "background": "yellow", + "mouth": "bored", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5570, + "metadata_dict": { + "fur": "tan", + "eyes": "blindfold", + "mouth": "grin", + "hat": "party hat 1", + "background": "aquamarine", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5571, + "metadata_dict": { + "background": "aquamarine", + "eyes": "robot", + "hat": "bowler", + "mouth": "bored cigarette", + "fur": "robot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5572, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5573, + "metadata_dict": { + "eyes": "heart", + "hat": "fisherman's hat", + "background": "aquamarine", + "fur": "death bot", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5574, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "clothes": "striped tee", + "mouth": "small grin", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5575, + "metadata_dict": { + "background": "new punk blue", + "fur": "noise", + "eyes": "bored", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5576, + "metadata_dict": { + "fur": "brown", + "eyes": "zombie", + "background": "orange", + "mouth": "grin gold grill" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5577, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "jovial", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5578, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "jovial", + "background": "blue", + "fur": "black", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5579, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "fur": "golden brown", + "eyes": "crazy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5580, + "metadata_dict": { + "clothes": "black holes t", + "fur": "dark brown", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5581, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "black", + "eyes": "bored", + "clothes": "lab coat", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5582, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "phoneme ooo", + "hat": "baby's bonnet", + "fur": "golden brown", + "background": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5583, + "metadata_dict": { + "eyes": "coins", + "hat": "girl's hair pink", + "clothes": "sailor shirt", + "background": "blue", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5584, + "metadata_dict": { + "eyes": "scumbag", + "fur": "dark brown", + "mouth": "tongue out", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5585, + "metadata_dict": { + "background": "new punk blue", + "fur": "dmt", + "eyes": "bored", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5586, + "metadata_dict": { + "hat": "party hat 1", + "eyes": "robot", + "fur": "cheetah", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5587, + "metadata_dict": { + "fur": "cream", + "hat": "s&m hat", + "earring": "diamond stud", + "background": "blue", + "clothes": "tie dye", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5588, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "clothes": "striped tee", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "dark brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5589, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "fur": "trippy", + "clothes": "tweed suit", + "earring": "silver stud", + "hat": "beanie", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5590, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "mouth": "grin", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5591, + "metadata_dict": { + "fur": "gray", + "mouth": "rage", + "background": "orange", + "clothes": "tanktop", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5592, + "metadata_dict": { + "fur": "cream", + "hat": "cowboy hat", + "clothes": "toga", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5593, + "metadata_dict": { + "eyes": "coins", + "clothes": "rainbow suspenders", + "fur": "red", + "hat": "faux hawk", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5594, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "coins", + "mouth": "bored bubblegum", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5595, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored kazoo", + "eyes": "coins", + "hat": "stuntman helmet", + "fur": "pink", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5596, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "red", + "clothes": "tie dye", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5597, + "metadata_dict": { + "eyes": "holographic", + "fur": "trippy", + "background": "blue", + "mouth": "tongue out", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5598, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "clothes": "tie dye", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5599, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "holographic", + "clothes": "sleeveless t", + "hat": "bowler", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5600, + "metadata_dict": { + "clothes": "striped tee", + "earring": "gold hoop", + "background": "aquamarine", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5601, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "zombie", + "hat": "ww2 pilot helm" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5602, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "fez", + "mouth": "jovial", + "fur": "dark brown", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5603, + "metadata_dict": { + "fur": "golden brown", + "hat": "beanie", + "clothes": "bone necklace", + "mouth": "phoneme wah", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5604, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "earring": "gold stud", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5605, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "black", + "hat": "bayc flipped brim", + "clothes": "bone necklace", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5606, + "metadata_dict": { + "mouth": "grin", + "eyes": "robot", + "hat": "ww2 pilot helm", + "background": "yellow", + "fur": "white", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5607, + "metadata_dict": { + "background": "new punk blue", + "hat": "girl's hair short", + "clothes": "toga", + "fur": "death bot", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5608, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "diamond stud", + "fur": "pink", + "background": "orange", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5609, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "discomfort", + "eyes": "coins", + "clothes": "tweed suit", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5610, + "metadata_dict": { + "eyes": "x eyes", + "hat": "bayc hat black", + "clothes": "lumberjack shirt", + "fur": "red", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5611, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored cigarette", + "fur": "red", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5612, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "dmt", + "background": "orange", + "hat": "short mohawk", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5613, + "metadata_dict": { + "background": "gray", + "fur": "black", + "mouth": "bored unshaven cigarette", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5614, + "metadata_dict": { + "eyes": "heart", + "clothes": "leather punk jacket", + "hat": "seaman's hat", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5615, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "eyes": "coins", + "background": "aquamarine", + "fur": "black", + "clothes": "bone necklace", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5616, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "black", + "eyes": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5617, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "dumbfounded", + "fur": "pink", + "hat": "beanie", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5618, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "biker vest", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5619, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "hat": "safari", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5620, + "metadata_dict": { + "mouth": "grin", + "earring": "silver stud", + "background": "orange", + "fur": "noise", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5621, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "gray", + "eyes": "coins", + "hat": "king's crown", + "earring": "silver stud", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5622, + "metadata_dict": { + "fur": "cream", + "earring": "gold hoop", + "hat": "stuntman helmet", + "clothes": "biker vest", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5623, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "eyes": "coins", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5624, + "metadata_dict": { + "fur": "dark brown", + "clothes": "bayc t black", + "hat": "army hat", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5625, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5626, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "eyes": "bloodshot", + "clothes": "caveman pelt", + "fur": "zombie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5627, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "background": "orange", + "fur": "pink", + "clothes": "sleeveless logo t", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5628, + "metadata_dict": { + "eyes": "heart", + "clothes": "bayc t red", + "mouth": "rage", + "hat": "fez", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5629, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "black t", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5630, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "eyes": "bloodshot", + "clothes": "lab coat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5631, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven", + "earring": "gold stud" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5632, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "background": "orange", + "eyes": "bored", + "clothes": "toga", + "hat": "ww2 pilot helm" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5633, + "metadata_dict": { + "fur": "golden brown", + "mouth": "jovial", + "hat": "bayc hat red", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5634, + "metadata_dict": { + "background": "gray", + "mouth": "grin", + "hat": "bunny ears", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5635, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "king's crown", + "fur": "black", + "background": "orange", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5636, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme vuh", + "background": "purple", + "eyes": "3d", + "fur": "brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5637, + "metadata_dict": { + "fur": "tan", + "hat": "halo", + "mouth": "dumbfounded", + "clothes": "smoking jacket", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5638, + "metadata_dict": { + "background": "orange", + "fur": "cheetah", + "mouth": "bored", + "hat": "police motorcycle helmet", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5639, + "metadata_dict": { + "fur": "golden brown", + "mouth": "rage", + "hat": "ww2 pilot helm", + "background": "yellow", + "eyes": "angry", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5640, + "metadata_dict": { + "hat": "irish boho", + "clothes": "hawaiian", + "background": "yellow", + "mouth": "bored", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5641, + "metadata_dict": { + "fur": "tan", + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "background": "blue", + "eyes": "bloodshot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5642, + "metadata_dict": { + "earring": "silver stud", + "mouth": "dumbfounded", + "clothes": "leather jacket", + "fur": "noise", + "eyes": "bored", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5643, + "metadata_dict": { + "hat": "fez", + "background": "aquamarine", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5644, + "metadata_dict": { + "eyes": "closed", + "clothes": "black suit", + "mouth": "dumbfounded", + "hat": "commie hat", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5645, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "fur": "black", + "clothes": "biker vest", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5646, + "metadata_dict": { + "fur": "tan", + "clothes": "wool turtleneck", + "mouth": "bored unshaven bubblegum", + "hat": "stuntman helmet", + "background": "orange", + "earring": "silver hoop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5647, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "eyes": "blindfold", + "clothes": "black suit", + "hat": "spinner hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5648, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "sleeveless t", + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5649, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "hat": "prussian helmet", + "eyes": "bloodshot", + "clothes": "bayc t black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5650, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "blue", + "fur": "dark brown", + "hat": "bayc flipped brim", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5651, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "discomfort", + "fur": "dark brown", + "clothes": "bayc t black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5652, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "work vest", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5653, + "metadata_dict": { + "eyes": "closed", + "clothes": "leather punk jacket", + "mouth": "grin", + "fur": "golden brown", + "background": "orange", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5654, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "dark brown", + "hat": "short mohawk", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5655, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "bored", + "background": "gray", + "hat": "commie hat", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5656, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "background": "aquamarine", + "clothes": "bone necklace", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5657, + "metadata_dict": { + "hat": "baby's bonnet", + "earring": "gold stud", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5658, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "mouth": "small grin", + "earring": "silver hoop", + "clothes": "pimp coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5659, + "metadata_dict": { + "hat": "irish boho", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "red", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5660, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5661, + "metadata_dict": { + "background": "new punk blue", + "fur": "pink", + "eyes": "bored", + "hat": "ww2 pilot helm", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5662, + "metadata_dict": { + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5663, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "zombie", + "mouth": "phoneme vuh", + "background": "orange", + "earring": "silver hoop", + "hat": "bowler", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5664, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "beanie", + "eyes": "3d", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5665, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "background": "orange", + "hat": "army hat", + "clothes": "prom dress", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5666, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "tanktop", + "mouth": "bored cigarette", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5667, + "metadata_dict": { + "clothes": "blue dress", + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5668, + "metadata_dict": { + "hat": "irish boho", + "fur": "golden brown", + "clothes": "tweed suit", + "mouth": "rage", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5669, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "holographic", + "background": "gray", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5670, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "black", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5671, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "prussian helmet", + "clothes": "biker vest", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5672, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "clothes": "prom dress", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5673, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "gray", + "mouth": "phoneme wah", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5674, + "metadata_dict": { + "clothes": "bone tee", + "mouth": "small grin", + "background": "purple", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5675, + "metadata_dict": { + "clothes": "blue dress", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "short mohawk", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5676, + "metadata_dict": { + "mouth": "bored kazoo", + "background": "aquamarine", + "fur": "brown", + "hat": "halo", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5677, + "metadata_dict": { + "background": "new punk blue", + "eyes": "sunglasses", + "clothes": "bayc t black", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5678, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "dumbfounded", + "clothes": "guayabera", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5679, + "metadata_dict": { + "fur": "black", + "clothes": "smoking jacket", + "background": "orange", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5680, + "metadata_dict": { + "hat": "irish boho", + "mouth": "dumbfounded", + "earring": "gold stud", + "background": "orange", + "clothes": "navy striped tee", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5681, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "pink", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5682, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "clothes": "striped tee", + "earring": "gold hoop", + "fur": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5683, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme l", + "background": "orange", + "fur": "noise", + "clothes": "navy striped tee", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5684, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "mouth": "bored unshaven cigar", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5685, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "fur": "tan", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5686, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "bayc hat black", + "fur": "dark brown", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5687, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored dagger", + "fur": "cream", + "clothes": "smoking jacket", + "hat": "short mohawk", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5688, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "leather jacket", + "fur": "black", + "hat": "cowboy hat", + "background": "yellow", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5689, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "sleeveless t", + "hat": "sushi chef headband", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5690, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "robot", + "hat": "cowboy hat", + "fur": "cheetah", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5691, + "metadata_dict": { + "eyes": "blindfold", + "hat": "fez", + "background": "aquamarine", + "mouth": "small grin", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5692, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "grin", + "fur": "golden brown", + "background": "orange", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5693, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "mouth": "dumbfounded", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5694, + "metadata_dict": { + "mouth": "jovial", + "background": "blue", + "fur": "brown", + "clothes": "prom dress", + "hat": "commie hat", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5695, + "metadata_dict": { + "clothes": "bone tee", + "hat": "stuntman helmet", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5696, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "fur": "black", + "hat": "beanie", + "eyes": "angry", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5697, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "background": "orange", + "clothes": "stunt jacket", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5698, + "metadata_dict": { + "fur": "tan", + "clothes": "work vest", + "background": "blue", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5699, + "metadata_dict": { + "eyes": "cyborg", + "clothes": "tweed suit", + "mouth": "rage", + "background": "blue", + "hat": "spinner hat", + "earring": "silver hoop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5700, + "metadata_dict": { + "eyes": "zombie", + "background": "orange", + "fur": "brown", + "mouth": "bored", + "clothes": "hip hop", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5701, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme wah", + "fur": "gray", + "background": "orange", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5702, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "black t", + "background": "blue", + "fur": "dark brown", + "hat": "bunny ears", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5703, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather jacket", + "eyes": "bloodshot", + "background": "gray", + "fur": "white", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5704, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "sushi chef headband", + "background": "gray", + "eyes": "cyborg", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5705, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin gold grill", + "clothes": "kings robe", + "fur": "golden brown", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5706, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "robot", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5707, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "cream", + "hat": "ww2 pilot helm", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5708, + "metadata_dict": { + "eyes": "holographic", + "mouth": "bored unshaven pipe", + "background": "blue", + "fur": "black", + "earring": "cross", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5709, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "bored party horn", + "clothes": "smoking jacket", + "fur": "pink", + "background": "yellow", + "hat": "bunny ears", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5710, + "metadata_dict": { + "fur": "golden brown", + "eyes": "sunglasses", + "earring": "diamond stud", + "hat": "short mohawk", + "mouth": "bored unshaven cigarette", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5711, + "metadata_dict": { + "eyes": "angry", + "earring": "diamond stud", + "mouth": "dumbfounded", + "clothes": "biker vest", + "background": "yellow", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5712, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "black suit", + "background": "yellow", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5713, + "metadata_dict": { + "fur": "pink", + "background": "orange", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "mouth": "bored unshaven dagger", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5714, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "clothes": "sleeveless t", + "mouth": "bored unshaven cigarette", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5715, + "metadata_dict": { + "fur": "golden brown", + "eyes": "zombie", + "background": "yellow", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5716, + "metadata_dict": { + "mouth": "bored cigarette", + "fur": "black", + "clothes": "tuxedo tee", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5717, + "metadata_dict": { + "eyes": "heart", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "phoneme wah", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5718, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "black suit", + "fur": "red", + "hat": "spinner hat", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5719, + "metadata_dict": { + "hat": "fez", + "clothes": "prison jumpsuit", + "mouth": "small grin", + "eyes": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5720, + "metadata_dict": { + "fur": "cream", + "mouth": "bored pipe", + "hat": "fisherman's hat", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5721, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "prison jumpsuit", + "fur": "black", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5722, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "eyes": "bloodshot", + "hat": "army hat", + "clothes": "hip hop", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5723, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored party horn", + "fur": "brown", + "hat": "beanie", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5724, + "metadata_dict": { + "clothes": "bandolier", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5725, + "metadata_dict": { + "mouth": "jovial", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5726, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "fur": "pink", + "background": "orange", + "clothes": "navy striped tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5727, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "cowboy shirt", + "fur": "black", + "eyes": "bloodshot", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5728, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "background": "aquamarine", + "earring": "gold stud", + "hat": "bunny ears", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5729, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "fur": "golden brown", + "background": "blue", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5730, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "phoneme vuh", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5731, + "metadata_dict": { + "mouth": "rage", + "eyes": "robot", + "fur": "black", + "background": "yellow", + "hat": "halo", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5732, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "fez", + "mouth": "bored", + "fur": "white", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5733, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "holographic", + "fur": "golden brown", + "clothes": "leather jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5734, + "metadata_dict": { + "clothes": "sleeveless logo t", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "hat": "short mohawk", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5735, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "background": "yellow", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5736, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "coins", + "fur": "red", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5737, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "earring": "gold stud", + "hat": "girl's hair short", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5738, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "phoneme ooo", + "clothes": "tweed suit", + "background": "orange", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5739, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "earring": "diamond stud", + "background": "purple", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5740, + "metadata_dict": { + "eyes": "scumbag", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5741, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "tan", + "clothes": "rainbow suspenders", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5742, + "metadata_dict": { + "eyes": "3d", + "hat": "army hat", + "fur": "solid gold", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5743, + "metadata_dict": { + "clothes": "wool turtleneck", + "earring": "gold stud", + "eyes": "3d", + "hat": "commie hat", + "background": "gray", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5744, + "metadata_dict": { + "clothes": "space suit", + "hat": "seaman's hat", + "eyes": "zombie", + "fur": "gray", + "mouth": "bored party horn", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5745, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "horns", + "earring": "gold stud", + "background": "yellow", + "eyes": "crazy", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5746, + "metadata_dict": { + "eyes": "sunglasses", + "mouth": "jovial", + "fur": "robot", + "clothes": "service", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5747, + "metadata_dict": { + "mouth": "bored pipe", + "clothes": "leather jacket", + "hat": "ww2 pilot helm", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5748, + "metadata_dict": { + "eyes": "coins", + "hat": "king's crown", + "earring": "silver stud", + "background": "aquamarine", + "fur": "red", + "mouth": "jovial", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5749, + "metadata_dict": { + "background": "blue", + "hat": "spinner hat", + "fur": "black", + "eyes": "bored", + "mouth": "phoneme wah", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5750, + "metadata_dict": { + "clothes": "black t", + "hat": "fez", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5751, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "mouth": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5752, + "metadata_dict": { + "eyes": "hypnotized", + "background": "gray", + "mouth": "bored", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5753, + "metadata_dict": { + "mouth": "phoneme l", + "background": "orange", + "fur": "dark brown", + "hat": "army hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5754, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "scumbag", + "earring": "gold hoop", + "background": "blue", + "hat": "girl's hair short", + "clothes": "bone necklace", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5755, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "sailor shirt", + "hat": "party hat 1", + "fur": "black", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5756, + "metadata_dict": { + "clothes": "space suit", + "fur": "gray", + "mouth": "rage", + "hat": "spinner hat", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5757, + "metadata_dict": { + "eyes": "cyborg", + "background": "yellow", + "mouth": "jovial", + "hat": "vietnam era helmet", + "earring": "cross", + "clothes": "hip hop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5758, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "hat": "party hat 1", + "fur": "black", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5759, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "prison jumpsuit", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5760, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored kazoo", + "hat": "party hat 1", + "fur": "brown", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5761, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "mouth": "bored bubblegum", + "hat": "ww2 pilot helm", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5762, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "grin", + "background": "orange", + "fur": "dark brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5763, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5764, + "metadata_dict": { + "hat": "irish boho", + "fur": "gray", + "earring": "diamond stud", + "mouth": "small grin", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5765, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "earring": "diamond stud", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5766, + "metadata_dict": { + "hat": "s&m hat", + "fur": "gray", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5767, + "metadata_dict": { + "mouth": "phoneme wah", + "earring": "silver stud", + "clothes": "biker vest", + "hat": "cowboy hat", + "background": "gray", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5768, + "metadata_dict": { + "eyes": "blindfold", + "fur": "black", + "background": "orange", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5769, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "hat": "seaman's hat", + "background": "orange", + "clothes": "toga", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5770, + "metadata_dict": { + "fur": "golden brown", + "hat": "fez", + "mouth": "jovial", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "yellow", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5771, + "metadata_dict": { + "fur": "black", + "mouth": "small grin", + "earring": "silver hoop", + "hat": "cowboy hat", + "clothes": "tanktop", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5772, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5773, + "metadata_dict": { + "eyes": "blindfold", + "hat": "irish boho", + "mouth": "phoneme vuh", + "clothes": "cowboy shirt", + "background": "blue", + "fur": "pink" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5774, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "tan", + "mouth": "tongue out", + "background": "gray", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5775, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "pink", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5776, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t black", + "fur": "brown", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5777, + "metadata_dict": { + "hat": "beanie", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5778, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "black t", + "earring": "gold stud", + "background": "orange", + "hat": "beanie", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5779, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "earring": "gold stud", + "background": "orange", + "hat": "cowboy hat", + "fur": "brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5780, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "fur": "cream", + "background": "blue", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5781, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tie dye", + "eyes": "bored", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5782, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "mouth": "bored", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5783, + "metadata_dict": { + "eyes": "heart", + "clothes": "caveman pelt", + "mouth": "bored party horn", + "fur": "dark brown", + "background": "yellow", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5784, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored unshaven pipe", + "eyes": "robot", + "fur": "black", + "clothes": "tuxedo tee", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5785, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "tuxedo tee", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5786, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "phoneme oh", + "fur": "gray", + "clothes": "tie dye", + "background": "orange", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5787, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "black", + "hat": "beanie", + "mouth": "bored", + "clothes": "hip hop", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5788, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "eyes": "crazy", + "fur": "white", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5789, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "irish boho", + "mouth": "grin", + "fur": "golden brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5790, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "eyes": "zombie", + "earring": "gold hoop", + "clothes": "rainbow suspenders", + "fur": "brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5791, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "toga", + "background": "purple", + "hat": "safari", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5792, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "gray", + "fur": "white", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5793, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5794, + "metadata_dict": { + "background": "aquamarine", + "fur": "brown", + "eyes": "bored", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5795, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "blue dress", + "earring": "gold stud", + "hat": "army hat", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5796, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "earring": "gold hoop", + "hat": "fez", + "fur": "brown", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5797, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored", + "fur": "pink", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5798, + "metadata_dict": { + "background": "new punk blue", + "hat": "ww2 pilot helm", + "eyes": "bored", + "fur": "death bot", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5799, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "grin", + "fur": "black", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5800, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven pizza", + "fur": "brown", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5801, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "phoneme ooo", + "earring": "silver stud", + "fur": "dark brown", + "hat": "short mohawk", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5802, + "metadata_dict": { + "clothes": "kings robe", + "hat": "irish boho", + "mouth": "grin diamond grill", + "earring": "gold stud", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5803, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "blue", + "clothes": "smoking jacket", + "hat": "beanie", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5804, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "earring": "silver stud", + "eyes": "bored", + "fur": "brown", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5805, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "background": "blue", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5806, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "mouth": "dumbfounded", + "fur": "dark brown", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5807, + "metadata_dict": { + "fur": "red", + "background": "aquamarine", + "hat": "cowboy hat", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5808, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "gray", + "clothes": "leather jacket", + "hat": "short mohawk", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5809, + "metadata_dict": { + "eyes": "holographic", + "earring": "gold hoop", + "background": "blue", + "fur": "solid gold", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5810, + "metadata_dict": { + "earring": "gold hoop", + "background": "blue", + "mouth": "bored unshaven kazoo", + "fur": "cheetah", + "eyes": "sleepy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5811, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "sailor shirt", + "background": "yellow", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5812, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "blue dress", + "eyes": "bored", + "fur": "cheetah", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5813, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "wool turtleneck", + "earring": "silver hoop", + "fur": "death bot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5814, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "fur": "black", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5815, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "silver stud", + "fur": "pink", + "mouth": "bored unshaven cigar", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5816, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "clothes": "lab coat", + "hat": "beanie", + "fur": "white", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5817, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "dark brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5818, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "bored unshaven", + "fur": "red", + "background": "aquamarine", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5819, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "sailor shirt", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5820, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "mouth": "grin", + "fur": "black", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5821, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "girl's hair pink", + "background": "orange", + "eyes": "bloodshot", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5822, + "metadata_dict": { + "fur": "brown", + "hat": "girl's hair pink", + "mouth": "bored bubblegum", + "eyes": "3d", + "clothes": "lab coat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5823, + "metadata_dict": { + "hat": "short mohawk", + "fur": "brown", + "clothes": "bone necklace", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5824, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "girl's hair short", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5825, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "hat": "stuntman helmet", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5826, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "fur": "cream", + "mouth": "small grin", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5827, + "metadata_dict": { + "mouth": "discomfort", + "hat": "seaman's hat", + "fur": "gray", + "eyes": "wide eyed", + "earring": "silver stud", + "background": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5828, + "metadata_dict": { + "clothes": "kings robe", + "fur": "tan", + "eyes": "3d", + "hat": "short mohawk", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5829, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "leather jacket", + "eyes": "robot", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5830, + "metadata_dict": { + "clothes": "striped tee", + "fur": "brown", + "mouth": "rage", + "earring": "gold stud", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5831, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "commie hat", + "background": "yellow", + "mouth": "bored", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5832, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "eyes": "robot", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5833, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5834, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "sleeveless t", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5835, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "jovial", + "fur": "dark brown", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5836, + "metadata_dict": { + "clothes": "blue dress", + "background": "gray", + "mouth": "bored", + "eyes": "crazy", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5837, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "clothes": "black t", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "fisherman's hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5838, + "metadata_dict": { + "hat": "fisherman's hat", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5839, + "metadata_dict": { + "background": "aquamarine", + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored unshaven kazoo", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5840, + "metadata_dict": { + "fur": "brown", + "background": "blue", + "mouth": "rage", + "eyes": "blue beams" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5841, + "metadata_dict": { + "eyes": "zombie", + "hat": "stuntman helmet", + "background": "aquamarine", + "fur": "black", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5842, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "cheetah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5843, + "metadata_dict": { + "eyes": "sleepy", + "hat": "bunny ears", + "fur": "brown", + "background": "yellow", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5844, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "dmt", + "eyes": "zombie", + "background": "orange", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5845, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "orange", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5846, + "metadata_dict": { + "mouth": "tongue out", + "clothes": "sleeveless t", + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5847, + "metadata_dict": { + "eyes": "closed", + "clothes": "space suit", + "fur": "trippy", + "background": "blue", + "earring": "gold stud", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5848, + "metadata_dict": { + "mouth": "phoneme wah", + "background": "aquamarine", + "eyes": "bored", + "fur": "white", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5849, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "eyes": "bloodshot", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5850, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "clothes": "tuxedo tee", + "hat": "faux hawk", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5851, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5852, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored party horn", + "background": "blue", + "fur": "pink", + "hat": "army hat", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5853, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "fur": "cheetah", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5854, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "earring": "silver stud", + "eyes": "3d", + "clothes": "bayc t black", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5855, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "sushi chef headband", + "background": "blue", + "eyes": "3d", + "fur": "brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5856, + "metadata_dict": { + "fur": "gray", + "mouth": "bored unshaven pipe", + "background": "orange", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5857, + "metadata_dict": { + "eyes": "holographic", + "mouth": "grin multicolored", + "clothes": "black t", + "background": "orange", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5858, + "metadata_dict": { + "fur": "zombie", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5859, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "mouth": "dumbfounded", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5860, + "metadata_dict": { + "background": "new punk blue", + "hat": "spinner hat", + "eyes": "bloodshot", + "fur": "dark brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5861, + "metadata_dict": { + "eyes": "closed", + "hat": "fez", + "earring": "silver stud", + "clothes": "smoking jacket", + "fur": "death bot", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5862, + "metadata_dict": { + "hat": "laurel wreath", + "clothes": "black holes t", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5863, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "earring": "silver hoop", + "fur": "brown", + "clothes": "guayabera", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5864, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "gray", + "hat": "party hat 1", + "eyes": "3d", + "clothes": "biker vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5865, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "zombie", + "fur": "noise", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5866, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "background": "yellow", + "earring": "silver hoop", + "eyes": "bored", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5867, + "metadata_dict": { + "earring": "diamond stud", + "hat": "fez", + "fur": "black", + "clothes": "biker vest", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5868, + "metadata_dict": { + "fur": "golden brown", + "hat": "prussian helmet", + "mouth": "phoneme vuh", + "clothes": "tanktop", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5869, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "gray", + "hat": "girl's hair pink", + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5870, + "metadata_dict": { + "clothes": "space suit", + "hat": "prussian helmet", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "noise", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5871, + "metadata_dict": { + "fur": "cream", + "clothes": "prison jumpsuit", + "eyes": "bored", + "background": "gray", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5872, + "metadata_dict": { + "hat": "king's crown", + "fur": "noise", + "mouth": "small grin", + "background": "gray", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5873, + "metadata_dict": { + "eyes": "wide eyed", + "fur": "black", + "mouth": "bored bubblegum", + "hat": "cowboy hat", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5874, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "mouth": "bored pipe", + "fur": "brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5875, + "metadata_dict": { + "fur": "tan", + "hat": "commie hat", + "background": "gray", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5876, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "stuntman helmet", + "background": "aquamarine", + "mouth": "bored pipe", + "fur": "noise", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5877, + "metadata_dict": { + "background": "aquamarine", + "fur": "pink", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "hat": "bowler", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5878, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "fur": "red", + "earring": "gold stud", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5879, + "metadata_dict": { + "fur": "gray", + "earring": "gold hoop", + "mouth": "jovial", + "background": "gray", + "hat": "commie hat", + "clothes": "navy striped tee", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5880, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "hat": "baby's bonnet", + "mouth": "jovial", + "clothes": "stunt jacket", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5881, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "bored pipe", + "clothes": "tie dye", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5882, + "metadata_dict": { + "fur": "golden brown", + "clothes": "cowboy shirt", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5883, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "golden brown", + "eyes": "coins", + "earring": "silver stud", + "hat": "faux hawk", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5884, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "blue", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5885, + "metadata_dict": { + "hat": "laurel wreath", + "eyes": "hypnotized", + "fur": "black", + "mouth": "small grin", + "clothes": "bayc t black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5886, + "metadata_dict": { + "hat": "bayc hat black", + "background": "blue", + "clothes": "cowboy shirt", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5887, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5888, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5889, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sailor shirt", + "earring": "silver stud", + "background": "orange", + "hat": "cowboy hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5890, + "metadata_dict": { + "clothes": "tie dye", + "background": "gray", + "mouth": "bored", + "eyes": "angry", + "hat": "police motorcycle helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5891, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "background": "blue", + "fur": "black", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5892, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "tan", + "background": "purple", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5893, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5894, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "background": "aquamarine", + "eyes": "robot", + "clothes": "tuxedo tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5895, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "fur": "trippy", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5896, + "metadata_dict": { + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "eyes": "crazy", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5897, + "metadata_dict": { + "clothes": "smoking jacket", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5898, + "metadata_dict": { + "background": "yellow", + "fur": "black", + "mouth": "bored cigarette", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5899, + "metadata_dict": { + "fur": "black", + "clothes": "biker vest", + "earring": "silver hoop", + "mouth": "tongue out", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5900, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "cream", + "clothes": "tweed suit", + "background": "blue", + "eyes": "3d", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5901, + "metadata_dict": { + "mouth": "bored dagger", + "background": "orange", + "eyes": "bored", + "clothes": "toga", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5902, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "hat": "stuntman helmet", + "background": "orange", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5903, + "metadata_dict": { + "background": "yellow", + "fur": "black", + "eyes": "bored", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5904, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "earring": "silver stud", + "fur": "red", + "mouth": "bored unshaven kazoo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5905, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "jovial", + "eyes": "robot", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5906, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "hat": "baby's bonnet", + "background": "orange", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5907, + "metadata_dict": { + "background": "orange", + "hat": "bayc hat red", + "mouth": "bored", + "fur": "white", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5908, + "metadata_dict": { + "eyes": "hypnotized", + "background": "aquamarine", + "earring": "gold stud", + "hat": "short mohawk", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5909, + "metadata_dict": { + "eyes": "eyepatch", + "background": "blue", + "clothes": "tie dye", + "fur": "black", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5910, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "cowboy shirt", + "fur": "pink" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5911, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "eyepatch", + "fur": "gray", + "clothes": "black t", + "background": "orange", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5912, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "background": "yellow", + "eyes": "bloodshot", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5913, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "eyes": "holographic", + "background": "orange", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5914, + "metadata_dict": { + "eyes": "closed", + "mouth": "discomfort", + "fur": "golden brown", + "background": "aquamarine", + "clothes": "tanktop", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5915, + "metadata_dict": { + "eyes": "heart", + "fur": "red", + "mouth": "bored", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5916, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "earring": "silver stud", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5917, + "metadata_dict": { + "fur": "cream", + "mouth": "jovial", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5918, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "zombie", + "hat": "prussian helmet", + "earring": "silver stud", + "fur": "brown", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5919, + "metadata_dict": { + "fur": "tan", + "clothes": "rainbow suspenders", + "hat": "fez", + "background": "blue", + "mouth": "bored pizza", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5920, + "metadata_dict": { + "eyes": "coins", + "background": "aquamarine", + "hat": "beanie", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5921, + "metadata_dict": { + "earring": "silver stud", + "hat": "spinner hat", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5922, + "metadata_dict": { + "background": "blue", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5923, + "metadata_dict": { + "background": "gray", + "eyes": "coins", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5924, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "clothes": "sailor shirt", + "fur": "brown", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5925, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "clothes": "black t", + "mouth": "phoneme vuh", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5926, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5927, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "king's crown", + "mouth": "dumbfounded", + "earring": "silver hoop", + "fur": "brown", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5928, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "coins", + "mouth": "dumbfounded", + "fur": "brown", + "background": "yellow", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5929, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "diamond stud", + "clothes": "rainbow suspenders", + "background": "orange", + "eyes": "bloodshot", + "fur": "death bot", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5930, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5931, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "background": "orange", + "clothes": "toga", + "eyes": "crazy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5932, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "earring": "gold hoop", + "hat": "king's crown", + "background": "aquamarine", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5933, + "metadata_dict": { + "fur": "tan", + "clothes": "cowboy shirt", + "mouth": "tongue out", + "background": "gray", + "hat": "commie hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5934, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "noise", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5935, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "clothes": "sailor shirt", + "earring": "silver stud", + "fur": "dark brown", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5936, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "lumberjack shirt", + "mouth": "grin", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5937, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored kazoo", + "background": "aquamarine", + "hat": "short mohawk", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5938, + "metadata_dict": { + "fur": "black", + "eyes": "sleepy", + "background": "blue", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5939, + "metadata_dict": { + "background": "new punk blue", + "fur": "noise", + "earring": "silver hoop", + "mouth": "tongue out", + "clothes": "pimp coat", + "hat": "beanie", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5940, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "clothes": "cowboy shirt", + "fur": "cheetah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5941, + "metadata_dict": { + "earring": "silver stud", + "mouth": "phoneme vuh", + "hat": "faux hawk", + "fur": "brown", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5942, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "coins", + "clothes": "rainbow suspenders", + "background": "orange", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5943, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "orange", + "fur": "dark brown", + "clothes": "stunt jacket", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5944, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "mouth": "bored pipe", + "earring": "gold stud", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5945, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "hat": "baby's bonnet", + "fur": "black", + "earring": "silver hoop", + "clothes": "toga", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5946, + "metadata_dict": { + "background": "blue", + "fur": "black", + "mouth": "bored pipe", + "clothes": "bayc t black", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5947, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "holographic", + "fur": "black", + "hat": "spinner hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5948, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "holographic", + "background": "orange", + "fur": "brown", + "clothes": "prom dress", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5949, + "metadata_dict": { + "fur": "brown", + "mouth": "small grin", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5950, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "blue", + "hat": "cowboy hat", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5951, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "hat": "girl's hair short", + "background": "yellow", + "clothes": "caveman pelt", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5952, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "clothes": "leather jacket", + "fur": "dark brown", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5953, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "black holes t", + "mouth": "grin", + "background": "blue", + "earring": "gold stud", + "fur": "solid gold" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5954, + "metadata_dict": { + "mouth": "rage", + "hat": "army hat", + "eyes": "sleepy", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5955, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bowler", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5956, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "hat": "sushi chef headband", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5957, + "metadata_dict": { + "clothes": "service", + "background": "yellow", + "mouth": "bored", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5958, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "dumbfounded", + "background": "blue", + "fur": "black", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5959, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "background": "aquamarine", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5960, + "metadata_dict": { + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "noise", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5961, + "metadata_dict": { + "eyes": "blindfold", + "fur": "red", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5962, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5963, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "hat": "party hat 1", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5964, + "metadata_dict": { + "background": "new punk blue", + "clothes": "smoking jacket", + "fur": "dark brown", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5965, + "metadata_dict": { + "hat": "horns", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "mouth": "jovial", + "background": "orange", + "fur": "death bot", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5966, + "metadata_dict": { + "clothes": "space suit", + "mouth": "bored party horn", + "fur": "red", + "hat": "short mohawk", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5967, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "blue", + "earring": "silver stud", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5968, + "metadata_dict": { + "fur": "trippy", + "earring": "diamond stud", + "background": "aquamarine", + "mouth": "bored bubblegum", + "clothes": "biker vest", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5969, + "metadata_dict": { + "hat": "horns", + "clothes": "black t", + "earring": "silver hoop", + "background": "purple", + "mouth": "phoneme wah", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5970, + "metadata_dict": { + "background": "orange", + "eyes": "bored", + "hat": "girl's hair short", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5971, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "dumbfounded", + "fur": "pink", + "background": "orange", + "eyes": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5972, + "metadata_dict": { + "background": "new punk blue", + "fur": "pink", + "clothes": "admirals coat", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5973, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "hat": "horns", + "background": "aquamarine", + "mouth": "bored pipe", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5974, + "metadata_dict": { + "clothes": "bandolier", + "fur": "pink", + "earring": "silver hoop", + "mouth": "phoneme wah", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5975, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "clothes": "bone tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5976, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "clothes": "sailor shirt", + "earring": "gold stud", + "fur": "black", + "hat": "vietnam era helmet", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5977, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "bandolier", + "fur": "cream", + "mouth": "bored party horn", + "hat": "army hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5978, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "cream", + "hat": "seaman's hat", + "background": "blue", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5979, + "metadata_dict": { + "background": "new punk blue", + "fur": "trippy", + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5980, + "metadata_dict": { + "background": "gray", + "eyes": "closed", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5981, + "metadata_dict": { + "mouth": "rage", + "fur": "black", + "clothes": "smoking jacket", + "eyes": "3d", + "hat": "girl's hair short", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5982, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "fur": "tan", + "hat": "bandana blue", + "eyes": "blindfold", + "clothes": "blue dress", + "earring": "gold hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5983, + "metadata_dict": { + "background": "new punk blue", + "clothes": "space suit", + "mouth": "grin", + "hat": "seaman's hat", + "fur": "dark brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5984, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "tie dye", + "fur": "brown", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5985, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "jovial", + "hat": "vietnam era helmet", + "background": "army green", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5986, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "fur": "golden brown", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5987, + "metadata_dict": { + "hat": "horns", + "mouth": "bored pipe", + "clothes": "smoking jacket", + "fur": "dark brown", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5988, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "fur": "brown", + "mouth": "dumbfounded", + "clothes": "biker vest", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5989, + "metadata_dict": { + "eyes": "coins", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "hat": "fisherman's hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5990, + "metadata_dict": { + "fur": "cream", + "mouth": "grin diamond grill", + "hat": "army hat", + "eyes": "sleepy", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5991, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored kazoo", + "background": "blue", + "fur": "black", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5992, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "lumberjack shirt", + "fur": "dmt", + "earring": "gold hoop", + "eyes": "bored", + "background": "gray", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5993, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "fur": "black", + "clothes": "smoking jacket", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5994, + "metadata_dict": { + "fur": "tan", + "eyes": "bored", + "hat": "army hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5995, + "metadata_dict": { + "eyes": "closed", + "clothes": "lab coat", + "mouth": "tongue out", + "background": "purple", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5996, + "metadata_dict": { + "mouth": "grin", + "clothes": "smoking jacket", + "hat": "faux hawk", + "background": "gray", + "eyes": "sleepy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5997, + "metadata_dict": { + "background": "new punk blue", + "hat": "baby's bonnet", + "mouth": "phoneme vuh", + "clothes": "cowboy shirt", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5998, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "background": "aquamarine", + "clothes": "leather jacket", + "earring": "gold stud", + "fur": "pink", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5999, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6000, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "blue", + "mouth": "bored", + "fur": "robot", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6001, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "clothes": "smoking jacket", + "mouth": "bored bubblegum", + "eyes": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6002, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven bubblegum", + "clothes": "leather jacket", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6003, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "mouth": "small grin", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6004, + "metadata_dict": { + "fur": "golden brown", + "mouth": "phoneme ooo", + "hat": "girl's hair pink", + "clothes": "leather jacket", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6005, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "background": "blue", + "fur": "noise", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6006, + "metadata_dict": { + "earring": "silver stud", + "fur": "dark brown", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6007, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "clothes": "lumberjack shirt", + "background": "aquamarine", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6008, + "metadata_dict": { + "clothes": "tie dye", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6009, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "background": "yellow", + "eyes": "crazy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6010, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "horns", + "background": "aquamarine", + "fur": "black", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6011, + "metadata_dict": { + "clothes": "space suit", + "eyes": "zombie", + "background": "blue", + "hat": "army hat", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6012, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather jacket", + "background": "purple", + "hat": "cowboy hat", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6013, + "metadata_dict": { + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6014, + "metadata_dict": { + "clothes": "tweed suit", + "fur": "red", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6015, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "mouth": "phoneme vuh", + "fur": "noise", + "clothes": "bayc t black", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6016, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "leather punk jacket", + "fur": "black", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6017, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "bandana blue", + "fur": "brown", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6018, + "metadata_dict": { + "clothes": "sleeveless logo t", + "mouth": "dumbfounded", + "eyes": "robot", + "fur": "black", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6019, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven pipe", + "clothes": "tuxedo tee", + "hat": "cowboy hat", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6020, + "metadata_dict": { + "mouth": "discomfort", + "background": "aquamarine", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "bored", + "hat": "beanie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6021, + "metadata_dict": { + "hat": "baby's bonnet", + "clothes": "work vest", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6022, + "metadata_dict": { + "fur": "brown", + "eyes": "laser eyes", + "mouth": "bored unshaven", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6023, + "metadata_dict": { + "clothes": "space suit", + "mouth": "bored unshaven bubblegum", + "earring": "silver stud", + "fur": "red", + "hat": "vietnam era helmet", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6024, + "metadata_dict": { + "clothes": "black t", + "mouth": "grin diamond grill", + "hat": "bowler", + "fur": "pink", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6025, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "party hat 1", + "fur": "pink", + "eyes": "bored", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6026, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "fez", + "mouth": "rage", + "fur": "black", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6027, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "fur": "cream", + "hat": "seaman's hat", + "eyes": "zombie", + "background": "orange", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6028, + "metadata_dict": { + "background": "gray", + "fur": "black", + "mouth": "bored bubblegum", + "eyes": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6029, + "metadata_dict": { + "background": "new punk blue", + "clothes": "blue dress", + "mouth": "bored party horn", + "fur": "dark brown", + "hat": "fisherman's hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6030, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "laurel wreath", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6031, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "hat": "spinner hat", + "earring": "gold stud", + "mouth": "bored unshaven cigarette", + "clothes": "stunt jacket", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6032, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "dmt", + "earring": "silver stud", + "clothes": "leather jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6033, + "metadata_dict": { + "eyes": "x eyes", + "background": "blue", + "fur": "black", + "hat": "commie hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6034, + "metadata_dict": { + "mouth": "grin", + "clothes": "tweed suit", + "earring": "silver stud", + "eyes": "blue beams", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6035, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6036, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "background": "blue", + "hat": "spinner hat", + "fur": "dark brown", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6037, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "hat": "bowler", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6038, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "fur": "black", + "hat": "commie hat", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6039, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "mouth": "small grin", + "eyes": "bored", + "background": "gray", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6040, + "metadata_dict": { + "hat": "commie hat", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6041, + "metadata_dict": { + "hat": "fez", + "background": "orange", + "eyes": "bored", + "fur": "cheetah", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6042, + "metadata_dict": { + "eyes": "heart", + "hat": "baby's bonnet", + "background": "aquamarine", + "clothes": "sleeveless logo t", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6043, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6044, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "dark brown", + "clothes": "tuxedo tee", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6045, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "mouth": "jovial", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6046, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "clothes": "black t", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6047, + "metadata_dict": { + "fur": "gray", + "mouth": "grin diamond grill", + "background": "blue", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6048, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "x eyes", + "fur": "golden brown", + "background": "yellow", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6049, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "grin", + "fur": "black", + "earring": "cross", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6050, + "metadata_dict": { + "mouth": "phoneme l", + "background": "aquamarine", + "hat": "cowboy hat", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6051, + "metadata_dict": { + "fur": "cream", + "hat": "cowboy hat", + "eyes": "bored", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6052, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "lab coat", + "fur": "brown", + "hat": "vietnam era helmet", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6053, + "metadata_dict": { + "eyes": "closed", + "hat": "laurel wreath", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "earring": "silver stud", + "fur": "red", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6054, + "metadata_dict": { + "eyes": "heart", + "hat": "seaman's hat", + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "clothes": "lab coat", + "background": "yellow", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6055, + "metadata_dict": { + "fur": "tan", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "gray", + "clothes": "guayabera", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6056, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "zombie", + "background": "orange", + "fur": "dark brown", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6057, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "fur": "dark brown", + "eyes": "bored", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6058, + "metadata_dict": { + "fur": "gray", + "hat": "bayc flipped brim", + "eyes": "sleepy", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6059, + "metadata_dict": { + "earring": "diamond stud", + "background": "blue", + "fur": "noise", + "eyes": "bored", + "hat": "faux hawk", + "mouth": "bored unshaven cigarette", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6060, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "earring": "gold stud", + "fur": "dark brown", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6061, + "metadata_dict": { + "background": "new punk blue", + "earring": "diamond stud", + "fur": "gray", + "clothes": "black t", + "mouth": "bored party horn", + "eyes": "bored", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6062, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "eyes": "angry", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6063, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "eyes": "bored", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6064, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cheetah", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6065, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme l", + "fur": "tan", + "clothes": "leather punk jacket", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6066, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "background": "aquamarine", + "hat": "bunny ears", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6067, + "metadata_dict": { + "eyes": "heart", + "hat": "s&m hat", + "mouth": "phoneme vuh", + "fur": "black", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6068, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "fur": "dark brown", + "hat": "army hat", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6069, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6070, + "metadata_dict": { + "fur": "dmt", + "hat": "girl's hair pink", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6071, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "seaman's hat", + "earring": "gold hoop", + "fur": "dark brown", + "clothes": "admirals coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6072, + "metadata_dict": { + "clothes": "bandolier", + "background": "blue", + "fur": "pink", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6073, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "clothes": "tweed suit", + "hat": "fisherman's hat", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6074, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored cigarette", + "clothes": "biker vest", + "hat": "fisherman's hat", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6075, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "earring": "gold stud", + "mouth": "phoneme wah", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6076, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "eyes": "hypnotized", + "hat": "bunny ears", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6077, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme vuh", + "fur": "black", + "clothes": "tie dye", + "hat": "faux hawk", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6078, + "metadata_dict": { + "fur": "cream", + "hat": "irish boho", + "mouth": "rage", + "eyes": "robot", + "background": "blue", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6079, + "metadata_dict": { + "background": "blue", + "clothes": "biker vest", + "eyes": "bloodshot", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6080, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "golden brown", + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "background": "blue", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6081, + "metadata_dict": { + "mouth": "bored bubblegum", + "clothes": "tuxedo tee", + "hat": "beanie", + "background": "purple", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6082, + "metadata_dict": { + "clothes": "tweed suit", + "background": "orange", + "fur": "noise", + "mouth": "bored", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6083, + "metadata_dict": { + "fur": "trippy", + "mouth": "bored unshaven pipe", + "eyes": "robot", + "clothes": "lab coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6084, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "earring": "gold stud", + "mouth": "tongue out", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6085, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "bayc t black", + "hat": "cowboy hat", + "eyes": "bored", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6086, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "wool turtleneck", + "hat": "vietnam era helmet", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6087, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "laurel wreath", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6088, + "metadata_dict": { + "earring": "silver hoop", + "background": "purple", + "mouth": "bored", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6089, + "metadata_dict": { + "background": "new punk blue", + "fur": "blue", + "mouth": "grin", + "earring": "gold hoop", + "hat": "bunny ears", + "eyes": "sunglasses", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6090, + "metadata_dict": { + "earring": "silver stud", + "background": "aquamarine", + "fur": "noise", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6091, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "aquamarine", + "hat": "girl's hair short", + "fur": "brown", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6092, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "eyes": "coins", + "hat": "faux hawk", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6093, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "eyes": "coins", + "clothes": "tweed suit", + "hat": "safari", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6094, + "metadata_dict": { + "hat": "laurel wreath", + "earring": "silver stud", + "fur": "pink", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6095, + "metadata_dict": { + "background": "aquamarine", + "earring": "gold stud", + "eyes": "bloodshot", + "clothes": "bone necklace", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6096, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6097, + "metadata_dict": { + "eyes": "heart", + "clothes": "bayc t red", + "fur": "cream", + "hat": "fez", + "mouth": "bored pipe", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6098, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "tan", + "eyes": "bloodshot", + "background": "gray", + "hat": "commie hat", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6099, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored kazoo", + "clothes": "bandolier", + "fur": "golden brown", + "hat": "girl's hair pink", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6100, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "cream", + "background": "orange", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6101, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "eyes": "bored", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6102, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "background": "orange", + "mouth": "bored", + "earring": "cross", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6103, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "king's crown", + "mouth": "bored pipe", + "fur": "black", + "background": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6104, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "fur": "black", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6105, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin multicolored", + "fur": "golden brown", + "eyes": "bored", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6106, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "mouth": "bored unshaven cigar", + "hat": "beanie", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6107, + "metadata_dict": { + "eyes": "zombie", + "hat": "fez", + "background": "blue", + "fur": "brown", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6108, + "metadata_dict": { + "hat": "fez", + "fur": "dark brown", + "eyes": "bored", + "clothes": "guayabera", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6109, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "mouth": "grin", + "earring": "gold hoop", + "hat": "bowler", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6110, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "mouth": "bored unshaven cigar", + "background": "gray", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6111, + "metadata_dict": { + "background": "gray", + "mouth": "bored cigarette", + "fur": "cream", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6112, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "dark brown", + "background": "yellow", + "clothes": "caveman pelt", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6113, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "fur": "pink", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6114, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "earring": "silver stud", + "mouth": "bored unshaven cigar", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6115, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "eyes": "bored", + "hat": "girl's hair short", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6116, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "fisherman's hat", + "fur": "black", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6117, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "sailor shirt", + "background": "blue", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6118, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "party hat 1", + "background": "blue", + "fur": "pink", + "eyes": "angry", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6119, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "clothes": "guayabera", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6120, + "metadata_dict": { + "eyes": "closed", + "fur": "brown", + "earring": "gold stud", + "clothes": "pimp coat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6121, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "blindfold", + "hat": "irish boho", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6122, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "dark brown", + "hat": "fisherman's hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6123, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "hat": "horns", + "clothes": "biker vest", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6124, + "metadata_dict": { + "background": "aquamarine", + "clothes": "leather jacket", + "hat": "cowboy hat", + "mouth": "bored cigarette", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6125, + "metadata_dict": { + "fur": "cream", + "mouth": "rage", + "clothes": "cowboy shirt", + "background": "blue", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6126, + "metadata_dict": { + "eyes": "heart", + "hat": "short mohawk", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6127, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "earring": "diamond stud", + "mouth": "bored unshaven kazoo", + "eyes": "crazy", + "hat": "commie hat", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6128, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "golden brown", + "mouth": "bored unshaven party horn", + "earring": "gold stud", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6129, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "eyes": "bored", + "background": "gray", + "hat": "halo", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6130, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "aquamarine", + "fur": "pink", + "hat": "ww2 pilot helm", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6131, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "brown", + "hat": "bayc hat red", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6132, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored party horn", + "hat": "party hat 1", + "eyes": "3d", + "fur": "pink", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6133, + "metadata_dict": { + "mouth": "phoneme vuh", + "clothes": "smoking jacket", + "fur": "dark brown", + "background": "gray", + "hat": "bayc hat red", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6134, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "red", + "hat": "short mohawk", + "mouth": "tongue out", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6135, + "metadata_dict": { + "background": "blue", + "clothes": "biker vest", + "fur": "noise", + "mouth": "bored", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6136, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored unshaven cigar", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6137, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme vuh", + "clothes": "cowboy shirt", + "eyes": "bloodshot", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6138, + "metadata_dict": { + "clothes": "work vest", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6139, + "metadata_dict": { + "mouth": "discomfort", + "hat": "baby's bonnet", + "clothes": "prison jumpsuit", + "fur": "pink", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6140, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "noise", + "eyes": "bloodshot", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6141, + "metadata_dict": { + "eyes": "blindfold", + "hat": "ww2 pilot helm", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6142, + "metadata_dict": { + "eyes": "x eyes", + "hat": "party hat 2", + "background": "new punk blue", + "fur": "black", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6143, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "mouth": "grin", + "background": "orange", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6144, + "metadata_dict": { + "hat": "bandana blue", + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "mouth": "small grin", + "earring": "silver hoop", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6145, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "dark brown", + "clothes": "bone necklace", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6146, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "fur": "red", + "earring": "gold stud", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6147, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "striped tee", + "fur": "brown", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6148, + "metadata_dict": { + "eyes": "coins", + "mouth": "rage", + "fur": "black", + "earring": "silver hoop", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6149, + "metadata_dict": { + "eyes": "eyepatch", + "background": "orange", + "hat": "bunny ears", + "fur": "death bot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6150, + "metadata_dict": { + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "yellow", + "mouth": "bored", + "eyes": "angry", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6151, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "earring": "silver stud", + "hat": "army hat", + "fur": "death bot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6152, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "fur": "noise", + "hat": "bayc hat red", + "clothes": "stunt jacket", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6153, + "metadata_dict": { + "mouth": "discomfort", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "army hat", + "clothes": "pimp coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6154, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "stuntman helmet", + "background": "orange", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6155, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "dmt", + "hat": "fez", + "background": "blue", + "eyes": "3d", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6156, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "seaman's hat", + "mouth": "small grin", + "background": "gray", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6157, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "clothes": "bone necklace", + "mouth": "bored unshaven pipe", + "earring": "silver hoop", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6158, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "diamond stud", + "hat": "fez", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6159, + "metadata_dict": { + "fur": "tan", + "background": "orange", + "eyes": "bloodshot", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6160, + "metadata_dict": { + "fur": "dmt", + "clothes": "sailor shirt", + "mouth": "rage", + "background": "orange", + "hat": "fisherman's hat", + "eyes": "sleepy", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6161, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme ooo", + "background": "blue", + "fur": "dark brown", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6162, + "metadata_dict": { + "eyes": "closed", + "hat": "girl's hair pink", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6163, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "mouth": "dumbfounded", + "eyes": "3d", + "hat": "fisherman's hat", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6164, + "metadata_dict": { + "fur": "cheetah", + "earring": "gold stud", + "clothes": "bayc t black", + "hat": "bayc flipped brim", + "background": "gray", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6165, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "coins", + "hat": "girl's hair short", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6166, + "metadata_dict": { + "clothes": "leather jacket", + "eyes": "robot", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6167, + "metadata_dict": { + "hat": "prussian helmet", + "clothes": "prison jumpsuit", + "eyes": "robot", + "background": "blue", + "mouth": "small grin", + "earring": "silver hoop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6168, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless t", + "earring": "gold hoop", + "background": "aquamarine", + "hat": "short mohawk", + "mouth": "small grin", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6169, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "clothes": "prison jumpsuit", + "fur": "red", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6170, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "eyes": "3d", + "background": "orange", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6171, + "metadata_dict": { + "eyes": "closed", + "clothes": "kings robe", + "fur": "cream", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6172, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "eyes": "bloodshot", + "clothes": "tanktop", + "background": "yellow", + "fur": "death bot", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6173, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "horns", + "mouth": "grin", + "earring": "gold stud", + "background": "orange", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6174, + "metadata_dict": { + "eyes": "x eyes", + "hat": "halo", + "fur": "gray", + "mouth": "bored", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6175, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "clothes": "wool turtleneck", + "earring": "gold hoop", + "hat": "fez", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6176, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "leather punk jacket", + "fur": "gray", + "eyes": "3d", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6177, + "metadata_dict": { + "fur": "cream", + "mouth": "dumbfounded", + "background": "yellow", + "hat": "safari", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6178, + "metadata_dict": { + "fur": "tan", + "hat": "party hat 1", + "earring": "gold stud", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6179, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "fur": "golden brown", + "clothes": "work vest", + "mouth": "tongue out", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6180, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "background": "aquamarine", + "clothes": "tanktop", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6181, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "hat": "girl's hair short", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6182, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6183, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "black holes t", + "background": "blue", + "hat": "spinner hat", + "mouth": "bored cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6184, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "sleepy", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6185, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "mouth": "bored unshaven cigar", + "hat": "bowler", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6186, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "fur": "brown", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6187, + "metadata_dict": { + "eyes": "closed", + "hat": "fez", + "mouth": "jovial", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6188, + "metadata_dict": { + "eyes": "scumbag", + "hat": "irish boho", + "fur": "gray", + "background": "aquamarine", + "mouth": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6189, + "metadata_dict": { + "hat": "horns", + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "clothes": "tie dye", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6190, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "eyes": "coins", + "background": "blue", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6191, + "metadata_dict": { + "background": "blue", + "clothes": "leather jacket", + "hat": "short mohawk", + "earring": "silver hoop", + "mouth": "bored unshaven cigar", + "fur": "cheetah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6192, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "black", + "clothes": "biker vest", + "earring": "silver hoop", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6193, + "metadata_dict": { + "fur": "gray", + "earring": "gold hoop", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6194, + "metadata_dict": { + "eyes": "scumbag", + "fur": "gray", + "clothes": "lab coat", + "mouth": "grin diamond grill", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6195, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "background": "purple", + "fur": "cheetah", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6196, + "metadata_dict": { + "fur": "cream", + "mouth": "jovial", + "clothes": "stunt jacket", + "hat": "beanie", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6197, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "hat": "prussian helmet", + "mouth": "dumbfounded", + "clothes": "pimp coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6198, + "metadata_dict": { + "fur": "golden brown", + "clothes": "rainbow suspenders", + "mouth": "phoneme vuh", + "eyes": "bored", + "hat": "cowboy hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6199, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin", + "earring": "gold hoop", + "fur": "red", + "hat": "fisherman's hat", + "clothes": "caveman pelt", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6200, + "metadata_dict": { + "fur": "tan", + "background": "blue", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "bone tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6201, + "metadata_dict": { + "eyes": "heart", + "mouth": "jovial", + "clothes": "pimp coat", + "hat": "bowler", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6202, + "metadata_dict": { + "background": "new punk blue", + "eyes": "sunglasses", + "mouth": "phoneme vuh", + "clothes": "tanktop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6203, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "blue", + "eyes": "3d", + "mouth": "bored", + "hat": "police motorcycle helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6204, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "lumberjack shirt", + "background": "blue", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6205, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "s&m hat", + "mouth": "dumbfounded", + "background": "blue", + "fur": "cheetah", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6206, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "zombie", + "background": "orange", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6207, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored bubblegum", + "fur": "noise", + "eyes": "blue beams", + "hat": "bunny ears", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6208, + "metadata_dict": { + "hat": "horns", + "mouth": "grin multicolored", + "earring": "gold hoop", + "fur": "gray", + "clothes": "tweed suit", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6209, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "wool turtleneck", + "fur": "dmt", + "background": "aquamarine", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6210, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "black holes t", + "eyes": "hypnotized", + "hat": "seaman's hat", + "background": "blue", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6211, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "sushi chef headband", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "black", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6212, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored unshaven pipe", + "eyes": "3d", + "clothes": "bayc t black", + "fur": "brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6213, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6214, + "metadata_dict": { + "fur": "golden brown", + "background": "yellow", + "eyes": "bored", + "hat": "bowler", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6215, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown", + "hat": "army hat", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6216, + "metadata_dict": { + "eyes": "heart", + "clothes": "leather jacket", + "background": "orange", + "fur": "dark brown", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6217, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "mouth": "phoneme vuh", + "fur": "dark brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6218, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "fur": "dark brown", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6219, + "metadata_dict": { + "earring": "gold hoop", + "eyes": "coins", + "mouth": "phoneme vuh", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6220, + "metadata_dict": { + "background": "new punk blue", + "hat": "bandana blue", + "mouth": "dumbfounded", + "eyes": "robot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6221, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "rage", + "earring": "silver stud", + "fur": "pink", + "hat": "cowboy hat", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6222, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "background": "blue", + "clothes": "cowboy shirt", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6223, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "horns", + "fur": "golden brown", + "background": "aquamarine", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6224, + "metadata_dict": { + "fur": "red", + "background": "orange", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6225, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "eyes": "bloodshot", + "hat": "army hat", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6226, + "metadata_dict": { + "background": "blue", + "clothes": "smoking jacket", + "fur": "dark brown", + "hat": "commie hat", + "mouth": "bored", + "eyes": "bored", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6227, + "metadata_dict": { + "eyes": "closed", + "hat": "spinner hat", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6228, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "background": "blue", + "fur": "dark brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6229, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6230, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "heart", + "hat": "fez", + "fur": "red", + "background": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6231, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "tweed suit", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored cigarette", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6232, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "blue beams", + "background": "gray", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6233, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "eyes": "bloodshot", + "hat": "ww2 pilot helm", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6234, + "metadata_dict": { + "clothes": "bandolier", + "fur": "red", + "background": "blue", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6235, + "metadata_dict": { + "mouth": "grin", + "fur": "brown", + "clothes": "sailor shirt", + "hat": "fez", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6236, + "metadata_dict": { + "hat": "horns", + "fur": "gray", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6237, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "blue dress", + "fur": "red", + "background": "orange", + "eyes": "3d", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6238, + "metadata_dict": { + "hat": "spinner hat", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6239, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven cigarette", + "background": "blue", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6240, + "metadata_dict": { + "background": "new punk blue", + "fur": "pink", + "clothes": "toga", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6241, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "brown", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6242, + "metadata_dict": { + "fur": "black", + "background": "orange", + "mouth": "small grin", + "eyes": "bored", + "hat": "bowler", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6243, + "metadata_dict": { + "fur": "tan", + "hat": "sea captain's hat", + "mouth": "rage", + "background": "blue", + "earring": "cross", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6244, + "metadata_dict": { + "hat": "halo", + "fur": "brown", + "earring": "gold hoop", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6245, + "metadata_dict": { + "clothes": "black t", + "mouth": "bored unshaven pipe", + "earring": "gold stud", + "hat": "army hat", + "background": "purple", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6246, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "brown", + "eyes": "3d", + "hat": "ww2 pilot helm", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6247, + "metadata_dict": { + "eyes": "3d", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6248, + "metadata_dict": { + "fur": "cream", + "eyes": "bloodshot", + "clothes": "tanktop", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6249, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "striped tee", + "fur": "golden brown", + "eyes": "coins", + "mouth": "grin diamond grill", + "background": "orange", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6250, + "metadata_dict": { + "fur": "cream", + "earring": "gold stud", + "background": "orange", + "hat": "bayc flipped brim", + "eyes": "bored", + "clothes": "lab coat", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6251, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "background": "orange", + "clothes": "tuxedo tee", + "hat": "ww2 pilot helm", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6252, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "dmt", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6253, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "earring": "gold hoop", + "mouth": "dumbfounded", + "clothes": "work vest", + "hat": "short mohawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6254, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "3d", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6255, + "metadata_dict": { + "fur": "cream", + "earring": "diamond stud", + "hat": "prussian helmet", + "clothes": "work vest", + "eyes": "3d", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6256, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "clothes": "cowboy shirt", + "earring": "gold stud", + "background": "blue", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6257, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "eyes": "robot", + "background": "blue", + "fur": "cheetah", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6258, + "metadata_dict": { + "mouth": "jovial", + "earring": "gold stud", + "background": "purple", + "hat": "bunny ears", + "fur": "brown", + "clothes": "guayabera", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6259, + "metadata_dict": { + "fur": "tan", + "clothes": "space suit", + "mouth": "bored party horn", + "background": "aquamarine", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6260, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "eyes": "bored", + "hat": "ww2 pilot helm", + "clothes": "sleeveless logo t", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6261, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven bubblegum", + "clothes": "biker vest", + "background": "yellow", + "hat": "bunny ears", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6262, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "zombie", + "background": "aquamarine", + "mouth": "bored cigarette", + "clothes": "caveman pelt", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6263, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "dmt", + "background": "aquamarine", + "earring": "gold stud", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6264, + "metadata_dict": { + "fur": "black", + "mouth": "tongue out", + "clothes": "admirals coat", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6265, + "metadata_dict": { + "fur": "cheetah", + "background": "gray", + "mouth": "bored unshaven", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6266, + "metadata_dict": { + "mouth": "bored dagger", + "background": "aquamarine", + "fur": "black", + "hat": "bayc flipped brim", + "eyes": "bored", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6267, + "metadata_dict": { + "fur": "trippy", + "background": "blue", + "hat": "safari", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6268, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "cream", + "hat": "fisherman's hat", + "background": "gray", + "clothes": "prom dress", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6269, + "metadata_dict": { + "clothes": "caveman pelt", + "eyes": "blue beams", + "fur": "death bot", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6270, + "metadata_dict": { + "eyes": "heart", + "clothes": "blue dress", + "hat": "fez", + "earring": "silver stud", + "fur": "cheetah", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6271, + "metadata_dict": { + "clothes": "toga", + "eyes": "bloodshot", + "fur": "death bot", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6272, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "stuntman helmet", + "clothes": "leather jacket", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6273, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6274, + "metadata_dict": { + "eyes": "sad", + "fur": "dark brown", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6275, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "clothes": "black suit", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6276, + "metadata_dict": { + "hat": "girl's hair pink", + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "smoking jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6277, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "earring": "gold stud", + "background": "orange", + "hat": "beanie", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6278, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "fur": "black", + "mouth": "small grin", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6279, + "metadata_dict": { + "mouth": "bored dagger", + "background": "blue", + "hat": "spinner hat", + "clothes": "tie dye", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6280, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver stud", + "fur": "red", + "hat": "girl's hair short", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6281, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "clothes": "bandolier", + "hat": "sushi chef headband", + "background": "blue", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6282, + "metadata_dict": { + "background": "new punk blue", + "hat": "prussian helmet", + "clothes": "sailor shirt", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6283, + "metadata_dict": { + "eyes": "closed", + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "background": "orange", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6284, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "zombie", + "background": "aquamarine", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6285, + "metadata_dict": { + "eyes": "angry", + "clothes": "tweed suit", + "mouth": "phoneme vuh", + "background": "yellow", + "fur": "white", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6286, + "metadata_dict": { + "earring": "gold stud", + "fur": "dark brown", + "hat": "short mohawk", + "background": "gray", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6287, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "jovial", + "background": "orange", + "fur": "dark brown", + "hat": "vietnam era helmet", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6288, + "metadata_dict": { + "fur": "cream", + "mouth": "phoneme vuh", + "hat": "fisherman's hat", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6289, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "clothes": "cowboy shirt", + "fur": "noise", + "hat": "fisherman's hat", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6290, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored party horn", + "fur": "black", + "eyes": "bored", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6291, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "3d", + "hat": "beanie", + "mouth": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6292, + "metadata_dict": { + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored", + "fur": "robot", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6293, + "metadata_dict": { + "clothes": "caveman pelt", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6294, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "dmt", + "clothes": "work vest", + "hat": "vietnam era helmet", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6295, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "cowboy hat", + "background": "yellow", + "clothes": "stunt jacket", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6296, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "robot", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6297, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6298, + "metadata_dict": { + "clothes": "bone tee", + "background": "blue", + "eyes": "crazy", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6299, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "bored", + "fur": "death bot", + "hat": "commie hat", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6300, + "metadata_dict": { + "hat": "baby's bonnet", + "mouth": "bored unshaven cigarette", + "clothes": "work vest", + "fur": "dark brown", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6301, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "trippy", + "hat": "fez", + "background": "aquamarine", + "clothes": "tanktop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6302, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "earring": "gold stud", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6303, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "fez", + "background": "orange", + "clothes": "sleeveless logo t", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6304, + "metadata_dict": { + "eyes": "x eyes", + "fur": "dmt", + "earring": "silver stud", + "clothes": "tuxedo tee", + "hat": "army hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6305, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6306, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "hypnotized", + "fur": "gray", + "earring": "gold stud", + "background": "orange", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6307, + "metadata_dict": { + "background": "blue", + "mouth": "small grin", + "hat": "cowboy hat", + "fur": "cheetah", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6308, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "clothes": "work vest", + "background": "yellow", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6309, + "metadata_dict": { + "fur": "tan", + "clothes": "sailor shirt", + "background": "aquamarine", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6310, + "metadata_dict": { + "background": "blue", + "hat": "spinner hat", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6311, + "metadata_dict": { + "fur": "tan", + "background": "yellow", + "eyes": "3d", + "hat": "ww2 pilot helm", + "clothes": "bone necklace", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6312, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "background": "aquamarine", + "mouth": "bored bubblegum", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6313, + "metadata_dict": { + "earring": "gold hoop", + "fur": "pink", + "background": "yellow", + "mouth": "bored", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6314, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6315, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "trippy", + "hat": "fisherman's hat", + "clothes": "guayabera", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6316, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "mouth": "small grin", + "hat": "army hat", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6317, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6318, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "closed", + "clothes": "black t", + "hat": "fez", + "fur": "dark brown", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6319, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "gray", + "background": "aquamarine", + "eyes": "bored", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6320, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "hat": "s&m hat", + "background": "blue", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6321, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "earring": "silver stud", + "eyes": "bored", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6322, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "mouth": "grin", + "clothes": "tanktop", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6323, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "hat": "s&m hat", + "clothes": "black holes t", + "background": "blue", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6324, + "metadata_dict": { + "clothes": "black holes t", + "fur": "zombie", + "mouth": "dumbfounded", + "hat": "spinner hat", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6325, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "discomfort", + "background": "aquamarine", + "clothes": "biker vest", + "hat": "short mohawk", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6326, + "metadata_dict": { + "background": "purple", + "clothes": "smoking jacket", + "fur": "death bot", + "eyes": "sleepy", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6327, + "metadata_dict": { + "fur": "red", + "eyes": "sleepy", + "mouth": "bored unshaven", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6328, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "s&m hat", + "background": "aquamarine", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6329, + "metadata_dict": { + "hat": "prussian helmet", + "mouth": "phoneme vuh", + "background": "blue", + "clothes": "biker vest", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6330, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "seaman's hat", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "purple", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6331, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "mouth": "bored unshaven party horn", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6332, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6333, + "metadata_dict": { + "hat": "irish boho", + "background": "orange", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "lab coat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6334, + "metadata_dict": { + "eyes": "zombie", + "background": "blue", + "hat": "short mohawk", + "earring": "silver hoop", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6335, + "metadata_dict": { + "eyes": "blindfold", + "hat": "seaman's hat", + "fur": "gray", + "clothes": "toga", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6336, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "clothes": "biker vest", + "eyes": "bored", + "fur": "brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6337, + "metadata_dict": { + "fur": "gray", + "hat": "ww2 pilot helm", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6338, + "metadata_dict": { + "fur": "brown", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "hat": "bowler", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6339, + "metadata_dict": { + "mouth": "grin", + "hat": "prussian helmet", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "3d", + "fur": "noise", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6340, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "tanktop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6341, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "eyes": "closed", + "fur": "dark brown", + "mouth": "small grin", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6342, + "metadata_dict": { + "earring": "gold stud", + "background": "orange", + "hat": "bayc flipped brim", + "mouth": "small grin", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6343, + "metadata_dict": { + "fur": "dark brown", + "hat": "commie hat", + "background": "gray", + "clothes": "bone necklace", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6344, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "sleeveless t", + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6345, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "sleepy", + "fur": "death bot", + "background": "purple", + "clothes": "bone tee", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6346, + "metadata_dict": { + "eyes": "closed", + "clothes": "sailor shirt", + "background": "blue", + "hat": "ww2 pilot helm", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6347, + "metadata_dict": { + "clothes": "striped tee", + "earring": "diamond stud", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6348, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6349, + "metadata_dict": { + "mouth": "bored dagger", + "eyes": "hypnotized", + "clothes": "work vest", + "fur": "pink", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6350, + "metadata_dict": { + "clothes": "striped tee", + "hat": "seaman's hat", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "phoneme wah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6351, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "hat": "seaman's hat", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6352, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "tongue out", + "fur": "golden brown", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6353, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "earring": "silver stud", + "mouth": "phoneme wah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6354, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "fur": "white", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6355, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "bloodshot", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6356, + "metadata_dict": { + "fur": "tan", + "clothes": "work vest", + "eyes": "robot", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6357, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "fur": "pink", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6358, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "coins", + "fur": "dark brown", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6359, + "metadata_dict": { + "hat": "s&m hat", + "earring": "gold hoop", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "tanktop", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6360, + "metadata_dict": { + "fur": "cream", + "clothes": "prison jumpsuit", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6361, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "orange", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6362, + "metadata_dict": { + "eyes": "blindfold", + "earring": "gold hoop", + "clothes": "smoking jacket", + "fur": "noise", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6363, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme vuh", + "background": "gray", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6364, + "metadata_dict": { + "eyes": "hypnotized", + "background": "blue", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6365, + "metadata_dict": { + "clothes": "striped tee", + "earring": "diamond stud", + "hat": "party hat 1", + "mouth": "dumbfounded", + "eyes": "crazy", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6366, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "hat": "fez", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6367, + "metadata_dict": { + "clothes": "blue dress", + "mouth": "dumbfounded", + "fur": "black", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6368, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cheetah", + "eyes": "robot", + "clothes": "tanktop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6369, + "metadata_dict": { + "clothes": "space suit", + "mouth": "grin multicolored", + "fur": "gray", + "background": "orange", + "hat": "girl's hair short", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6370, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "background": "aquamarine", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6371, + "metadata_dict": { + "eyes": "heart", + "mouth": "discomfort", + "clothes": "black t", + "fur": "dark brown", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6372, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6373, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "gray", + "clothes": "prom dress", + "eyes": "3d", + "mouth": "tongue out", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6374, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "discomfort", + "fur": "tan", + "hat": "cowboy hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6375, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "bored bubblegum", + "fur": "pink", + "eyes": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6376, + "metadata_dict": { + "hat": "bandana blue", + "fur": "golden brown", + "mouth": "grin", + "clothes": "biker vest", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6377, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "grin", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6378, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "hat": "seaman's hat", + "fur": "dmt", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6379, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "background": "gray", + "fur": "robot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6380, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "earring": "gold hoop", + "clothes": "tuxedo tee", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6381, + "metadata_dict": { + "eyes": "holographic", + "clothes": "space suit", + "mouth": "grin", + "fur": "dark brown", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6382, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "coins", + "background": "aquamarine", + "mouth": "bored bubblegum", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6383, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "hat": "vietnam era helmet", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6384, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "hat": "cowboy hat", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6385, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6386, + "metadata_dict": { + "eyes": "zombie", + "mouth": "phoneme vuh", + "clothes": "work vest", + "background": "blue", + "fur": "brown", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6387, + "metadata_dict": { + "fur": "brown", + "mouth": "phoneme vuh", + "hat": "beanie", + "clothes": "tanktop", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6388, + "metadata_dict": { + "clothes": "bayc t red", + "earring": "silver stud", + "mouth": "jovial", + "fur": "solid gold", + "background": "purple", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6389, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "fur": "black", + "eyes": "bloodshot", + "hat": "short mohawk", + "clothes": "sleeveless logo t", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6390, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "mouth": "phoneme ooo", + "earring": "silver stud", + "hat": "short mohawk", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6391, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "robot", + "fur": "brown", + "background": "purple", + "hat": "commie hat", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6392, + "metadata_dict": { + "fur": "gray", + "eyes": "bored", + "hat": "faux hawk", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6393, + "metadata_dict": { + "eyes": "heart", + "earring": "gold hoop", + "hat": "stuntman helmet", + "fur": "black", + "clothes": "tuxedo tee", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6394, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "fur": "black", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6395, + "metadata_dict": { + "eyes": "coins", + "clothes": "smoking jacket", + "hat": "army hat", + "fur": "brown", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6396, + "metadata_dict": { + "hat": "irish boho", + "clothes": "rainbow suspenders", + "fur": "dark brown", + "eyes": "crazy", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6397, + "metadata_dict": { + "background": "blue", + "clothes": "stunt jacket", + "hat": "commie hat", + "mouth": "bored cigarette", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6398, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "hat": "seaman's hat", + "eyes": "bored", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6399, + "metadata_dict": { + "eyes": "holographic", + "clothes": "blue dress", + "hat": "fez", + "fur": "dark brown", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6400, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6401, + "metadata_dict": { + "fur": "cream", + "eyes": "angry", + "earring": "silver stud", + "clothes": "toga", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6402, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "diamond stud", + "eyes": "coins", + "clothes": "tie dye", + "hat": "faux hawk", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6403, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "background": "yellow", + "fur": "black", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6404, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored pipe", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6405, + "metadata_dict": { + "background": "aquamarine", + "mouth": "jovial", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "cowboy hat", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6406, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored unshaven cigar", + "hat": "beanie", + "clothes": "stunt jacket", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6407, + "metadata_dict": { + "mouth": "rage", + "fur": "brown", + "background": "yellow", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6408, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "fur": "red", + "hat": "girl's hair short", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6409, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "black", + "eyes": "bloodshot", + "hat": "faux hawk", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6410, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "trippy", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6411, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "orange", + "mouth": "small grin", + "hat": "army hat", + "earring": "silver hoop", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6412, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "leather jacket", + "eyes": "robot", + "fur": "dark brown", + "mouth": "tongue out", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6413, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "background": "orange", + "clothes": "toga", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6414, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "phoneme ooo", + "earring": "silver stud", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6415, + "metadata_dict": { + "fur": "cream", + "mouth": "rage", + "eyes": "sleepy", + "earring": "silver hoop", + "background": "purple", + "hat": "commie hat", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6416, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "background": "orange", + "fur": "cheetah", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6417, + "metadata_dict": { + "clothes": "hip hop", + "fur": "black", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6418, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "wide eyed", + "fur": "cheetah", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6419, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored unshaven pipe", + "fur": "black", + "background": "purple", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6420, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "earring": "gold hoop", + "fur": "black", + "eyes": "bored", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6421, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "fur": "gray", + "mouth": "dumbfounded", + "earring": "silver stud", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6422, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "fur": "gray", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6423, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "fur": "noise", + "hat": "bayc flipped brim", + "mouth": "tongue out", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6424, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "mouth": "phoneme ooo", + "background": "aquamarine", + "clothes": "cowboy shirt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6425, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bloodshot", + "clothes": "sleeveless logo t", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6426, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "hat": "party hat 1", + "mouth": "phoneme vuh", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6427, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "tongue out", + "fur": "brown", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6428, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "seaman's hat", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6429, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "eyes": "bloodshot", + "clothes": "bone necklace", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6430, + "metadata_dict": { + "fur": "robot", + "clothes": "striped tee", + "hat": "s&m hat", + "mouth": "bored", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6431, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "prison jumpsuit", + "background": "orange", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6432, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black t", + "mouth": "jovial", + "background": "blue", + "eyes": "bloodshot", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6433, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "earring": "gold hoop", + "hat": "party hat 1", + "background": "orange", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6434, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "puffy vest", + "earring": "gold hoop", + "fur": "dark brown", + "eyes": "bored", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6435, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "king's crown", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6436, + "metadata_dict": { + "clothes": "black suit", + "mouth": "phoneme vuh", + "background": "blue", + "hat": "bayc flipped brim", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6437, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "irish boho", + "fur": "red", + "background": "gray", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6438, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "police motorcycle helmet", + "clothes": "black holes t", + "fur": "gray", + "earring": "gold hoop", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6439, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "striped tee", + "mouth": "bored unshaven", + "earring": "silver hoop", + "fur": "brown", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6440, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "eyes": "coins", + "fur": "pink", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6441, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "orange", + "fur": "brown", + "clothes": "navy striped tee", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6442, + "metadata_dict": { + "fur": "dmt", + "hat": "stuntman helmet", + "eyes": "robot", + "earring": "gold stud", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6443, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black t", + "hat": "stuntman helmet", + "background": "orange", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6444, + "metadata_dict": { + "eyes": "coins", + "hat": "king's crown", + "mouth": "grin diamond grill", + "fur": "red", + "background": "blue", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6445, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "hat": "horns", + "eyes": "coins", + "clothes": "black t", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6446, + "metadata_dict": { + "mouth": "bored bubblegum", + "fur": "dark brown", + "clothes": "admirals coat", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6447, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "eyes": "robot", + "fur": "black", + "background": "blue", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6448, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "mouth": "bored pipe", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6449, + "metadata_dict": { + "clothes": "tie dye", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "pink", + "background": "gray", + "hat": "bowler", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6450, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "fur": "brown", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6451, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven pipe", + "eyes": "bored", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6452, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver stud", + "background": "blue", + "fur": "black", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6453, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "tuxedo tee", + "hat": "fisherman's hat", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6454, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "sailor shirt", + "earring": "silver stud", + "background": "aquamarine", + "fur": "pink", + "hat": "cowboy hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6455, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "hat": "bandana blue", + "clothes": "tie dye", + "fur": "death bot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6456, + "metadata_dict": { + "eyes": "zombie", + "background": "aquamarine", + "fur": "pink", + "mouth": "phoneme wah", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6457, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "black t", + "mouth": "dumbfounded", + "fur": "dark brown", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6458, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "lab coat", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6459, + "metadata_dict": { + "background": "gray", + "eyes": "robot", + "fur": "gray", + "mouth": "bored unshaven party horn" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6460, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "mouth": "small grin", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6461, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "golden brown", + "hat": "spinner hat", + "clothes": "tanktop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6462, + "metadata_dict": { + "background": "orange", + "mouth": "bored pizza", + "fur": "brown", + "clothes": "bone necklace", + "eyes": "sleepy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6463, + "metadata_dict": { + "eyes": "closed", + "fur": "red", + "background": "yellow", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6464, + "metadata_dict": { + "eyes": "closed", + "clothes": "tweed suit", + "earring": "silver stud", + "mouth": "dumbfounded", + "background": "blue", + "fur": "black", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6465, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "earring": "silver stud", + "background": "orange", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6466, + "metadata_dict": { + "mouth": "bored dagger", + "earring": "silver stud", + "background": "aquamarine", + "hat": "spinner hat", + "fur": "dark brown", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6467, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "sleeveless t", + "mouth": "dumbfounded", + "fur": "black", + "background": "orange", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6468, + "metadata_dict": { + "fur": "cream", + "eyes": "sleepy", + "mouth": "bored cigarette", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6469, + "metadata_dict": { + "earring": "gold hoop", + "eyes": "bloodshot", + "background": "gray", + "hat": "beanie", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6470, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "hat": "bunny ears", + "mouth": "bored", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6471, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "holographic", + "clothes": "black t", + "hat": "girl's hair pink", + "earring": "silver hoop", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6472, + "metadata_dict": { + "eyes": "3d", + "background": "orange", + "earring": "silver hoop", + "hat": "beanie", + "clothes": "stunt jacket", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6473, + "metadata_dict": { + "clothes": "smoking jacket", + "fur": "solid gold", + "background": "purple", + "mouth": "bored", + "hat": "police motorcycle helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6474, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "fur": "robot", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6475, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "black", + "background": "orange", + "clothes": "biker vest", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6476, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven cigarette", + "eyes": "coins", + "background": "blue", + "clothes": "tanktop", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6477, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "hat": "king's crown", + "fur": "red", + "eyes": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6478, + "metadata_dict": { + "fur": "gray", + "hat": "prussian helmet", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6479, + "metadata_dict": { + "eyes": "hypnotized", + "background": "blue", + "fur": "noise", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6480, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme vuh", + "fur": "black", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6481, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "background": "aquamarine", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6482, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tweed suit", + "eyes": "3d", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6483, + "metadata_dict": { + "eyes": "robot", + "fur": "noise", + "mouth": "bored unshaven cigarette", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6484, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "fur": "golden brown", + "background": "blue", + "mouth": "small grin", + "earring": "silver hoop", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6485, + "metadata_dict": { + "eyes": "closed", + "hat": "laurel wreath", + "clothes": "sleeveless t", + "fur": "gray", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6486, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "baby's bonnet", + "fur": "red", + "mouth": "bored bubblegum", + "earring": "silver hoop", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6487, + "metadata_dict": { + "eyes": "coins", + "clothes": "prom dress", + "fur": "black", + "background": "yellow", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6488, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "background": "blue", + "hat": "vietnam era helmet", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6489, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "spinner hat", + "fur": "black", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6490, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored pipe", + "clothes": "work vest", + "fur": "dark brown", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6491, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "girl's hair short", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6492, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme vuh", + "background": "orange", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6493, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "mouth": "dumbfounded", + "clothes": "biker vest", + "hat": "army hat", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6494, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "clothes": "rainbow suspenders", + "earring": "silver stud", + "background": "purple", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6495, + "metadata_dict": { + "clothes": "tuxedo tee", + "mouth": "bored", + "eyes": "bored", + "background": "gray", + "hat": "safari", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6496, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "wool turtleneck", + "mouth": "grin", + "fur": "gray", + "background": "blue", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6497, + "metadata_dict": { + "hat": "bowler", + "clothes": "tanktop", + "background": "yellow", + "mouth": "bored", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6498, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "jovial", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6499, + "metadata_dict": { + "clothes": "lumberjack shirt", + "background": "orange", + "eyes": "bloodshot", + "hat": "army hat", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6500, + "metadata_dict": { + "background": "new punk blue", + "hat": "irish boho", + "eyes": "coins", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6501, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "hat": "short mohawk", + "eyes": "crazy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6502, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "gold stud", + "fur": "pink", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6503, + "metadata_dict": { + "background": "blue", + "eyes": "3d", + "mouth": "bored", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6504, + "metadata_dict": { + "eyes": "zombie", + "fur": "gray", + "earring": "gold stud", + "mouth": "small grin", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6505, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "seaman's hat", + "background": "blue", + "fur": "brown", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6506, + "metadata_dict": { + "fur": "black", + "mouth": "bored pizza", + "clothes": "tanktop", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6507, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "scumbag", + "fur": "dmt", + "background": "orange", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6508, + "metadata_dict": { + "eyes": "closed", + "clothes": "sleeveless t", + "mouth": "grin", + "hat": "bayc flipped brim", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6509, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven party horn", + "clothes": "tuxedo tee", + "hat": "commie hat", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6510, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "gold stud", + "fur": "brown", + "hat": "bunny ears", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6511, + "metadata_dict": { + "clothes": "black t", + "mouth": "rage", + "fur": "pink", + "eyes": "3d", + "background": "yellow", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6512, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "clothes": "admirals coat", + "hat": "beanie", + "eyes": "crazy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6513, + "metadata_dict": { + "fur": "cream", + "hat": "king's crown", + "clothes": "leather jacket", + "background": "yellow", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6514, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "zombie", + "background": "aquamarine", + "hat": "vietnam era helmet", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6515, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6516, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black t", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6517, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "striped tee", + "earring": "silver stud", + "hat": "cowboy hat", + "mouth": "tongue out", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6518, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "leather punk jacket", + "hat": "short mohawk", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6519, + "metadata_dict": { + "fur": "tan", + "clothes": "black t", + "hat": "cowboy hat", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6520, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "background": "orange", + "hat": "cowboy hat", + "fur": "brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6521, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "phoneme ooo", + "background": "orange", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6522, + "metadata_dict": { + "fur": "tan", + "eyes": "blindfold", + "clothes": "sailor shirt", + "mouth": "rage", + "hat": "bayc flipped brim", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6523, + "metadata_dict": { + "fur": "cream", + "clothes": "biker vest", + "eyes": "bored", + "mouth": "bored", + "hat": "police motorcycle helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6524, + "metadata_dict": { + "eyes": "robot", + "background": "blue", + "fur": "brown", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6525, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "sailor shirt", + "hat": "fisherman's hat", + "fur": "brown", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6526, + "metadata_dict": { + "earring": "silver stud", + "clothes": "leather jacket", + "eyes": "3d", + "mouth": "bored unshaven cigar", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6527, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "black", + "mouth": "bored cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6528, + "metadata_dict": { + "mouth": "bored dagger", + "hat": "seaman's hat", + "clothes": "cowboy shirt", + "eyes": "bloodshot", + "fur": "dark brown", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6529, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "background": "yellow", + "clothes": "bone tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6530, + "metadata_dict": { + "background": "new punk blue", + "fur": "dmt", + "eyes": "bloodshot", + "hat": "short mohawk", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6531, + "metadata_dict": { + "fur": "brown", + "hat": "party hat 1", + "background": "aquamarine", + "eyes": "robot", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6532, + "metadata_dict": { + "hat": "horns", + "fur": "red", + "background": "blue", + "mouth": "small grin", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6533, + "metadata_dict": { + "clothes": "bone tee", + "mouth": "bored unshaven cigarette", + "earring": "gold hoop", + "eyes": "robot", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6534, + "metadata_dict": { + "fur": "robot", + "clothes": "striped tee", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6535, + "metadata_dict": { + "clothes": "rainbow suspenders", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored cigar", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6536, + "metadata_dict": { + "clothes": "black holes t", + "fur": "red", + "mouth": "jovial", + "eyes": "sleepy", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6537, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6538, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop", + "clothes": "toga", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6539, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6540, + "metadata_dict": { + "fur": "cheetah", + "clothes": "prom dress", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6541, + "metadata_dict": { + "clothes": "cowboy shirt", + "fur": "black", + "hat": "beanie", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6542, + "metadata_dict": { + "background": "yellow", + "mouth": "jovial", + "fur": "black", + "eyes": "bored", + "clothes": "toga", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6543, + "metadata_dict": { + "mouth": "grin", + "clothes": "work vest", + "hat": "girl's hair short", + "fur": "white", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6544, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "diamond stud", + "eyes": "bored", + "fur": "white", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6545, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6546, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6547, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "clothes": "wool turtleneck", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6548, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "eyes": "bored", + "mouth": "tongue out", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6549, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "clothes": "black t", + "background": "blue", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6550, + "metadata_dict": { + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6551, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "robot", + "hat": "cowboy hat", + "background": "yellow", + "fur": "death bot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6552, + "metadata_dict": { + "hat": "laurel wreath", + "eyes": "hypnotized", + "fur": "pink", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6553, + "metadata_dict": { + "fur": "gray", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6554, + "metadata_dict": { + "eyes": "hypnotized", + "earring": "silver stud", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6555, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "grin", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6556, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "clothes": "stunt jacket", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6557, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "fur": "pink", + "hat": "army hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6558, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "clothes": "smoking jacket", + "background": "gray", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6559, + "metadata_dict": { + "hat": "horns", + "eyes": "zombie", + "clothes": "tie dye", + "mouth": "tongue out", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6560, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "rage", + "eyes": "sleepy", + "hat": "fisherman's hat", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6561, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored kazoo", + "hat": "fez", + "earring": "gold stud", + "fur": "brown", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6562, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "blindfold", + "earring": "diamond stud", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6563, + "metadata_dict": { + "background": "new punk blue", + "hat": "king's crown", + "fur": "pink", + "mouth": "small grin", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6564, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "hat": "stuntman helmet", + "background": "aquamarine", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6565, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "clothes": "toga", + "hat": "bayc hat red", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6566, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "earring": "silver stud", + "clothes": "tuxedo tee", + "eyes": "bored", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6567, + "metadata_dict": { + "hat": "king's crown", + "fur": "cheetah", + "background": "purple", + "mouth": "bored", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6568, + "metadata_dict": { + "fur": "dmt", + "clothes": "sailor shirt", + "earring": "silver stud", + "mouth": "small grin", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6569, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "background": "purple", + "mouth": "bored", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6570, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6571, + "metadata_dict": { + "clothes": "black suit", + "fur": "black", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6572, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "phoneme vuh", + "fur": "black", + "background": "purple", + "earring": "cross", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6573, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "mouth": "dumbfounded", + "clothes": "work vest", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6574, + "metadata_dict": { + "mouth": "jovial", + "background": "blue", + "eyes": "bored", + "fur": "brown", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6575, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "earring": "diamond stud", + "background": "orange", + "fur": "brown", + "hat": "bowler", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6576, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "new punk blue", + "clothes": "lumberjack shirt", + "eyes": "robot", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6577, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "black", + "eyes": "sleepy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6578, + "metadata_dict": { + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6579, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "mouth": "phoneme vuh", + "clothes": "cowboy shirt", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6580, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "earring": "gold hoop", + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6581, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "background": "aquamarine", + "fur": "black", + "hat": "girl's hair short", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6582, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "hat": "fez", + "background": "orange", + "eyes": "3d", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6583, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "clothes": "black holes t", + "earring": "silver stud", + "fur": "red", + "hat": "spinner hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6584, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "earring": "diamond stud", + "mouth": "bored party horn", + "fur": "robot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6585, + "metadata_dict": { + "clothes": "striped tee", + "hat": "prussian helmet", + "background": "orange", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6586, + "metadata_dict": { + "mouth": "bored cigarette", + "eyes": "crazy", + "fur": "robot", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6587, + "metadata_dict": { + "background": "gray", + "clothes": "sailor shirt", + "fur": "brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6588, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "cowboy hat", + "fur": "brown", + "eyes": "crazy", + "background": "army green", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6589, + "metadata_dict": { + "clothes": "lumberjack shirt", + "background": "aquamarine", + "mouth": "tongue out", + "hat": "beanie", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6590, + "metadata_dict": { + "clothes": "caveman pelt", + "hat": "fez", + "fur": "brown", + "eyes": "sleepy", + "earring": "cross", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6591, + "metadata_dict": { + "clothes": "leather punk jacket", + "earring": "diamond stud", + "hat": "sea captain's hat", + "mouth": "phoneme vuh", + "fur": "red", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6592, + "metadata_dict": { + "eyes": "heart", + "clothes": "black t", + "mouth": "bored party horn", + "background": "orange", + "hat": "vietnam era helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6593, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "background": "blue", + "earring": "gold stud", + "fur": "dark brown", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6594, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "clothes": "work vest", + "eyes": "3d", + "background": "orange", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6595, + "metadata_dict": { + "hat": "party hat 1", + "background": "aquamarine", + "earring": "silver hoop", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6596, + "metadata_dict": { + "clothes": "rainbow suspenders", + "mouth": "jovial", + "eyes": "bored", + "hat": "beanie", + "fur": "death bot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6597, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "background": "blue", + "fur": "cheetah", + "hat": "bunny ears", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6598, + "metadata_dict": { + "earring": "gold hoop", + "eyes": "coins", + "fur": "pink", + "mouth": "tongue out", + "background": "purple", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6599, + "metadata_dict": { + "fur": "tan", + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "background": "gray", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6600, + "metadata_dict": { + "eyes": "closed", + "clothes": "biker vest", + "hat": "fisherman's hat", + "mouth": "bored cigarette", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6601, + "metadata_dict": { + "fur": "black", + "mouth": "small grin", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6602, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "eyes": "bored", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6603, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "red", + "background": "gray", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6604, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "brown", + "hat": "bunny ears", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6605, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "bandana blue", + "fur": "brown", + "clothes": "tuxedo tee", + "mouth": "bored pizza", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6606, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "hat": "vietnam era helmet", + "earring": "cross", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6607, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "clothes": "bandolier", + "hat": "horns", + "mouth": "small grin", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6608, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "pink", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6609, + "metadata_dict": { + "clothes": "smoking jacket", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6610, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "phoneme vuh", + "clothes": "cowboy shirt", + "eyes": "bored", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6611, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "background": "orange", + "eyes": "bloodshot", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6612, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "diamond stud", + "clothes": "sailor shirt", + "hat": "party hat 1", + "eyes": "3d", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6613, + "metadata_dict": { + "clothes": "rainbow suspenders", + "fur": "black", + "eyes": "bored", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6614, + "metadata_dict": { + "fur": "red", + "background": "aquamarine", + "eyes": "bored", + "hat": "faux hawk", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6615, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "black", + "earring": "silver hoop", + "clothes": "prom dress", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6616, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "3d", + "hat": "bayc flipped brim", + "mouth": "small grin", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6617, + "metadata_dict": { + "fur": "tan", + "background": "aquamarine", + "hat": "spinner hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6618, + "metadata_dict": { + "background": "aquamarine", + "earring": "gold stud", + "fur": "brown", + "mouth": "bored", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6619, + "metadata_dict": { + "fur": "golden brown", + "clothes": "work vest", + "background": "blue", + "mouth": "bored pipe", + "hat": "fisherman's hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6620, + "metadata_dict": { + "hat": "horns", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6621, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "bloodshot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6622, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6623, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "zombie", + "mouth": "jovial", + "earring": "gold stud", + "fur": "death bot", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6624, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "bandolier", + "hat": "stuntman helmet", + "earring": "gold stud", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6625, + "metadata_dict": { + "clothes": "cowboy shirt", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "faux hawk", + "background": "yellow", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6626, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "closed", + "background": "blue", + "fur": "noise", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6627, + "metadata_dict": { + "hat": "s&m hat", + "fur": "black", + "eyes": "bored", + "background": "purple", + "mouth": "phoneme wah", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6628, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "earring": "gold hoop", + "mouth": "bored", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6629, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "biker vest", + "eyes": "bloodshot", + "background": "orange", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6630, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bloodshot", + "mouth": "bored unshaven cigar", + "fur": "brown", + "hat": "bowler", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6631, + "metadata_dict": { + "fur": "dmt", + "earring": "gold hoop", + "clothes": "biker vest", + "eyes": "bloodshot", + "hat": "bunny ears", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6632, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "golden brown", + "hat": "faux hawk", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6633, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "holographic", + "mouth": "bored unshaven bubblegum", + "earring": "gold stud", + "background": "orange", + "fur": "pink", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6634, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "red", + "background": "orange", + "eyes": "bored", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6635, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "bored", + "mouth": "bored pizza", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6636, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6637, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "rage", + "background": "orange", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "clothes": "bone necklace", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6638, + "metadata_dict": { + "hat": "s&m hat", + "earring": "gold hoop", + "mouth": "bored pipe", + "fur": "pink", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6639, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "black", + "background": "orange", + "clothes": "tanktop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6640, + "metadata_dict": { + "fur": "cream", + "earring": "gold stud", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6641, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "cream", + "hat": "fisherman's hat", + "earring": "cross", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6642, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "3d", + "fur": "dark brown", + "earring": "silver hoop", + "background": "purple", + "hat": "commie hat", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6643, + "metadata_dict": { + "fur": "tan", + "clothes": "black t", + "earring": "cross", + "hat": "commie hat", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6644, + "metadata_dict": { + "fur": "gray", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "bored", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6645, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "army hat", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6646, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "fur": "black", + "clothes": "tanktop", + "eyes": "angry", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6647, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "mouth": "grin", + "background": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6648, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "mouth": "grin multicolored", + "earring": "gold hoop", + "fur": "red", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6649, + "metadata_dict": { + "background": "new punk blue", + "hat": "king's crown", + "fur": "dark brown", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6650, + "metadata_dict": { + "clothes": "blue dress", + "earring": "gold hoop", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6651, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "bored", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6652, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "fur": "golden brown", + "eyes": "zombie", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6653, + "metadata_dict": { + "hat": "prussian helmet", + "background": "aquamarine", + "fur": "black", + "mouth": "tongue out", + "clothes": "pimp coat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6654, + "metadata_dict": { + "hat": "seaman's hat", + "background": "purple", + "fur": "pink", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6655, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "fez", + "background": "orange", + "earring": "silver hoop", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6656, + "metadata_dict": { + "eyes": "zombie", + "fur": "death bot", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6657, + "metadata_dict": { + "background": "new punk blue", + "eyes": "laser eyes", + "hat": "baby's bonnet", + "earring": "silver hoop", + "clothes": "tanktop", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6658, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6659, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "fur": "golden brown", + "background": "orange", + "hat": "cowboy hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6660, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "hat": "fez", + "fur": "red", + "mouth": "bored cigarette", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6661, + "metadata_dict": { + "fur": "black", + "hat": "vietnam era helmet", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6662, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "brown", + "mouth": "rage", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6663, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "mouth": "grin multicolored", + "hat": "fez", + "background": "blue", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6664, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "clothes": "tweed suit", + "mouth": "bored unshaven cigar", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6665, + "metadata_dict": { + "hat": "irish boho", + "mouth": "grin", + "eyes": "coins", + "clothes": "tweed suit", + "background": "aquamarine", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6666, + "metadata_dict": { + "mouth": "jovial", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "army hat", + "clothes": "tanktop", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6667, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6668, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "mouth": "jovial", + "clothes": "bayc t black", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6669, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "coins", + "earring": "silver stud", + "clothes": "leather jacket", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6670, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "fur": "noise", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6671, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "black", + "eyes": "bored", + "hat": "cowboy hat", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6672, + "metadata_dict": { + "eyes": "zombie", + "mouth": "dumbfounded", + "earring": "silver stud", + "background": "purple", + "fur": "robot", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6673, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "fur": "cream", + "earring": "gold hoop", + "hat": "fez", + "background": "yellow", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6674, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "blindfold", + "clothes": "black holes t", + "background": "blue", + "fur": "brown", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6675, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "clothes": "lab coat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6676, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven cigarette", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6677, + "metadata_dict": { + "fur": "golden brown", + "earring": "diamond stud", + "clothes": "black suit", + "hat": "vietnam era helmet", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6678, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6679, + "metadata_dict": { + "hat": "party hat 2", + "fur": "cream", + "earring": "silver stud", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6680, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "fur": "pink", + "eyes": "bored", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6681, + "metadata_dict": { + "hat": "commie hat", + "eyes": "bored", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6682, + "metadata_dict": { + "fur": "golden brown", + "hat": "fez", + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6683, + "metadata_dict": { + "eyes": "coins", + "background": "blue", + "earring": "gold stud", + "hat": "bayc flipped brim", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6684, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "x eyes", + "fur": "cream", + "mouth": "grin", + "clothes": "black t", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6685, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "gray", + "background": "aquamarine", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6686, + "metadata_dict": { + "eyes": "heart", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6687, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "black", + "background": "gray", + "hat": "bunny ears", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6688, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "eyes": "zombie", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6689, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "hat": "prussian helmet", + "background": "blue", + "clothes": "tanktop", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6690, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "background": "blue", + "eyes": "3d", + "hat": "bayc flipped brim", + "mouth": "bored cigar", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6691, + "metadata_dict": { + "clothes": "striped tee", + "background": "purple", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6692, + "metadata_dict": { + "hat": "fez", + "clothes": "prison jumpsuit", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6693, + "metadata_dict": { + "hat": "horns", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6694, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "black", + "earring": "gold stud", + "eyes": "blue beams", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6695, + "metadata_dict": { + "eyes": "coins", + "earring": "silver stud", + "fur": "pink", + "mouth": "bored", + "background": "yellow", + "hat": "safari", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6696, + "metadata_dict": { + "background": "new punk blue", + "fur": "trippy", + "hat": "sushi chef headband", + "mouth": "bored unshaven cigarette", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6697, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sailor shirt", + "background": "aquamarine", + "hat": "short mohawk", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6698, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "fez", + "background": "orange", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6699, + "metadata_dict": { + "clothes": "space suit", + "fur": "gray", + "mouth": "bored unshaven pipe", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "gray", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6700, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven kazoo", + "hat": "commie hat", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6701, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "eyes": "robot", + "clothes": "bayc t black", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6702, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "hat": "faux hawk", + "background": "yellow", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6703, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "grin", + "earring": "gold hoop", + "background": "yellow", + "fur": "black", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6704, + "metadata_dict": { + "fur": "golden brown", + "clothes": "rainbow suspenders", + "mouth": "bored party horn", + "earring": "silver stud", + "background": "aquamarine", + "hat": "beanie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6705, + "metadata_dict": { + "background": "aquamarine", + "hat": "commie hat", + "clothes": "tanktop", + "fur": "death bot", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6706, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "dark brown", + "eyes": "bloodshot", + "earring": "silver hoop", + "clothes": "toga", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6707, + "metadata_dict": { + "hat": "bayc hat black", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6708, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "fur": "black", + "clothes": "tuxedo tee", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6709, + "metadata_dict": { + "eyes": "holographic", + "clothes": "space suit", + "fur": "gray", + "mouth": "rage", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6710, + "metadata_dict": { + "background": "purple", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet", + "fur": "death bot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6711, + "metadata_dict": { + "eyes": "coins", + "clothes": "rainbow suspenders", + "mouth": "phoneme vuh", + "earring": "silver hoop", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6712, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored party horn", + "fur": "red", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6713, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "fur": "black", + "hat": "bayc flipped brim", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6714, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "fur": "tan", + "hat": "bayc flipped brim", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6715, + "metadata_dict": { + "hat": "baby's bonnet", + "eyes": "coins", + "mouth": "phoneme vuh", + "background": "orange", + "earring": "silver hoop", + "clothes": "lab coat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6716, + "metadata_dict": { + "fur": "golden brown", + "mouth": "grin", + "background": "orange", + "clothes": "guayabera", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6717, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "coins", + "clothes": "biker vest", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6718, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "mouth": "phoneme ooo", + "earring": "silver hoop", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6719, + "metadata_dict": { + "fur": "cream", + "clothes": "rainbow suspenders", + "mouth": "bored pipe", + "background": "gray", + "hat": "commie hat", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6720, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "s&m hat", + "eyes": "bored", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6721, + "metadata_dict": { + "clothes": "striped tee", + "hat": "sushi chef headband", + "fur": "gray", + "earring": "gold hoop", + "mouth": "dumbfounded", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6722, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "background": "blue", + "eyes": "bored", + "hat": "faux hawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6723, + "metadata_dict": { + "background": "gray", + "clothes": "pimp coat", + "eyes": "bored", + "fur": "cheetah", + "hat": "vietnam era helmet", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6724, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "wool turtleneck", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6725, + "metadata_dict": { + "clothes": "service", + "eyes": "coins", + "mouth": "dumbfounded", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6726, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "hat": "fez", + "earring": "gold stud", + "eyes": "3d", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6727, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "eyes": "blindfold", + "background": "aquamarine", + "fur": "pink", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6728, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6729, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "bandolier", + "mouth": "grin diamond grill", + "fur": "black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6730, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme l", + "clothes": "leather punk jacket", + "earring": "silver stud", + "background": "blue", + "hat": "faux hawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6731, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "clothes": "sleeveless t", + "hat": "seaman's hat", + "fur": "pink", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6732, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bayc t red", + "fur": "red", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6733, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "coins", + "clothes": "sailor shirt", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6734, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "bored unshaven", + "eyes": "hypnotized", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6735, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "brown", + "background": "yellow", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6736, + "metadata_dict": { + "eyes": "closed", + "background": "yellow", + "fur": "dark brown", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6737, + "metadata_dict": { + "background": "new punk blue", + "fur": "zombie", + "clothes": "prison jumpsuit", + "mouth": "small grin", + "hat": "girl's hair short", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6738, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "fur": "black", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6739, + "metadata_dict": { + "fur": "gray", + "clothes": "tie dye", + "mouth": "bored pizza", + "hat": "faux hawk", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6740, + "metadata_dict": { + "eyes": "laser eyes", + "background": "aquamarine", + "fur": "cheetah", + "mouth": "phoneme wah", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6741, + "metadata_dict": { + "clothes": "lumberjack shirt", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6742, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "hat": "stuntman helmet", + "mouth": "jovial", + "clothes": "stunt jacket", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6743, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bayc t red", + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6744, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "grin", + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6745, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "fur": "golden brown", + "eyes": "coins", + "hat": "spinner hat", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6746, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "robot", + "background": "blue", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6747, + "metadata_dict": { + "earring": "silver stud", + "hat": "bunny ears", + "background": "gray", + "eyes": "crazy", + "mouth": "bored", + "clothes": "navy striped tee", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6748, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigarette", + "clothes": "caveman pelt", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6749, + "metadata_dict": { + "eyes": "scumbag", + "background": "blue", + "fur": "brown", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6750, + "metadata_dict": { + "eyes": "zombie", + "mouth": "phoneme vuh", + "fur": "dark brown", + "background": "yellow", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6751, + "metadata_dict": { + "mouth": "jovial", + "clothes": "cowboy shirt", + "eyes": "3d", + "fur": "dark brown", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6752, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "fur": "black", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6753, + "metadata_dict": { + "clothes": "lab coat", + "fur": "dark brown", + "hat": "faux hawk", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6754, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "irish boho", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "red", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6755, + "metadata_dict": { + "eyes": "closed", + "hat": "stuntman helmet", + "earring": "silver stud", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6756, + "metadata_dict": { + "eyes": "sleepy", + "fur": "black", + "background": "army green", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6757, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "grin multicolored", + "eyes": "coins", + "fur": "black", + "background": "orange", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6758, + "metadata_dict": { + "clothes": "blue dress", + "earring": "gold hoop", + "eyes": "3d", + "fur": "pink", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6759, + "metadata_dict": { + "eyes": "heart", + "fur": "pink", + "background": "orange", + "mouth": "tongue out", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6760, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "eyes": "bored", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6761, + "metadata_dict": { + "eyes": "zombie", + "hat": "ww2 pilot helm", + "clothes": "lab coat", + "background": "yellow", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6762, + "metadata_dict": { + "mouth": "discomfort", + "fur": "dark brown", + "clothes": "bayc t black", + "earring": "silver hoop", + "hat": "beanie", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6763, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "stuntman helmet", + "clothes": "biker vest", + "background": "orange", + "mouth": "small grin", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6764, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "tuxedo tee", + "hat": "army hat", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6765, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "hat": "stuntman helmet", + "background": "aquamarine", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6766, + "metadata_dict": { + "hat": "baby's bonnet", + "eyes": "robot", + "mouth": "small grin", + "fur": "brown", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6767, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "earring": "gold hoop", + "eyes": "bored", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6768, + "metadata_dict": { + "earring": "silver stud", + "mouth": "jovial", + "background": "blue", + "clothes": "tuxedo tee", + "hat": "bayc hat red", + "eyes": "sleepy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6769, + "metadata_dict": { + "fur": "cream", + "mouth": "rage", + "background": "aquamarine", + "eyes": "bored", + "hat": "halo", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6770, + "metadata_dict": { + "fur": "tan", + "eyes": "coins", + "background": "orange", + "earring": "silver hoop", + "clothes": "admirals coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6771, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "cowboy shirt", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6772, + "metadata_dict": { + "fur": "red", + "background": "aquamarine", + "clothes": "biker vest", + "hat": "ww2 pilot helm", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6773, + "metadata_dict": { + "hat": "bandana blue", + "eyes": "coins", + "fur": "gray", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "tanktop", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6774, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "girl's hair pink", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6775, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "prussian helmet", + "clothes": "tweed suit", + "background": "blue", + "fur": "black", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6776, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "blue beams", + "clothes": "bone necklace", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6777, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "background": "gray", + "fur": "white", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6778, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "mouth": "bored", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6779, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver stud", + "clothes": "tanktop", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6780, + "metadata_dict": { + "eyes": "blindfold", + "background": "purple", + "fur": "noise", + "mouth": "bored pizza", + "clothes": "guayabera", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6781, + "metadata_dict": { + "fur": "gray", + "background": "blue", + "eyes": "bloodshot", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6782, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "pink", + "background": "yellow", + "clothes": "stunt jacket", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6783, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "coins", + "fur": "dark brown", + "hat": "faux hawk", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6784, + "metadata_dict": { + "clothes": "black holes t", + "hat": "fez", + "fur": "black", + "mouth": "small grin", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6785, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "aquamarine", + "fur": "black", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6786, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "fur": "brown", + "hat": "army hat", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6787, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "gold hoop", + "fur": "black", + "clothes": "biker vest", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6788, + "metadata_dict": { + "hat": "s&m hat", + "fur": "dmt", + "background": "aquamarine", + "clothes": "smoking jacket", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6789, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6790, + "metadata_dict": { + "background": "gray", + "mouth": "phoneme ooo", + "eyes": "3d", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6791, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "zombie", + "mouth": "dumbfounded", + "fur": "black", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6792, + "metadata_dict": { + "fur": "dmt", + "eyes": "coins", + "earring": "silver stud", + "clothes": "tuxedo tee", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6793, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "background": "orange", + "hat": "short mohawk", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6794, + "metadata_dict": { + "mouth": "grin multicolored", + "earring": "diamond stud", + "eyes": "bored", + "fur": "brown", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6795, + "metadata_dict": { + "clothes": "rainbow suspenders", + "hat": "party hat 1", + "fur": "dark brown", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6796, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "mouth": "small grin", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6797, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "hat": "party hat 1", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6798, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "eyes": "coins", + "clothes": "tanktop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6799, + "metadata_dict": { + "fur": "dmt", + "hat": "king's crown", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6800, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "bandolier", + "hat": "sushi chef headband", + "fur": "gray", + "mouth": "dumbfounded", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6801, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6802, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "black", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6803, + "metadata_dict": { + "mouth": "discomfort", + "fur": "brown", + "clothes": "tanktop", + "background": "purple", + "eyes": "angry", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6804, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "bayc t black", + "earring": "silver hoop", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6805, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "lumberjack shirt", + "mouth": "grin diamond grill", + "earring": "gold stud", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6806, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "earring": "gold hoop", + "clothes": "smoking jacket", + "fur": "noise", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6807, + "metadata_dict": { + "background": "new punk blue", + "hat": "sushi chef headband", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6808, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "eyes": "robot", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6809, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "fur": "pink", + "clothes": "tanktop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6810, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "sleeveless t", + "fur": "golden brown", + "eyes": "zombie", + "earring": "gold hoop", + "hat": "stuntman helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6811, + "metadata_dict": { + "clothes": "bayc t red", + "background": "blue", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "hat": "bunny ears", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6812, + "metadata_dict": { + "eyes": "closed", + "clothes": "tweed suit", + "earring": "silver stud", + "background": "blue", + "fur": "brown", + "hat": "safari", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6813, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "blindfold", + "hat": "baby's bonnet", + "fur": "gray", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6814, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven cigarette", + "earring": "diamond stud", + "hat": "girl's hair pink", + "eyes": "bored", + "fur": "cheetah", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6815, + "metadata_dict": { + "mouth": "discomfort", + "fur": "dmt", + "hat": "short mohawk", + "eyes": "bored", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6816, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "eyes": "robot", + "background": "orange", + "hat": "bunny ears", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6817, + "metadata_dict": { + "clothes": "space suit", + "hat": "party hat 1", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6818, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "clothes": "kings robe", + "mouth": "small grin", + "earring": "silver hoop", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6819, + "metadata_dict": { + "background": "orange", + "mouth": "bored pizza", + "eyes": "bored", + "earring": "cross", + "fur": "white", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6820, + "metadata_dict": { + "fur": "tan", + "eyes": "bored", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6821, + "metadata_dict": { + "clothes": "striped tee", + "fur": "black", + "hat": "beanie", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6822, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "gray", + "clothes": "sailor shirt", + "hat": "faux hawk", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6823, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "eyes": "3d", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6824, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "red", + "background": "orange", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6825, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "clothes": "tanktop", + "earring": "silver hoop", + "fur": "brown", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6826, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "black", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6827, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "tan", + "clothes": "black holes t", + "hat": "prussian helmet", + "mouth": "jovial" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6828, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "bored", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6829, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "eyes": "sad", + "earring": "silver stud", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6830, + "metadata_dict": { + "hat": "horns", + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6831, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "gray", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6832, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sailor shirt", + "background": "orange", + "hat": "bayc flipped brim", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6833, + "metadata_dict": { + "earring": "silver stud", + "fur": "red", + "hat": "short mohawk", + "background": "gray", + "mouth": "bored unshaven dagger", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6834, + "metadata_dict": { + "mouth": "discomfort", + "fur": "black", + "eyes": "bored", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6835, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "background": "orange", + "eyes": "bloodshot", + "hat": "girl's hair short", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6836, + "metadata_dict": { + "eyes": "heart", + "hat": "sushi chef headband", + "mouth": "grin", + "fur": "red", + "clothes": "biker vest", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6837, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6838, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "background": "blue", + "fur": "dark brown", + "hat": "cowboy hat", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6839, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "fur": "gray", + "clothes": "rainbow suspenders", + "background": "orange", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6840, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "red", + "earring": "gold stud", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6841, + "metadata_dict": { + "fur": "trippy", + "eyes": "bloodshot", + "mouth": "bored unshaven cigar", + "background": "yellow", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6842, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "eyes": "3d", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6843, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "3d", + "fur": "brown", + "clothes": "bone necklace", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6844, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "dumbfounded", + "earring": "gold stud", + "background": "orange", + "hat": "short mohawk", + "fur": "black", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6845, + "metadata_dict": { + "mouth": "bored kazoo", + "hat": "fez", + "fur": "red", + "clothes": "biker vest", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6846, + "metadata_dict": { + "eyes": "closed", + "clothes": "leather punk jacket", + "fur": "tan", + "mouth": "rage", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6847, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "hat": "fez", + "fur": "dark brown", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6848, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "sleeveless t", + "mouth": "grin", + "hat": "short mohawk", + "eyes": "bored", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6849, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "kings robe", + "hat": "irish boho", + "mouth": "grin multicolored", + "earring": "silver stud", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6850, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6851, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "dark brown", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6852, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "eyes": "coins", + "background": "aquamarine", + "hat": "bayc flipped brim", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6853, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "closed", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6854, + "metadata_dict": { + "hat": "s&m hat", + "earring": "gold hoop", + "clothes": "sailor shirt", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6855, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "eyes": "robot", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6856, + "metadata_dict": { + "eyes": "blindfold", + "hat": "baby's bonnet", + "fur": "red", + "background": "blue", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6857, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "girl's hair pink", + "fur": "red", + "background": "blue", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6858, + "metadata_dict": { + "fur": "red", + "eyes": "sunglasses", + "mouth": "bored unshaven kazoo", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6859, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "hypnotized", + "fur": "golden brown", + "hat": "seaman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6860, + "metadata_dict": { + "fur": "tan", + "hat": "irish boho", + "mouth": "dumbfounded", + "earring": "silver hoop", + "clothes": "guayabera", + "background": "army green", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6861, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "hat": "fez", + "eyes": "bloodshot", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6862, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "wool turtleneck", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6863, + "metadata_dict": { + "hat": "fez", + "mouth": "rage", + "eyes": "robot", + "fur": "black", + "clothes": "tuxedo tee", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6864, + "metadata_dict": { + "hat": "girl's hair short", + "earring": "silver stud", + "clothes": "bayc t black", + "mouth": "small grin", + "eyes": "bored", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6865, + "metadata_dict": { + "background": "gray", + "fur": "gray", + "eyes": "bloodshot", + "mouth": "bored unshaven kazoo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6866, + "metadata_dict": { + "fur": "red", + "eyes": "sleepy", + "mouth": "grin", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6867, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "clothes": "striped tee", + "hat": "fez", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6868, + "metadata_dict": { + "mouth": "discomfort", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6869, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "diamond stud", + "background": "aquamarine", + "eyes": "crazy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6870, + "metadata_dict": { + "fur": "golden brown", + "eyes": "3d", + "hat": "bayc flipped brim", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6871, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "background": "aquamarine", + "eyes": "3d", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6872, + "metadata_dict": { + "eyes": "holographic", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6873, + "metadata_dict": { + "background": "gray", + "eyes": "wide eyed", + "fur": "cheetah", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6874, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver hoop", + "fur": "brown", + "hat": "bunny ears", + "background": "army green", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6875, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme ooo", + "earring": "diamond stud", + "clothes": "leather jacket", + "fur": "dark brown", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6876, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "dmt", + "hat": "stuntman helmet", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6877, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "black", + "hat": "short mohawk", + "eyes": "bloodshot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6878, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "eyes": "3d", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6879, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6880, + "metadata_dict": { + "eyes": "closed", + "hat": "baby's bonnet", + "earring": "silver stud", + "fur": "black", + "mouth": "small grin", + "clothes": "tuxedo tee", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6881, + "metadata_dict": { + "mouth": "grin diamond grill", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "bayc t black", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6882, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "prussian helmet", + "eyes": "bloodshot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6883, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "blue", + "eyes": "bored", + "clothes": "toga", + "fur": "brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6884, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "clothes": "striped tee", + "hat": "s&m hat", + "background": "aquamarine", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6885, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "earring": "silver stud", + "background": "orange", + "hat": "short mohawk", + "fur": "brown", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6886, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "earring": "diamond stud", + "mouth": "dumbfounded", + "fur": "black", + "eyes": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6887, + "metadata_dict": { + "mouth": "grin", + "eyes": "bored", + "fur": "cheetah", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6888, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "cowboy shirt", + "eyes": "robot", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6889, + "metadata_dict": { + "fur": "cream", + "clothes": "rainbow suspenders", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6890, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored kazoo", + "clothes": "prison jumpsuit", + "background": "orange", + "hat": "army hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6891, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "irish boho", + "clothes": "prison jumpsuit", + "fur": "red", + "background": "aquamarine", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6892, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "background": "aquamarine", + "eyes": "bored", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6893, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "phoneme oh", + "clothes": "leather punk jacket", + "fur": "tan", + "earring": "silver stud", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6894, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "brown", + "background": "yellow", + "eyes": "angry", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6895, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "zombie", + "fur": "black", + "earring": "gold stud", + "background": "orange", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6896, + "metadata_dict": { + "eyes": "x eyes", + "background": "gray", + "mouth": "grin", + "earring": "gold stud", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6897, + "metadata_dict": { + "background": "aquamarine", + "fur": "pink", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "mouth": "bored cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6898, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "clothes": "prison jumpsuit", + "eyes": "3d", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6899, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "background": "blue", + "fur": "pink", + "hat": "girl's hair short", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6900, + "metadata_dict": { + "clothes": "tweed suit", + "mouth": "bored pipe", + "background": "orange", + "fur": "dark brown", + "hat": "bunny ears", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6901, + "metadata_dict": { + "background": "aquamarine", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "silver hoop", + "hat": "bayc hat red", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6902, + "metadata_dict": { + "background": "aquamarine", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6903, + "metadata_dict": { + "clothes": "bandolier", + "hat": "irish boho", + "mouth": "rage", + "fur": "black", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6904, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "diamond stud", + "mouth": "dumbfounded", + "eyes": "3d", + "background": "orange", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6905, + "metadata_dict": { + "mouth": "jovial", + "eyes": "sleepy", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6906, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven cigarette", + "eyes": "bored", + "clothes": "sleeveless logo t", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6907, + "metadata_dict": { + "fur": "tan", + "eyes": "bloodshot", + "clothes": "pimp coat", + "hat": "bowler", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6908, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "aquamarine", + "hat": "bayc flipped brim", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6909, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "hat": "spinner hat", + "fur": "brown", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6910, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "hypnotized", + "clothes": "rainbow suspenders", + "mouth": "bored pipe", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6911, + "metadata_dict": { + "earring": "gold hoop", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "toga", + "background": "gray", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6912, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "mouth": "bored unshaven pipe", + "clothes": "tanktop", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6913, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "eyes": "coins", + "hat": "ww2 pilot helm", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6914, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "blue", + "hat": "cowboy hat", + "fur": "white", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6915, + "metadata_dict": { + "eyes": "holographic", + "hat": "girl's hair pink", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6916, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme ooo", + "hat": "bowler", + "earring": "gold stud", + "background": "yellow", + "fur": "robot", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6917, + "metadata_dict": { + "eyes": "3d", + "clothes": "smoking jacket", + "hat": "beanie", + "background": "purple", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6918, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "zombie", + "hat": "king's crown", + "mouth": "dumbfounded", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6919, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "black", + "eyes": "bored", + "clothes": "toga", + "background": "gray", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6920, + "metadata_dict": { + "clothes": "black holes t", + "hat": "fez", + "fur": "black", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6921, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "black", + "clothes": "hawaiian", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6922, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "earring": "gold hoop", + "background": "purple", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6923, + "metadata_dict": { + "fur": "cream", + "eyes": "sad", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "hat": "police motorcycle helmet", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6924, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "bone necklace", + "background": "yellow", + "eyes": "bloodshot", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6925, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored dagger", + "fur": "golden brown", + "earring": "gold hoop", + "hat": "spinner hat", + "clothes": "smoking jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6926, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sailor shirt", + "earring": "silver stud", + "mouth": "dumbfounded", + "eyes": "3d", + "fur": "pink" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6927, + "metadata_dict": { + "eyes": "coins", + "clothes": "black t", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "hat": "spinner hat", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6928, + "metadata_dict": { + "mouth": "phoneme oh", + "earring": "silver stud", + "fur": "noise", + "clothes": "lab coat", + "hat": "beanie", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6929, + "metadata_dict": { + "fur": "tan", + "hat": "sea captain's hat", + "clothes": "prison jumpsuit", + "background": "blue", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6930, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "jovial", + "fur": "black", + "hat": "vietnam era helmet", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6931, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "bayc flipped brim", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6932, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "sleeveless t", + "mouth": "bored party horn", + "eyes": "3d", + "fur": "dark brown", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6933, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "rainbow suspenders", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6934, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "striped tee", + "hat": "baby's bonnet", + "earring": "silver stud", + "fur": "black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6935, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "pink", + "eyes": "bloodshot", + "hat": "ww2 pilot helm", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6936, + "metadata_dict": { + "mouth": "bored dagger", + "hat": "baby's bonnet", + "fur": "black", + "clothes": "tuxedo tee", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6937, + "metadata_dict": { + "eyes": "wide eyed", + "mouth": "rage", + "clothes": "toga", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6938, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "grin diamond grill", + "background": "aquamarine", + "earring": "gold stud", + "fur": "dark brown", + "eyes": "bored", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6939, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme ooo", + "background": "orange", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6940, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6941, + "metadata_dict": { + "eyes": "coins", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "clothes": "lab coat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6942, + "metadata_dict": { + "background": "orange", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored", + "fur": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6943, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "mouth": "rage", + "fur": "black", + "eyes": "3d", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6944, + "metadata_dict": { + "earring": "diamond stud", + "fur": "red", + "background": "blue", + "clothes": "cowboy shirt", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6945, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6946, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "small grin", + "fur": "brown", + "eyes": "angry", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6947, + "metadata_dict": { + "eyes": "heart", + "mouth": "rage", + "clothes": "lab coat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6948, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "rage", + "eyes": "robot", + "clothes": "toga", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6949, + "metadata_dict": { + "eyes": "closed", + "clothes": "bandolier", + "fur": "trippy", + "background": "blue", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6950, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "king's crown", + "background": "purple", + "fur": "dark brown", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6951, + "metadata_dict": { + "hat": "irish boho", + "eyes": "coins", + "fur": "black", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "mouth": "tongue out", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6952, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "bored", + "background": "yellow", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6953, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "eyes": "holographic", + "fur": "cream", + "clothes": "space suit", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6954, + "metadata_dict": { + "fur": "tan", + "earring": "diamond stud", + "eyes": "bloodshot", + "clothes": "prom dress", + "hat": "commie hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6955, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6956, + "metadata_dict": { + "background": "new punk blue", + "hat": "spinner hat", + "fur": "pink", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6957, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "striped tee", + "mouth": "grin", + "background": "blue", + "earring": "gold stud", + "hat": "spinner hat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6958, + "metadata_dict": { + "eyes": "coins", + "mouth": "phoneme vuh", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6959, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "tongue out", + "background": "yellow", + "fur": "death bot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6960, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "toga", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6961, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "horns", + "clothes": "sailor shirt", + "background": "blue", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6962, + "metadata_dict": { + "earring": "gold hoop", + "fur": "dark brown", + "hat": "bayc flipped brim", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "phoneme wah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6963, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "jovial", + "background": "orange", + "fur": "brown", + "hat": "commie hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6964, + "metadata_dict": { + "mouth": "bored dagger", + "hat": "horns", + "eyes": "hypnotized", + "earring": "gold hoop", + "clothes": "bayc t black", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6965, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "sailor shirt", + "background": "orange", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6966, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "background": "blue", + "fur": "pink", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6967, + "metadata_dict": { + "mouth": "rage", + "fur": "noise", + "hat": "ww2 pilot helm", + "background": "gray", + "eyes": "angry", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6968, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "clothes": "tweed suit", + "mouth": "bored pipe", + "earring": "gold stud", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6969, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "earring": "diamond stud", + "hat": "prussian helmet", + "clothes": "prison jumpsuit", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6970, + "metadata_dict": { + "fur": "cream", + "clothes": "lumberjack shirt", + "hat": "irish boho", + "mouth": "dumbfounded", + "earring": "silver hoop", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6971, + "metadata_dict": { + "clothes": "striped tee", + "background": "blue", + "earring": "silver hoop", + "fur": "cheetah", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6972, + "metadata_dict": { + "fur": "golden brown", + "hat": "prussian helmet", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6973, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "fur": "cream", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6974, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "background": "blue", + "eyes": "3d", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6975, + "metadata_dict": { + "eyes": "heart", + "mouth": "rage", + "earring": "silver stud", + "fur": "black", + "clothes": "tie dye", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6976, + "metadata_dict": { + "mouth": "tongue out", + "eyes": "blindfold", + "fur": "dark brown", + "hat": "fisherman's hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6977, + "metadata_dict": { + "fur": "cream", + "earring": "diamond stud", + "hat": "stuntman helmet", + "background": "aquamarine", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6978, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "hypnotized", + "fur": "golden brown", + "mouth": "bored unshaven cigarette", + "earring": "silver stud", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6979, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "brown", + "eyes": "angry", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6980, + "metadata_dict": { + "mouth": "grin", + "clothes": "rainbow suspenders", + "background": "blue", + "eyes": "bored", + "hat": "bowler", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6981, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "earring": "gold hoop", + "fur": "dark brown", + "hat": "bowler", + "eyes": "sleepy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6982, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "clothes": "prom dress", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6983, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "hat": "baby's bonnet", + "background": "blue", + "fur": "white", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6984, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "fur": "black", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6985, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "caveman pelt", + "earring": "silver stud", + "hat": "faux hawk", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6986, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "zombie", + "fur": "red", + "background": "blue", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6987, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "fur": "pink", + "hat": "bowler", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6988, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "fur": "red", + "background": "blue", + "earring": "gold stud", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6989, + "metadata_dict": { + "eyes": "closed", + "fur": "red", + "clothes": "biker vest", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6990, + "metadata_dict": { + "background": "new punk blue", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6991, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "robot", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6992, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "lumberjack shirt", + "fur": "black", + "background": "yellow", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6993, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "cowboy shirt", + "eyes": "sleepy", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6994, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "tweed suit", + "fur": "red", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6995, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "earring": "silver stud", + "clothes": "work vest", + "background": "aquamarine", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6996, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "sleeveless logo t", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6997, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "bandolier", + "background": "blue", + "mouth": "small grin", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6998, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "coins", + "hat": "beanie", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6999, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "black", + "eyes": "3d", + "earring": "gold stud", + "clothes": "bayc t black", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7000, + "metadata_dict": { + "eyes": "zombie", + "earring": "gold hoop", + "background": "aquamarine", + "clothes": "smoking jacket", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7001, + "metadata_dict": { + "background": "aquamarine", + "fur": "dark brown", + "hat": "faux hawk", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7002, + "metadata_dict": { + "clothes": "striped tee", + "fur": "pink", + "background": "orange", + "eyes": "bloodshot", + "hat": "ww2 pilot helm", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7003, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "coins", + "fur": "black", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7004, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "earring": "gold stud", + "eyes": "sleepy", + "fur": "death bot", + "hat": "commie hat", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7005, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "zombie", + "mouth": "rage", + "fur": "black", + "background": "orange", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7006, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "halo", + "earring": "silver stud", + "eyes": "robot", + "background": "orange", + "clothes": "toga", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7007, + "metadata_dict": { + "eyes": "robot", + "fur": "cheetah", + "hat": "bunny ears", + "mouth": "bored", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7008, + "metadata_dict": { + "fur": "brown", + "eyes": "robot", + "background": "blue", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7009, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored party horn", + "background": "orange", + "fur": "dark brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7010, + "metadata_dict": { + "mouth": "bored dagger", + "clothes": "tweed suit", + "background": "blue", + "fur": "brown", + "eyes": "sleepy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7011, + "metadata_dict": { + "background": "new punk blue", + "eyes": "wide eyed", + "mouth": "jovial", + "fur": "brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7012, + "metadata_dict": { + "eyes": "x eyes", + "hat": "king's crown", + "mouth": "bored pipe", + "fur": "pink", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7013, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "grin", + "eyes": "3d", + "fur": "dark brown", + "clothes": "bayc t black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7014, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7015, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "fur": "black", + "clothes": "prom dress", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7016, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme vuh", + "earring": "gold stud", + "fur": "pink", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7017, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "hat": "sushi chef headband", + "mouth": "grin multicolored", + "background": "orange", + "eyes": "bored", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7018, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "baby's bonnet", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7019, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "sailor shirt", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7020, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "coins", + "fur": "gray", + "clothes": "tweed suit", + "background": "blue", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7021, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "hat": "irish boho", + "fur": "black", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7022, + "metadata_dict": { + "mouth": "grin", + "earring": "silver stud", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "robot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7023, + "metadata_dict": { + "background": "gray", + "mouth": "bored bubblegum", + "fur": "brown", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7024, + "metadata_dict": { + "mouth": "phoneme vuh", + "clothes": "leather jacket", + "eyes": "bloodshot", + "fur": "brown", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7025, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "clothes": "bandolier", + "eyes": "zombie", + "earring": "silver stud", + "background": "blue", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7026, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "clothes": "toga", + "fur": "brown", + "background": "purple", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7027, + "metadata_dict": { + "eyes": "blindfold", + "fur": "cream", + "mouth": "grin", + "earring": "diamond stud", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7028, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "dark brown", + "background": "gray", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7029, + "metadata_dict": { + "background": "orange", + "fur": "cheetah", + "hat": "beanie", + "eyes": "sleepy", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7030, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "clothes": "leather punk jacket", + "mouth": "jovial", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7031, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7032, + "metadata_dict": { + "eyes": "eyepatch", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7033, + "metadata_dict": { + "fur": "tan", + "hat": "fez", + "earring": "gold stud", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7034, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "wool turtleneck", + "earring": "silver stud", + "fur": "brown", + "background": "yellow", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7035, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "zombie", + "hat": "seaman's hat", + "earring": "gold hoop", + "background": "orange", + "eyes": "bloodshot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7036, + "metadata_dict": { + "earring": "diamond stud", + "fur": "brown", + "eyes": "robot", + "background": "blue", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7037, + "metadata_dict": { + "mouth": "grin", + "hat": "prussian helmet", + "eyes": "bloodshot", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7038, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "mouth": "grin", + "background": "orange", + "clothes": "pimp coat", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7039, + "metadata_dict": { + "background": "new punk blue", + "hat": "sushi chef headband", + "mouth": "jovial", + "eyes": "3d", + "clothes": "tuxedo tee", + "fur": "cheetah", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7040, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "hat": "beanie", + "eyes": "bored", + "background": "gray", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7041, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "fur": "dark brown", + "mouth": "small grin", + "hat": "ww2 pilot helm", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7042, + "metadata_dict": { + "eyes": "coins", + "mouth": "rage", + "background": "aquamarine", + "hat": "fisherman's hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7043, + "metadata_dict": { + "background": "orange", + "mouth": "bored unshaven cigarette", + "eyes": "crazy", + "fur": "robot", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7044, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "hat": "s&m hat", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7045, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "black holes t", + "fur": "pink", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7046, + "metadata_dict": { + "hat": "horns", + "fur": "gray", + "background": "aquamarine", + "mouth": "bored bubblegum", + "clothes": "smoking jacket", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7047, + "metadata_dict": { + "background": "aquamarine", + "clothes": "smoking jacket", + "fur": "noise", + "hat": "ww2 pilot helm", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7048, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "blue", + "clothes": "tanktop", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "cheetah", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7049, + "metadata_dict": { + "fur": "pink", + "background": "orange", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "clothes": "prom dress", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7050, + "metadata_dict": { + "fur": "cream", + "hat": "baby's bonnet", + "mouth": "small grin", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7051, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "fur": "black", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7052, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "clothes": "sleeveless logo t", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7053, + "metadata_dict": { + "hat": "party hat 2", + "fur": "golden brown", + "clothes": "sailor shirt", + "background": "purple", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7054, + "metadata_dict": { + "eyes": "crazy", + "mouth": "bored cigarette", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7055, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "fur": "red", + "eyes": "bloodshot", + "hat": "short mohawk", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7056, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "black", + "earring": "silver hoop", + "hat": "vietnam era helmet", + "eyes": "angry", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7057, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "hat": "bunny ears", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7058, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "clothes": "black t", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7059, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "clothes": "prison jumpsuit", + "fur": "black", + "background": "gray", + "eyes": "crazy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7060, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "coins", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7061, + "metadata_dict": { + "background": "yellow", + "mouth": "bored unshaven", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7062, + "metadata_dict": { + "background": "aquamarine", + "hat": "spinner hat", + "mouth": "tongue out", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7063, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "pink", + "background": "purple", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7064, + "metadata_dict": { + "mouth": "phoneme vuh", + "eyes": "robot", + "fur": "brown", + "hat": "bayc hat red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7065, + "metadata_dict": { + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7066, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "fur": "black", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7067, + "metadata_dict": { + "fur": "gray", + "earring": "gold hoop", + "mouth": "dumbfounded", + "background": "orange", + "eyes": "crazy", + "hat": "police motorcycle helmet", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7068, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7069, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "cross", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7070, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "gray", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7071, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "dark brown", + "background": "army green", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7072, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "fur": "noise", + "clothes": "bayc t black", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7073, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "golden brown", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7074, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "tuxedo tee", + "hat": "army hat", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7075, + "metadata_dict": { + "eyes": "scumbag", + "hat": "seaman's hat", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7076, + "metadata_dict": { + "clothes": "blue dress", + "earring": "silver hoop", + "eyes": "blue beams", + "fur": "cheetah", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7077, + "metadata_dict": { + "clothes": "striped tee", + "hat": "s&m hat", + "eyes": "zombie", + "fur": "gray", + "background": "blue", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7078, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "phoneme vuh", + "earring": "gold stud", + "fur": "black", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7079, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "coins", + "mouth": "bored unshaven pipe", + "clothes": "tanktop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7080, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "baby's bonnet", + "fur": "black", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7081, + "metadata_dict": { + "hat": "irish boho", + "earring": "diamond stud", + "eyes": "bored", + "mouth": "bored cigarette", + "fur": "robot", + "clothes": "bone tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7082, + "metadata_dict": { + "background": "new punk blue", + "fur": "brown", + "hat": "cowboy hat", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7083, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "hat": "ww2 pilot helm", + "background": "yellow", + "clothes": "guayabera", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7084, + "metadata_dict": { + "clothes": "striped tee", + "hat": "sushi chef headband", + "fur": "trippy", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7085, + "metadata_dict": { + "earring": "silver stud", + "background": "aquamarine", + "fur": "cheetah", + "hat": "safari", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7086, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 1", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7087, + "metadata_dict": { + "clothes": "rainbow suspenders", + "hat": "fez", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7088, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "background": "blue", + "earring": "gold stud", + "clothes": "stunt jacket", + "hat": "safari", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7089, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "earring": "silver stud", + "eyes": "sleepy", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7090, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "grin multicolored", + "fur": "solid gold", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7091, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "sushi chef headband", + "eyes": "robot", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7092, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "golden brown", + "eyes": "bored", + "hat": "girl's hair short", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7093, + "metadata_dict": { + "fur": "golden brown", + "background": "gray", + "mouth": "bored", + "eyes": "angry", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7094, + "metadata_dict": { + "mouth": "grin gold grill", + "hat": "sushi chef headband", + "background": "blue", + "eyes": "3d", + "clothes": "guayabera", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7095, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "sushi chef headband", + "fur": "dark brown", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7096, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "gold hoop", + "background": "orange", + "clothes": "tanktop", + "hat": "bayc hat red", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7097, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "space suit", + "earring": "diamond stud", + "background": "orange", + "hat": "beanie", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7098, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7099, + "metadata_dict": { + "hat": "girl's hair pink", + "eyes": "robot", + "fur": "dark brown", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7100, + "metadata_dict": { + "fur": "gray", + "clothes": "tweed suit", + "mouth": "phoneme vuh", + "earring": "silver stud", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7101, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "dumbfounded", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "clothes": "hip hop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7102, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "rage", + "fur": "pink", + "background": "gray", + "earring": "cross", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7103, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "fur": "trippy", + "mouth": "grin", + "hat": "short mohawk", + "earring": "silver hoop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7104, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "spinner hat", + "fur": "pink", + "mouth": "tongue out", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7105, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "golden brown", + "clothes": "leather jacket", + "earring": "gold stud", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7106, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "fur": "gray", + "background": "blue", + "hat": "spinner hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7107, + "metadata_dict": { + "background": "new punk blue", + "eyes": "3d", + "fur": "brown", + "clothes": "stunt jacket", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7108, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "fur": "tan", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7109, + "metadata_dict": { + "eyes": "heart", + "hat": "irish boho", + "mouth": "bored unshaven pipe", + "fur": "red", + "earring": "gold stud", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7110, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "bored unshaven", + "background": "yellow", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7111, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "clothes": "black t", + "mouth": "dumbfounded", + "hat": "army hat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7112, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "earring": "silver hoop", + "clothes": "tanktop", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7113, + "metadata_dict": { + "eyes": "heart", + "background": "gray", + "mouth": "grin multicolored", + "hat": "baby's bonnet", + "clothes": "bayc t black", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7114, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "robot", + "background": "orange", + "fur": "dark brown", + "mouth": "bored pizza" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7115, + "metadata_dict": { + "hat": "irish boho", + "fur": "cheetah", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7116, + "metadata_dict": { + "mouth": "rage", + "fur": "dark brown", + "background": "yellow", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7117, + "metadata_dict": { + "background": "gray", + "eyes": "robot", + "earring": "silver hoop", + "fur": "cheetah", + "clothes": "guayabera", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7118, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black suit", + "background": "blue", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7119, + "metadata_dict": { + "fur": "red", + "eyes": "3d", + "mouth": "bored bubblegum", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7120, + "metadata_dict": { + "fur": "cream", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "background": "gray", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7121, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "smoking jacket", + "eyes": "bored", + "background": "gray", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7122, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "hat": "fisherman's hat", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7123, + "metadata_dict": { + "fur": "cream", + "hat": "party hat 1", + "mouth": "bored bubblegum", + "eyes": "bored", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7124, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "background": "blue", + "eyes": "robot", + "clothes": "navy striped tee", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7125, + "metadata_dict": { + "fur": "golden brown", + "clothes": "black t", + "hat": "vietnam era helmet", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7126, + "metadata_dict": { + "background": "blue", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "fur": "zombie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7127, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "red", + "hat": "beanie", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7128, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "fur": "golden brown", + "clothes": "guayabera", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7129, + "metadata_dict": { + "hat": "prussian helmet", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7130, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "scumbag", + "earring": "gold stud", + "fur": "dark brown", + "mouth": "bored unshaven dagger", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7131, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "gray", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7132, + "metadata_dict": { + "eyes": "blindfold", + "background": "gray", + "hat": "baby's bonnet", + "mouth": "phoneme vuh", + "clothes": "work vest", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7133, + "metadata_dict": { + "fur": "dmt", + "eyes": "zombie", + "clothes": "tuxedo tee", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7134, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "gray", + "earring": "silver stud", + "mouth": "tongue out", + "clothes": "bone necklace", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7135, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "red", + "background": "blue", + "eyes": "bored", + "hat": "cowboy hat", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7136, + "metadata_dict": { + "fur": "red", + "background": "blue", + "mouth": "bored unshaven", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7137, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7138, + "metadata_dict": { + "fur": "dmt", + "mouth": "jovial", + "background": "orange", + "earring": "silver hoop", + "hat": "police motorcycle helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7139, + "metadata_dict": { + "eyes": "coins", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "fur": "black", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7140, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "bored", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7141, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7142, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "hat": "fez", + "fur": "red", + "eyes": "blue beams" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7143, + "metadata_dict": { + "background": "aquamarine", + "eyes": "robot", + "clothes": "work vest", + "fur": "black", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7144, + "metadata_dict": { + "mouth": "grin", + "eyes": "bored", + "hat": "beanie", + "clothes": "navy striped tee", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7145, + "metadata_dict": { + "background": "new punk blue", + "eyes": "holographic", + "hat": "prussian helmet", + "clothes": "prison jumpsuit", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7146, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "earring": "gold stud", + "background": "gray", + "eyes": "angry", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7147, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "cowboy shirt", + "fur": "black", + "background": "purple", + "hat": "fisherman's hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7148, + "metadata_dict": { + "mouth": "discomfort", + "earring": "diamond stud", + "clothes": "work vest", + "fur": "dark brown", + "hat": "vietnam era helmet", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7149, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "hat": "s&m hat", + "clothes": "leather jacket", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7150, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "background": "blue", + "fur": "pink", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7151, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "work vest", + "fur": "black", + "eyes": "bloodshot", + "hat": "police motorcycle helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7152, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "clothes": "smoking jacket", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7153, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "zombie", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "commie hat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7154, + "metadata_dict": { + "eyes": "closed", + "clothes": "bandolier", + "earring": "gold hoop", + "fur": "dark brown", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7155, + "metadata_dict": { + "clothes": "rainbow suspenders", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7156, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "rainbow suspenders", + "mouth": "bored unshaven party horn", + "background": "blue", + "fur": "noise" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7157, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "seaman's hat", + "clothes": "biker vest", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7158, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "eyes": "bored", + "hat": "army hat", + "fur": "white", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7159, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "silver stud", + "mouth": "phoneme vuh", + "eyes": "3d", + "hat": "short mohawk", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7160, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "eyes": "bored", + "hat": "ww2 pilot helm", + "clothes": "bone necklace", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7161, + "metadata_dict": { + "background": "new punk blue", + "clothes": "kings robe", + "hat": "spinner hat", + "mouth": "bored", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7162, + "metadata_dict": { + "background": "purple", + "fur": "dark brown", + "hat": "bayc hat red", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7163, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "laurel wreath", + "eyes": "coins", + "earring": "gold hoop", + "fur": "cheetah", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7164, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "background": "orange", + "fur": "dark brown", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7165, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "gray", + "background": "aquamarine", + "mouth": "small grin", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7166, + "metadata_dict": { + "eyes": "holographic", + "fur": "golden brown", + "clothes": "tweed suit", + "mouth": "dumbfounded", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7167, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme vuh", + "fur": "brown", + "hat": "bowler", + "clothes": "caveman pelt", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7168, + "metadata_dict": { + "eyes": "zombie", + "background": "blue", + "earring": "silver hoop", + "clothes": "admirals coat", + "hat": "bayc hat red", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7169, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin", + "fur": "gray", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7170, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "grin", + "clothes": "leather jacket", + "hat": "bayc hat red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7171, + "metadata_dict": { + "background": "new punk blue", + "clothes": "work vest", + "eyes": "3d", + "earring": "silver hoop", + "mouth": "tongue out", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7172, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "cream", + "clothes": "lumberjack shirt", + "hat": "fez", + "earring": "silver stud", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7173, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "clothes": "hawaiian", + "eyes": "bloodshot", + "hat": "cowboy hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7174, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "brown", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7175, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "hat": "fez", + "background": "blue", + "clothes": "bone necklace", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7176, + "metadata_dict": { + "eyes": "heart", + "fur": "brown", + "background": "aquamarine", + "hat": "short mohawk", + "clothes": "toga", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7177, + "metadata_dict": { + "hat": "spinner hat", + "earring": "gold stud", + "eyes": "3d", + "mouth": "small grin", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7178, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "laser eyes", + "hat": "sushi chef headband", + "background": "blue", + "fur": "brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7179, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "sailor shirt", + "eyes": "3d", + "fur": "pink", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7180, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "clothes": "sailor shirt", + "mouth": "phoneme vuh", + "background": "blue", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7181, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "hat": "seaman's hat", + "earring": "silver stud", + "fur": "red", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7182, + "metadata_dict": { + "background": "gray", + "eyes": "closed", + "fur": "gray", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7183, + "metadata_dict": { + "fur": "black", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7184, + "metadata_dict": { + "fur": "golden brown", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7185, + "metadata_dict": { + "clothes": "leather jacket", + "eyes": "bored", + "fur": "cheetah", + "hat": "bowler", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7186, + "metadata_dict": { + "earring": "gold hoop", + "background": "aquamarine", + "fur": "black", + "hat": "commie hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7187, + "metadata_dict": { + "hat": "horns", + "fur": "trippy", + "mouth": "tongue out", + "background": "gray", + "clothes": "stunt jacket", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7188, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "dumbfounded", + "background": "yellow", + "hat": "bunny ears", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7189, + "metadata_dict": { + "eyes": "heart", + "hat": "s&m hat", + "mouth": "bored pipe", + "clothes": "tanktop", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7190, + "metadata_dict": { + "fur": "cheetah", + "hat": "seaman's hat", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7191, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "clothes": "rainbow suspenders", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7192, + "metadata_dict": { + "fur": "tan", + "clothes": "bandolier", + "earring": "gold hoop", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7193, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "grin", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "hat": "army hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7194, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "coins", + "background": "blue", + "hat": "faux hawk", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7195, + "metadata_dict": { + "eyes": "bloodshot", + "fur": "death bot", + "mouth": "bored", + "hat": "police motorcycle helmet", + "clothes": "hawaiian", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7196, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7197, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "earring": "gold hoop", + "background": "orange", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7198, + "metadata_dict": { + "eyes": "zombie", + "fur": "brown", + "mouth": "dumbfounded", + "clothes": "pimp coat", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7199, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "earring": "silver stud", + "hat": "vietnam era helmet", + "fur": "white", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7200, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "eyes": "3d", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7201, + "metadata_dict": { + "fur": "gray", + "eyes": "coins", + "clothes": "tie dye", + "background": "orange", + "hat": "short mohawk", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7202, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "clothes": "blue dress", + "fur": "brown", + "eyes": "angry", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7203, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "3d", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7204, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "3d", + "clothes": "tuxedo tee", + "fur": "cheetah", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7205, + "metadata_dict": { + "clothes": "black t", + "hat": "sea captain's hat", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7206, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "horns", + "mouth": "grin", + "background": "aquamarine", + "fur": "black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7207, + "metadata_dict": { + "background": "new punk blue", + "fur": "noise", + "hat": "bowler", + "mouth": "bored cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7208, + "metadata_dict": { + "background": "gray", + "fur": "zombie", + "mouth": "bored", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7209, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7210, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "beanie", + "clothes": "caveman pelt", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7211, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "earring": "silver hoop", + "eyes": "bored", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7212, + "metadata_dict": { + "fur": "cream", + "background": "aquamarine", + "mouth": "bored", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7213, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "background": "aquamarine", + "clothes": "tanktop", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7214, + "metadata_dict": { + "eyes": "robot", + "hat": "fisherman's hat", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7215, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "sleeveless t", + "eyes": "coins", + "earring": "silver stud", + "background": "orange", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7216, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "eyes": "zombie", + "fur": "dark brown", + "mouth": "small grin", + "earring": "silver hoop", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7217, + "metadata_dict": { + "mouth": "bored bubblegum", + "background": "orange", + "fur": "brown", + "hat": "bowler", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7218, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "clothes": "black t", + "background": "blue", + "fur": "dark brown", + "mouth": "small grin", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7219, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7220, + "metadata_dict": { + "fur": "red", + "eyes": "robot", + "background": "orange", + "hat": "beanie", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7221, + "metadata_dict": { + "fur": "gray", + "background": "aquamarine", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7222, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "party hat 1", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7223, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "golden brown", + "eyes": "coins" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7224, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "black", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7225, + "metadata_dict": { + "clothes": "black t", + "fur": "pink", + "eyes": "bored", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7226, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "grin", + "eyes": "3d", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7227, + "metadata_dict": { + "mouth": "bored cigarette", + "eyes": "zombie", + "hat": "fez", + "fur": "cheetah", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7228, + "metadata_dict": { + "fur": "trippy", + "background": "orange", + "mouth": "small grin", + "eyes": "bored", + "clothes": "admirals coat", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7229, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "hat": "fez", + "fur": "dark brown", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7230, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "hat": "spinner hat", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7231, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "fur": "dark brown", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7232, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7233, + "metadata_dict": { + "clothes": "black t", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7234, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "clothes": "toga", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7235, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "tan", + "hat": "ww2 pilot helm", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7236, + "metadata_dict": { + "fur": "tan", + "clothes": "black holes t", + "eyes": "coins", + "earring": "cross", + "background": "purple", + "hat": "safari", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7237, + "metadata_dict": { + "fur": "gray", + "hat": "fez", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "yellow", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7238, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "background": "orange", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7239, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "brown", + "eyes": "sleepy", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7240, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "sleepy", + "fur": "pink", + "clothes": "bayc t black", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7241, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "clothes": "leather jacket", + "earring": "gold stud", + "background": "orange", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7242, + "metadata_dict": { + "clothes": "smoking jacket", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7243, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "fur": "noise", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7244, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "background": "purple", + "eyes": "3d", + "clothes": "tie dye", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7245, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "dark brown", + "hat": "army hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7246, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "grin diamond grill", + "eyes": "3d", + "fur": "cheetah", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7247, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "coins", + "earring": "silver stud", + "background": "purple", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7248, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "hat": "police motorcycle helmet", + "background": "aquamarine", + "fur": "cheetah", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7249, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bored", + "mouth": "tongue out", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7250, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "background": "gray", + "hat": "safari", + "fur": "white", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7251, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fisherman's hat", + "fur": "brown", + "eyes": "sleepy", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7252, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin diamond grill", + "eyes": "bored", + "fur": "zombie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7253, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "hat": "party hat 2", + "eyes": "closed", + "fur": "cream", + "clothes": "smoking jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7254, + "metadata_dict": { + "mouth": "bored pipe", + "clothes": "smoking jacket", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7255, + "metadata_dict": { + "background": "blue", + "clothes": "tanktop", + "fur": "brown", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7256, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored dagger", + "fur": "dark brown", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7257, + "metadata_dict": { + "mouth": "phoneme l", + "background": "purple", + "fur": "blue", + "eyes": "hypnotized" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7258, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "toga", + "background": "purple", + "hat": "commie hat", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7259, + "metadata_dict": { + "clothes": "striped tee", + "hat": "irish boho", + "mouth": "bored party horn", + "fur": "red", + "background": "orange", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7260, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "tan", + "earring": "silver stud", + "eyes": "bored", + "background": "yellow", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7261, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "eyes": "bloodshot", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7262, + "metadata_dict": { + "mouth": "phoneme l", + "background": "new punk blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "faux hawk", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7263, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "tan", + "clothes": "black t", + "mouth": "phoneme vuh", + "eyes": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7264, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7265, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "eyes": "heart", + "hat": "seaman's hat", + "background": "aquamarine", + "earring": "gold stud", + "clothes": "tie dye", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7266, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "earring": "gold stud", + "eyes": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7267, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "bandana blue", + "fur": "golden brown", + "clothes": "rainbow suspenders", + "earring": "silver stud", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7268, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored dagger", + "fur": "black", + "background": "orange", + "eyes": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7269, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "background": "aquamarine", + "clothes": "smoking jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7270, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "jovial", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7271, + "metadata_dict": { + "eyes": "closed", + "clothes": "bayc t red", + "fur": "cream", + "background": "orange", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7272, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored pipe", + "eyes": "3d", + "clothes": "biker vest", + "hat": "girl's hair short", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7273, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cheetah", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7274, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "aquamarine", + "eyes": "robot", + "fur": "black", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7275, + "metadata_dict": { + "background": "aquamarine", + "earring": "gold stud", + "fur": "pink", + "clothes": "tie dye", + "hat": "bayc flipped brim", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7276, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "cheetah", + "clothes": "toga", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7277, + "metadata_dict": { + "clothes": "sleeveless logo t", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7278, + "metadata_dict": { + "fur": "cream", + "hat": "s&m hat", + "mouth": "bored pipe", + "background": "orange", + "eyes": "crazy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7279, + "metadata_dict": { + "earring": "silver stud", + "eyes": "3d", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7280, + "metadata_dict": { + "earring": "gold hoop", + "fur": "black", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7281, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven cigarette", + "eyes": "angry", + "hat": "police motorcycle helmet", + "clothes": "bone tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7282, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "zombie", + "fur": "red", + "hat": "spinner hat", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7283, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7284, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "irish boho", + "background": "purple", + "earring": "silver hoop", + "eyes": "sleepy", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7285, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "zombie", + "mouth": "bored party horn", + "hat": "bowler", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7286, + "metadata_dict": { + "eyes": "x eyes", + "hat": "party hat 2", + "clothes": "leather punk jacket", + "mouth": "grin", + "background": "blue", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7287, + "metadata_dict": { + "background": "yellow", + "fur": "pink", + "eyes": "crazy", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7288, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "background": "aquamarine", + "eyes": "3d", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7289, + "metadata_dict": { + "fur": "tan", + "hat": "girl's hair pink", + "mouth": "rage", + "background": "blue", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7290, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "tan", + "background": "orange", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7291, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "brown", + "hat": "police motorcycle helmet", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7292, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "phoneme vuh", + "background": "aquamarine", + "hat": "short mohawk", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7293, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "bored unshaven pipe", + "eyes": "bloodshot", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7294, + "metadata_dict": { + "background": "new punk blue", + "hat": "bandana blue", + "mouth": "grin", + "eyes": "robot", + "clothes": "smoking jacket", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7295, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "background": "blue", + "fur": "black", + "clothes": "tanktop", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7296, + "metadata_dict": { + "earring": "silver stud", + "fur": "red", + "background": "orange", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7297, + "metadata_dict": { + "clothes": "lab coat", + "mouth": "bored bubblegum", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7298, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven cigarette", + "background": "blue", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7299, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "smoking jacket", + "background": "purple", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7300, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bayc t red", + "fur": "tan", + "eyes": "robot", + "background": "yellow", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7301, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "fur": "red", + "background": "aquamarine", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7302, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "fur": "golden brown", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7303, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven party horn", + "background": "orange", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7304, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "black", + "hat": "girl's hair short", + "clothes": "pimp coat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7305, + "metadata_dict": { + "fur": "pink", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7306, + "metadata_dict": { + "background": "aquamarine", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7307, + "metadata_dict": { + "fur": "golden brown", + "hat": "baby's bonnet", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bored", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7308, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "sailor shirt", + "fur": "black", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7309, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "earring": "silver stud", + "background": "aquamarine", + "hat": "spinner hat", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7310, + "metadata_dict": { + "hat": "laurel wreath", + "background": "aquamarine", + "eyes": "bloodshot", + "mouth": "tongue out", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7311, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "robot", + "clothes": "service", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7312, + "metadata_dict": { + "earring": "gold hoop", + "hat": "prussian helmet", + "mouth": "phoneme vuh", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7313, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "mouth": "dumbfounded", + "earring": "silver hoop", + "clothes": "toga", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7314, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "hat": "spinner hat", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7315, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "robot", + "earring": "gold stud", + "hat": "short mohawk", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7316, + "metadata_dict": { + "fur": "cream", + "eyes": "zombie", + "hat": "spinner hat", + "background": "yellow", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7317, + "metadata_dict": { + "mouth": "jovial", + "background": "yellow", + "fur": "black", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7318, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7319, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "bloodshot", + "hat": "army hat", + "background": "gray", + "earring": "cross", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7320, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "grin", + "background": "blue", + "fur": "dark brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7321, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "scumbag", + "fur": "red", + "clothes": "tie dye", + "earring": "gold stud", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7322, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "bored", + "clothes": "tanktop", + "hat": "beanie", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7323, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "clothes": "black t", + "background": "aquamarine", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7324, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t black", + "hat": "ww2 pilot helm", + "fur": "brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7325, + "metadata_dict": { + "eyes": "blindfold", + "fur": "black", + "hat": "army hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7326, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "background": "orange", + "eyes": "3d", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7327, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "clothes": "rainbow suspenders", + "fur": "noise", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7328, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "hat": "laurel wreath", + "earring": "gold hoop", + "clothes": "leather jacket", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7329, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7330, + "metadata_dict": { + "fur": "black", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7331, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "purple", + "earring": "silver hoop", + "clothes": "lab coat", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7332, + "metadata_dict": { + "mouth": "small grin", + "hat": "cowboy hat", + "background": "gray", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7333, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "blindfold", + "fur": "brown", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7334, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "cyborg", + "fur": "golden brown", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7335, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "hat": "short mohawk", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7336, + "metadata_dict": { + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "tuxedo tee", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7337, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "mouth": "grin diamond grill", + "fur": "pink", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7338, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "rage", + "clothes": "tie dye", + "earring": "gold stud", + "background": "gray", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7339, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "black", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7340, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "yellow", + "mouth": "phoneme vuh", + "fur": "dark brown", + "hat": "vietnam era helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7341, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored", + "background": "gray", + "earring": "cross", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7342, + "metadata_dict": { + "eyes": "zombie", + "background": "purple", + "fur": "tan", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7343, + "metadata_dict": { + "mouth": "dumbfounded", + "clothes": "bayc t black", + "hat": "faux hawk", + "background": "army green", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7344, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "sleepy", + "fur": "noise", + "hat": "army hat", + "background": "purple", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7345, + "metadata_dict": { + "hat": "party hat 2", + "eyes": "laser eyes", + "fur": "golden brown", + "mouth": "bored unshaven party horn", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7346, + "metadata_dict": { + "mouth": "grin", + "fur": "dmt", + "clothes": "rainbow suspenders", + "hat": "fisherman's hat", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7347, + "metadata_dict": { + "fur": "brown", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "clothes": "tanktop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7348, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "bored", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7349, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "background": "blue", + "eyes": "bored", + "clothes": "stunt jacket", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7350, + "metadata_dict": { + "hat": "irish boho", + "earring": "gold hoop", + "background": "aquamarine", + "clothes": "biker vest", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7351, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "3d", + "clothes": "tanktop", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7352, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "clothes": "biker vest", + "eyes": "bloodshot", + "fur": "noise", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7353, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "fur": "cream", + "background": "blue", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7354, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "zombie", + "background": "yellow", + "mouth": "dumbfounded", + "earring": "silver hoop", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7355, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "laurel wreath", + "eyes": "3d", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7356, + "metadata_dict": { + "eyes": "heart", + "hat": "seaman's hat", + "clothes": "cowboy shirt", + "background": "blue", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7357, + "metadata_dict": { + "eyes": "blindfold", + "background": "orange", + "mouth": "bored unshaven cigarette", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7358, + "metadata_dict": { + "clothes": "bandolier", + "background": "orange", + "hat": "fisherman's hat", + "fur": "white", + "mouth": "bored cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7359, + "metadata_dict": { + "clothes": "space suit", + "fur": "red", + "background": "aquamarine", + "eyes": "sleepy", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7360, + "metadata_dict": { + "mouth": "grin", + "clothes": "smoking jacket", + "eyes": "3d", + "background": "orange", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7361, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bored", + "hat": "army hat", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7362, + "metadata_dict": { + "earring": "silver stud", + "background": "aquamarine", + "eyes": "3d", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7363, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "earring": "diamond stud", + "hat": "party hat 1", + "background": "aquamarine", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7364, + "metadata_dict": { + "background": "gray", + "clothes": "black t", + "hat": "stuntman helmet", + "mouth": "small grin", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7365, + "metadata_dict": { + "hat": "girl's hair short", + "mouth": "grin", + "background": "blue", + "earring": "silver hoop", + "fur": "death bot", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7366, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "tan", + "background": "aquamarine", + "hat": "ww2 pilot helm", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7367, + "metadata_dict": { + "clothes": "prison jumpsuit", + "hat": "fez", + "mouth": "bored unshaven pipe", + "background": "blue", + "earring": "silver hoop", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7368, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "clothes": "black t", + "hat": "cowboy hat", + "earring": "silver hoop", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7369, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "background": "orange", + "fur": "brown", + "clothes": "guayabera", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7370, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "fur": "cream", + "hat": "ww2 pilot helm", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7371, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "jovial", + "background": "orange", + "fur": "dark brown", + "hat": "faux hawk", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7372, + "metadata_dict": { + "fur": "tan", + "hat": "s&m hat", + "clothes": "blue dress", + "background": "blue", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7373, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "coins", + "hat": "fez", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7374, + "metadata_dict": { + "fur": "golden brown", + "hat": "beanie", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7375, + "metadata_dict": { + "mouth": "discomfort", + "background": "yellow", + "eyes": "robot", + "earring": "gold stud", + "fur": "dark brown", + "hat": "beanie", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7376, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme vuh", + "eyes": "robot", + "fur": "dark brown", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7377, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "hat": "girl's hair pink", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7378, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "seaman's hat", + "clothes": "vietnam jacket", + "earring": "silver stud", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7379, + "metadata_dict": { + "earring": "diamond stud", + "eyes": "robot", + "clothes": "smoking jacket", + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7380, + "metadata_dict": { + "eyes": "coins", + "fur": "brown", + "mouth": "jovial", + "hat": "short mohawk", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7381, + "metadata_dict": { + "clothes": "black t", + "hat": "king's crown", + "background": "blue", + "fur": "brown", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7382, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "clothes": "black t", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7383, + "metadata_dict": { + "earring": "gold hoop", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7384, + "metadata_dict": { + "clothes": "black suit", + "background": "aquamarine", + "eyes": "bored", + "fur": "death bot", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7385, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "background": "aquamarine", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7386, + "metadata_dict": { + "mouth": "grin", + "eyes": "bored", + "hat": "bayc hat red", + "fur": "cheetah", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7387, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "beanie", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7388, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "lumberjack shirt", + "hat": "stuntman helmet", + "fur": "black", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7389, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "clothes": "work vest", + "background": "blue", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7390, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "fur": "cream", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7391, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "mouth": "bored unshaven kazoo", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7392, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "scumbag", + "background": "gray", + "fur": "black", + "hat": "cowboy hat", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7393, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold stud", + "fur": "pink", + "clothes": "tie dye", + "hat": "bayc flipped brim", + "background": "purple", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7394, + "metadata_dict": { + "clothes": "striped tee", + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7395, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "horns", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7396, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "earring": "silver stud", + "fur": "noise", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7397, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "background": "blue", + "eyes": "bored", + "hat": "commie hat", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7398, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "background": "blue", + "hat": "bayc flipped brim", + "fur": "solid gold", + "earring": "silver hoop", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7399, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "clothes": "smoking jacket", + "eyes": "bored", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7400, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "aquamarine", + "eyes": "robot", + "fur": "black", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7401, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "sushi chef headband", + "clothes": "tweed suit", + "eyes": "bored", + "fur": "death bot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7402, + "metadata_dict": { + "fur": "black", + "hat": "spinner hat", + "background": "orange", + "mouth": "bored", + "eyes": "angry", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7403, + "metadata_dict": { + "fur": "trippy", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "faux hawk", + "mouth": "phoneme wah", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7404, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "hat": "s&m hat", + "mouth": "dumbfounded", + "background": "aquamarine", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7405, + "metadata_dict": { + "clothes": "tweed suit", + "mouth": "rage", + "eyes": "bored", + "hat": "bayc hat red", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7406, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "mouth": "dumbfounded", + "fur": "pink", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7407, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "bored", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7408, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "fez", + "fur": "pink", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7409, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "rage", + "clothes": "prison jumpsuit", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7410, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7411, + "metadata_dict": { + "eyes": "heart", + "clothes": "lumberjack shirt", + "mouth": "bored unshaven cigarette", + "earring": "silver stud", + "background": "aquamarine", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7412, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme vuh", + "hat": "short mohawk", + "clothes": "guayabera", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7413, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "rage", + "background": "blue", + "fur": "black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7414, + "metadata_dict": { + "hat": "trippy captain's hat", + "background": "new punk blue", + "mouth": "grin", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7415, + "metadata_dict": { + "fur": "red", + "clothes": "biker vest", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7416, + "metadata_dict": { + "hat": "horns", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7417, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7418, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "hat": "cowboy hat", + "clothes": "toga", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7419, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "horns", + "fur": "golden brown", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7420, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "seaman's hat", + "background": "blue", + "clothes": "smoking jacket", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7421, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "work vest", + "fur": "black", + "hat": "commie hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7422, + "metadata_dict": { + "clothes": "bone tee", + "hat": "fez", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7423, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "background": "blue", + "fur": "brown", + "clothes": "hip hop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7424, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "bloodshot", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7425, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "clothes": "lab coat", + "mouth": "bored", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7426, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "clothes": "black t", + "background": "aquamarine", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7427, + "metadata_dict": { + "clothes": "black t", + "hat": "vietnam era helmet", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7428, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "fur": "dark brown", + "hat": "commie hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7429, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "background": "orange", + "eyes": "bloodshot", + "mouth": "tongue out", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7430, + "metadata_dict": { + "fur": "cream", + "mouth": "rage", + "eyes": "robot", + "hat": "faux hawk", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7431, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "girl's hair pink", + "eyes": "bloodshot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7432, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "noise", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7433, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "hat": "seaman's hat", + "earring": "gold stud", + "fur": "black", + "clothes": "tie dye", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7434, + "metadata_dict": { + "eyes": "coins", + "background": "blue", + "hat": "short mohawk", + "clothes": "tanktop", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7435, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "mouth": "small grin", + "hat": "cowboy hat", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7436, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7437, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bandolier", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7438, + "metadata_dict": { + "eyes": "zombie", + "background": "orange", + "hat": "army hat", + "mouth": "tongue out", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7439, + "metadata_dict": { + "fur": "brown", + "background": "yellow", + "mouth": "small grin", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7440, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "irish boho", + "fur": "gray", + "background": "blue", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7441, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "fur": "dark brown", + "hat": "bunny ears", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7442, + "metadata_dict": { + "hat": "halo", + "mouth": "phoneme vuh", + "fur": "black", + "eyes": "bloodshot", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7443, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "black", + "eyes": "3d", + "mouth": "bored bubblegum", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7444, + "metadata_dict": { + "mouth": "grin", + "fur": "cheetah", + "clothes": "tie dye", + "background": "gray", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7445, + "metadata_dict": { + "eyes": "coins", + "mouth": "phoneme vuh", + "fur": "brown", + "background": "purple", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7446, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "scumbag", + "fur": "gray", + "hat": "short mohawk", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7447, + "metadata_dict": { + "eyes": "blindfold", + "fur": "pink", + "clothes": "bayc t black", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7448, + "metadata_dict": { + "background": "gray", + "hat": "party hat 1", + "clothes": "tie dye", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7449, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored dagger", + "hat": "seaman's hat", + "background": "orange", + "clothes": "guayabera", + "earring": "cross", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7450, + "metadata_dict": { + "fur": "cream", + "hat": "seaman's hat", + "mouth": "bored party horn", + "background": "aquamarine", + "eyes": "3d", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7451, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "background": "orange", + "eyes": "bloodshot", + "clothes": "smoking jacket", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7452, + "metadata_dict": { + "background": "blue", + "eyes": "bloodshot", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "bone necklace", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7453, + "metadata_dict": { + "background": "purple", + "eyes": "robot", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7454, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "bone necklace", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7455, + "metadata_dict": { + "clothes": "sailor shirt", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "hat": "fisherman's hat", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7456, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "black holes t", + "hat": "spinner hat", + "earring": "gold stud", + "fur": "brown", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7457, + "metadata_dict": { + "fur": "gray", + "eyes": "bloodshot", + "earring": "silver hoop", + "mouth": "bored unshaven cigar", + "background": "gray", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7458, + "metadata_dict": { + "clothes": "bandolier", + "background": "orange", + "fur": "dark brown", + "hat": "bunny ears", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7459, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "space suit", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7460, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "earring": "silver stud", + "background": "aquamarine", + "fur": "pink", + "clothes": "lab coat", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7461, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "phoneme oh", + "background": "aquamarine", + "eyes": "robot", + "earring": "gold stud", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7462, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "blue", + "earring": "gold stud", + "fur": "pink", + "hat": "faux hawk", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7463, + "metadata_dict": { + "mouth": "grin", + "earring": "silver stud", + "background": "yellow", + "fur": "white", + "eyes": "sunglasses", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7464, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "grin diamond grill", + "background": "aquamarine", + "eyes": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7465, + "metadata_dict": { + "mouth": "rage", + "fur": "black", + "clothes": "biker vest", + "eyes": "bloodshot", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7466, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "tan", + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7467, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "golden brown", + "earring": "silver hoop", + "eyes": "bored", + "clothes": "admirals coat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7468, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "earring": "silver stud", + "fur": "dark brown", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7469, + "metadata_dict": { + "clothes": "sleeveless t", + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "fur": "red", + "hat": "short mohawk", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7470, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "eyes": "3d", + "hat": "bayc flipped brim", + "clothes": "stunt jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7471, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "mouth": "phoneme oh", + "eyes": "robot", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7472, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "earring": "silver stud", + "hat": "vietnam era helmet", + "background": "purple", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7473, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "bloodshot", + "mouth": "bored", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7474, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "grin", + "fur": "dark brown", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7475, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "bayc t black", + "hat": "army hat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7476, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "hat": "spinner hat", + "clothes": "leather jacket", + "eyes": "bored", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7477, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "earring": "silver stud", + "fur": "black", + "clothes": "smoking jacket", + "hat": "girl's hair short", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7478, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "black suit", + "background": "aquamarine", + "fur": "cheetah", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7479, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "clothes": "black t", + "background": "yellow", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7480, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "tan", + "hat": "irish boho", + "clothes": "biker vest", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7481, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "fur": "golden brown", + "eyes": "coins", + "clothes": "work vest", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7482, + "metadata_dict": { + "mouth": "grin multicolored", + "hat": "king's crown", + "clothes": "prison jumpsuit", + "fur": "black", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7483, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 1", + "fur": "black", + "clothes": "smoking jacket", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7484, + "metadata_dict": { + "eyes": "coins", + "clothes": "work vest", + "fur": "pink", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7485, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "dumbfounded", + "eyes": "blue beams", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7486, + "metadata_dict": { + "fur": "dmt", + "eyes": "robot", + "mouth": "bored pizza", + "hat": "fisherman's hat", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7487, + "metadata_dict": { + "clothes": "bone tee", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7488, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "tan", + "mouth": "grin multicolored", + "eyes": "hypnotized", + "clothes": "work vest", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7489, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "space suit", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7490, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "clothes": "space suit", + "mouth": "dumbfounded", + "earring": "gold stud", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7491, + "metadata_dict": { + "eyes": "x eyes", + "hat": "fez", + "fur": "black", + "background": "gray", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7492, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "sleepy", + "clothes": "stunt jacket", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7493, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "striped tee", + "fur": "cream", + "hat": "seaman's hat", + "background": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7494, + "metadata_dict": { + "mouth": "grin multicolored", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "3d", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7495, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored dagger", + "hat": "irish boho", + "fur": "dmt", + "background": "aquamarine", + "earring": "cross", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7496, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "lumberjack shirt", + "fur": "black", + "background": "orange", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7497, + "metadata_dict": { + "eyes": "blindfold", + "hat": "baby's bonnet", + "background": "aquamarine", + "clothes": "smoking jacket", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7498, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven cigarette", + "clothes": "biker vest", + "eyes": "bloodshot", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7499, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "coins", + "mouth": "dumbfounded", + "clothes": "work vest", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7500, + "metadata_dict": { + "eyes": "coins", + "earring": "silver stud", + "clothes": "leather jacket", + "fur": "black", + "background": "purple", + "hat": "bunny ears", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7501, + "metadata_dict": { + "fur": "zombie", + "hat": "fez", + "clothes": "bayc t black", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7502, + "metadata_dict": { + "background": "blue", + "hat": "short mohawk", + "fur": "brown", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7503, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "fez", + "background": "orange", + "eyes": "bored", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7504, + "metadata_dict": { + "fur": "tan", + "clothes": "lumberjack shirt", + "hat": "fez", + "mouth": "phoneme vuh", + "earring": "gold stud", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7505, + "metadata_dict": { + "fur": "golden brown", + "mouth": "grin", + "clothes": "sailor shirt", + "background": "blue", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7506, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "red", + "eyes": "robot", + "background": "blue", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7507, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "golden brown", + "background": "orange", + "hat": "cowboy hat", + "clothes": "lab coat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7508, + "metadata_dict": { + "mouth": "bored dagger", + "background": "gray", + "eyes": "zombie", + "clothes": "tweed suit", + "fur": "cheetah", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7509, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "mouth": "bored", + "eyes": "crazy", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7510, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "trippy", + "eyes": "coins", + "earring": "silver stud", + "background": "orange", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7511, + "metadata_dict": { + "eyes": "scumbag", + "background": "yellow", + "earring": "gold stud", + "hat": "beanie", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7512, + "metadata_dict": { + "fur": "tan", + "hat": "girl's hair pink", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7513, + "metadata_dict": { + "fur": "dmt", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7514, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "blindfold", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7515, + "metadata_dict": { + "hat": "baby's bonnet", + "eyes": "sleepy", + "fur": "black", + "clothes": "smoking jacket", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7516, + "metadata_dict": { + "background": "new punk blue", + "fur": "brown", + "mouth": "bored unshaven pipe", + "earring": "gold stud", + "eyes": "bored", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7517, + "metadata_dict": { + "clothes": "black t", + "mouth": "phoneme vuh", + "fur": "black", + "eyes": "3d", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7518, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "fur": "dark brown", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "background": "yellow", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7519, + "metadata_dict": { + "hat": "horns", + "fur": "dmt", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7520, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "grin", + "background": "purple", + "fur": "white", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7521, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin multicolored", + "fur": "golden brown", + "clothes": "sailor shirt", + "hat": "army hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7522, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "black", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7523, + "metadata_dict": { + "mouth": "grin", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "gray", + "clothes": "navy striped tee", + "fur": "zombie", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7524, + "metadata_dict": { + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7525, + "metadata_dict": { + "clothes": "work vest", + "eyes": "bloodshot", + "fur": "cheetah", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7526, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "sleeveless t", + "fur": "red", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7527, + "metadata_dict": { + "background": "new punk blue", + "hat": "sea captain's hat", + "fur": "solid gold", + "mouth": "bored", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7528, + "metadata_dict": { + "fur": "dmt", + "eyes": "coins", + "background": "blue", + "hat": "short mohawk", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7529, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "fur": "dark brown", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7530, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "hat": "ww2 pilot helm", + "clothes": "guayabera", + "mouth": "phoneme wah", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7531, + "metadata_dict": { + "background": "yellow", + "mouth": "bored unshaven", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7532, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "striped tee", + "mouth": "grin", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7533, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "clothes": "guayabera", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7534, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "bored unshaven bubblegum", + "hat": "spinner hat", + "fur": "black", + "eyes": "3d", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7535, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "dumbfounded", + "clothes": "work vest", + "fur": "pink", + "hat": "army hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7536, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme oh", + "earring": "gold hoop", + "clothes": "toga", + "fur": "red", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7537, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "bandolier", + "fur": "brown", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7538, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "clothes": "bayc t black", + "hat": "vietnam era helmet", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7539, + "metadata_dict": { + "mouth": "bored kazoo", + "hat": "s&m hat", + "fur": "golden brown", + "earring": "diamond stud", + "clothes": "sailor shirt", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7540, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "earring": "silver stud", + "eyes": "bloodshot", + "hat": "army hat", + "mouth": "tongue out", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7541, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "scumbag", + "hat": "s&m hat", + "fur": "red", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7542, + "metadata_dict": { + "fur": "cream", + "clothes": "tweed suit", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "earring": "silver hoop", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7543, + "metadata_dict": { + "clothes": "bandolier", + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7544, + "metadata_dict": { + "eyes": "coins", + "background": "orange", + "fur": "brown", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7545, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "clothes": "work vest", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7546, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "eyes": "3d", + "earring": "silver hoop", + "fur": "cheetah", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7547, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver stud", + "fur": "black", + "clothes": "smoking jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7548, + "metadata_dict": { + "clothes": "lab coat", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7549, + "metadata_dict": { + "clothes": "bandolier", + "mouth": "jovial", + "eyes": "bored", + "hat": "girl's hair short", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7550, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "fur": "black", + "hat": "faux hawk", + "clothes": "guayabera", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7551, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "blindfold", + "clothes": "sleeveless t", + "background": "aquamarine", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7552, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "red", + "background": "blue", + "hat": "short mohawk", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7553, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "zombie", + "fur": "gray", + "clothes": "lab coat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7554, + "metadata_dict": { + "fur": "tan", + "mouth": "dumbfounded", + "hat": "bunny ears", + "eyes": "sleepy", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7555, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "work vest", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7556, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "fur": "gray", + "mouth": "small grin", + "eyes": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7557, + "metadata_dict": { + "hat": "irish boho", + "mouth": "dumbfounded", + "earring": "silver hoop", + "fur": "brown", + "clothes": "prom dress", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7558, + "metadata_dict": { + "fur": "tan", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7559, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "holographic", + "background": "gray", + "earring": "silver stud", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7560, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "coins", + "fur": "black", + "hat": "spinner hat", + "background": "orange", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7561, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "clothes": "sailor shirt", + "fur": "black", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7562, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "clothes": "cowboy shirt", + "hat": "vietnam era helmet", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7563, + "metadata_dict": { + "fur": "cream", + "mouth": "dumbfounded", + "clothes": "biker vest", + "background": "yellow", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7564, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "earring": "gold stud", + "clothes": "stunt jacket", + "fur": "dark brown", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7565, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "s&m hat", + "eyes": "robot", + "fur": "black", + "background": "blue", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7566, + "metadata_dict": { + "fur": "red", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "gray", + "clothes": "bone necklace", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7567, + "metadata_dict": { + "earring": "silver stud", + "fur": "red", + "background": "aquamarine", + "mouth": "phoneme vuh", + "eyes": "crazy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7568, + "metadata_dict": { + "fur": "zombie", + "background": "aquamarine", + "eyes": "crazy", + "mouth": "bored cigar", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7569, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "guayabera", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7570, + "metadata_dict": { + "fur": "golden brown", + "background": "orange", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7571, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "background": "aquamarine", + "clothes": "stunt jacket", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7572, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "sea captain's hat", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7573, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "wool turtleneck", + "fur": "pink", + "earring": "silver hoop", + "eyes": "bored", + "hat": "bayc hat red", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7574, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "caveman pelt", + "mouth": "bored pipe", + "hat": "spinner hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7575, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "prussian helmet", + "fur": "black", + "background": "orange", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7576, + "metadata_dict": { + "hat": "party hat 1", + "background": "blue", + "clothes": "hawaiian", + "mouth": "bored unshaven cigarette", + "fur": "robot", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7577, + "metadata_dict": { + "eyes": "robot", + "background": "orange", + "fur": "brown", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7578, + "metadata_dict": { + "clothes": "bayc t red", + "earring": "gold hoop", + "mouth": "rage", + "fur": "brown", + "background": "purple", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7579, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "brown", + "mouth": "jovial", + "clothes": "cowboy shirt", + "hat": "bayc flipped brim", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7580, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "sailor shirt", + "hat": "commie hat", + "earring": "silver hoop", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7581, + "metadata_dict": { + "hat": "trippy captain's hat", + "earring": "gold hoop", + "eyes": "3d", + "fur": "brown", + "background": "yellow", + "clothes": "admirals coat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7582, + "metadata_dict": { + "mouth": "bored dagger", + "clothes": "cowboy shirt", + "eyes": "3d", + "hat": "army hat", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7583, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "clothes": "leather punk jacket", + "mouth": "grin", + "eyes": "bloodshot", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7584, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "scumbag", + "fur": "red", + "mouth": "small grin", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7585, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "eyes": "bored", + "mouth": "tongue out", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7586, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "cowboy shirt", + "background": "orange", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7587, + "metadata_dict": { + "mouth": "jovial", + "fur": "red", + "background": "orange", + "hat": "bayc hat red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7588, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "robot", + "fur": "pink", + "clothes": "tanktop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7589, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "tan", + "background": "blue", + "clothes": "biker vest", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7590, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "hypnotized", + "earring": "silver stud", + "background": "orange", + "clothes": "bayc t black", + "fur": "cheetah", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7591, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "clothes": "biker vest", + "background": "orange", + "eyes": "blue beams", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7592, + "metadata_dict": { + "fur": "gray", + "hat": "stuntman helmet", + "eyes": "robot", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7593, + "metadata_dict": { + "background": "blue", + "eyes": "sleepy", + "mouth": "bored", + "fur": "white", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7594, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme ooo", + "hat": "prussian helmet", + "clothes": "prison jumpsuit", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7595, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "eyes": "3d", + "fur": "dark brown", + "background": "yellow", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7596, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "toga", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7597, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "scumbag", + "background": "yellow", + "hat": "beanie", + "clothes": "prom dress", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7598, + "metadata_dict": { + "eyes": "closed", + "hat": "bandana blue", + "clothes": "black t", + "background": "gray", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7599, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "black", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7600, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "fez", + "fur": "dark brown", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7601, + "metadata_dict": { + "mouth": "grin", + "fur": "red", + "clothes": "biker vest", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7602, + "metadata_dict": { + "hat": "baby's bonnet", + "background": "blue", + "clothes": "pimp coat", + "eyes": "sleepy", + "mouth": "bored cigar", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7603, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "hat": "army hat", + "clothes": "bone necklace", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7604, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "background": "blue", + "fur": "pink", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7605, + "metadata_dict": { + "eyes": "closed", + "earring": "gold stud", + "fur": "pink", + "clothes": "lab coat", + "background": "gray", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7606, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven bubblegum", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7607, + "metadata_dict": { + "eyes": "bloodshot", + "fur": "dark brown", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7608, + "metadata_dict": { + "mouth": "phoneme l", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "bone necklace", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7609, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "eyes": "zombie", + "hat": "king's crown", + "mouth": "dumbfounded", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7610, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "hat": "ww2 pilot helm", + "mouth": "tongue out", + "clothes": "hip hop", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7611, + "metadata_dict": { + "eyes": "heart", + "clothes": "work vest", + "background": "aquamarine", + "mouth": "bored bubblegum", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7612, + "metadata_dict": { + "eyes": "x eyes", + "background": "blue", + "fur": "gray", + "mouth": "bored unshaven pipe" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7613, + "metadata_dict": { + "eyes": "heart", + "background": "blue", + "clothes": "bayc t black", + "fur": "cheetah", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7614, + "metadata_dict": { + "eyes": "bored", + "background": "gray", + "mouth": "bored", + "clothes": "navy striped tee", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7615, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "3d", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7616, + "metadata_dict": { + "background": "new punk blue", + "fur": "trippy", + "clothes": "black t", + "mouth": "bored pipe", + "hat": "cowboy hat", + "earring": "cross", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7617, + "metadata_dict": { + "mouth": "grin", + "clothes": "sailor shirt", + "fur": "red", + "background": "blue", + "eyes": "bored", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7618, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "prom dress", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7619, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "background": "purple", + "hat": "bayc hat red", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7620, + "metadata_dict": { + "eyes": "heart", + "mouth": "discomfort", + "fur": "cream", + "background": "blue", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7621, + "metadata_dict": { + "fur": "dmt", + "eyes": "coins", + "mouth": "bored unshaven party horn", + "clothes": "sleeveless logo t", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7622, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7623, + "metadata_dict": { + "eyes": "scumbag", + "fur": "golden brown", + "background": "aquamarine", + "earring": "silver hoop", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7624, + "metadata_dict": { + "eyes": "blindfold", + "fur": "golden brown", + "earring": "diamond stud", + "hat": "stuntman helmet", + "clothes": "prison jumpsuit", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7625, + "metadata_dict": { + "hat": "baby's bonnet", + "mouth": "rage", + "fur": "dark brown", + "background": "yellow", + "clothes": "stunt jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7626, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "dumbfounded", + "eyes": "3d", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7627, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "lumberjack shirt", + "hat": "bowler", + "fur": "white", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7628, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "gray", + "clothes": "sailor shirt", + "hat": "vietnam era helmet", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7629, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "orange", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7630, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "striped tee", + "background": "orange", + "hat": "short mohawk", + "fur": "brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7631, + "metadata_dict": { + "eyes": "zombie", + "background": "aquamarine", + "fur": "brown", + "mouth": "bored", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7632, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "toga", + "fur": "brown", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7633, + "metadata_dict": { + "fur": "tan", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7634, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "background": "gray", + "clothes": "navy striped tee", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7635, + "metadata_dict": { + "fur": "tan", + "mouth": "grin diamond grill", + "background": "blue", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7636, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "fez", + "eyes": "robot", + "fur": "dark brown", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7637, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "clothes": "biker vest", + "mouth": "tongue out", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7638, + "metadata_dict": { + "earring": "silver stud", + "mouth": "dumbfounded", + "fur": "black", + "eyes": "bored", + "background": "yellow", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7639, + "metadata_dict": { + "eyes": "heart", + "hat": "bandana blue", + "fur": "dark brown", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7640, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven bubblegum", + "clothes": "biker vest", + "fur": "dark brown", + "earring": "silver hoop", + "background": "purple", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7641, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "black holes t", + "hat": "seaman's hat", + "eyes": "bloodshot", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7642, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "background": "aquamarine", + "fur": "black", + "clothes": "tuxedo tee", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7643, + "metadata_dict": { + "clothes": "black t", + "background": "blue", + "hat": "bayc flipped brim", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7644, + "metadata_dict": { + "eyes": "heart", + "mouth": "discomfort", + "clothes": "bandolier", + "fur": "golden brown", + "background": "blue", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7645, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "phoneme ooo", + "eyes": "3d", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7646, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "rage", + "background": "yellow", + "fur": "white", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7647, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "eyes": "blue beams", + "fur": "cheetah", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7648, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "fur": "gray", + "clothes": "work vest", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7649, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "holographic", + "hat": "sushi chef headband", + "mouth": "bored unshaven cigarette", + "fur": "brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7650, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "sleeveless t", + "fur": "pink", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7651, + "metadata_dict": { + "eyes": "holographic", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "bayc t black", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7652, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "hat": "bunny ears", + "eyes": "sleepy", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7653, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "background": "blue", + "hat": "cowboy hat", + "fur": "cheetah", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7654, + "metadata_dict": { + "eyes": "blindfold", + "hat": "sushi chef headband", + "fur": "golden brown", + "background": "orange", + "mouth": "bored unshaven cigar", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7655, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "coins", + "clothes": "sailor shirt", + "background": "blue", + "fur": "noise", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7656, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "background": "orange", + "eyes": "bloodshot", + "clothes": "sleeveless logo t", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7657, + "metadata_dict": { + "fur": "brown", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "bored bubblegum", + "hat": "short mohawk", + "clothes": "admirals coat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7658, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "fur": "gray", + "background": "aquamarine", + "clothes": "pimp coat", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7659, + "metadata_dict": { + "background": "yellow", + "clothes": "biker vest", + "hat": "bowler", + "mouth": "bored", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7660, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "hat": "prussian helmet", + "earring": "gold stud", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7661, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored bubblegum", + "hat": "girl's hair short", + "background": "yellow", + "fur": "white", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7662, + "metadata_dict": { + "fur": "tan", + "hat": "s&m hat", + "mouth": "phoneme wah", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7663, + "metadata_dict": { + "hat": "fez", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7664, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "black", + "hat": "short mohawk", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7665, + "metadata_dict": { + "hat": "police motorcycle helmet", + "fur": "gray", + "clothes": "toga", + "eyes": "3d", + "earring": "silver hoop", + "mouth": "tongue out", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7666, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7667, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "background": "purple", + "hat": "short mohawk", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7668, + "metadata_dict": { + "eyes": "coins", + "clothes": "bone necklace", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7669, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "phoneme oh", + "hat": "prussian helmet", + "background": "orange", + "eyes": "bloodshot", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7670, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "eyes": "coins", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7671, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "clothes": "tuxedo tee", + "hat": "girl's hair short", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7672, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "bored unshaven cigarette", + "earring": "silver stud", + "hat": "spinner hat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7673, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "heart", + "hat": "irish boho", + "clothes": "biker vest", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7674, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7675, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "eyes": "coins", + "hat": "short mohawk", + "clothes": "bone necklace", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7676, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "tie dye", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7677, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "black", + "background": "orange", + "eyes": "bored", + "hat": "bowler", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7678, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "hat": "king's crown", + "clothes": "sailor shirt", + "eyes": "robot", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7679, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7680, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7681, + "metadata_dict": { + "fur": "trippy", + "eyes": "hypnotized", + "hat": "king's crown", + "mouth": "dumbfounded", + "background": "aquamarine", + "clothes": "smoking jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7682, + "metadata_dict": { + "clothes": "bandolier", + "fur": "brown", + "mouth": "jovial", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7683, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "dmt", + "clothes": "rainbow suspenders", + "mouth": "bored unshaven bubblegum", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7684, + "metadata_dict": { + "mouth": "tongue out", + "fur": "gray", + "eyes": "robot", + "hat": "faux hawk", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7685, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "eyes": "zombie", + "background": "gray", + "fur": "white", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7686, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "leather jacket", + "eyes": "robot", + "background": "orange", + "mouth": "phoneme wah", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7687, + "metadata_dict": { + "earring": "silver stud", + "background": "purple", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7688, + "metadata_dict": { + "clothes": "black holes t", + "hat": "fez", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7689, + "metadata_dict": { + "fur": "tan", + "background": "blue", + "mouth": "bored cigarette", + "hat": "halo", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7690, + "metadata_dict": { + "fur": "golden brown", + "mouth": "small grin", + "background": "gray", + "hat": "bunny ears", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7691, + "metadata_dict": { + "background": "gray", + "clothes": "black t", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7692, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "caveman pelt", + "background": "gray", + "earring": "silver hoop", + "fur": "brown", + "eyes": "sleepy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7693, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "fur": "black", + "clothes": "biker vest", + "hat": "bayc hat red", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7694, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "s&m hat", + "eyes": "blindfold", + "earring": "gold hoop", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7695, + "metadata_dict": { + "clothes": "tweed suit", + "fur": "black", + "hat": "short mohawk", + "mouth": "small grin", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7696, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "red", + "background": "yellow", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7697, + "metadata_dict": { + "mouth": "grin", + "eyes": "sunglasses", + "background": "yellow", + "clothes": "work vest", + "hat": "vietnam era helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7698, + "metadata_dict": { + "eyes": "heart", + "clothes": "leather punk jacket", + "hat": "king's crown", + "earring": "silver stud", + "background": "orange", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7699, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "pink", + "clothes": "prom dress", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7700, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "clothes": "sleeveless t", + "background": "orange", + "mouth": "bored unshaven cigarette", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7701, + "metadata_dict": { + "mouth": "grin", + "background": "gray", + "clothes": "bone necklace", + "hat": "bunny ears", + "eyes": "crazy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7702, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "coins", + "fur": "red", + "mouth": "small grin", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7703, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "earring": "silver stud", + "fur": "pink", + "background": "orange", + "clothes": "bayc t black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7704, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "dmt", + "hat": "ww2 pilot helm", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7705, + "metadata_dict": { + "background": "blue", + "mouth": "small grin", + "eyes": "bored", + "hat": "commie hat", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7706, + "metadata_dict": { + "eyes": "x eyes", + "background": "orange", + "fur": "dark brown", + "mouth": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7707, + "metadata_dict": { + "mouth": "bored party horn", + "hat": "spinner hat", + "fur": "pink", + "background": "orange", + "clothes": "bayc t black", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7708, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7709, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "grin", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7710, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "earring": "silver hoop", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7711, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "earring": "silver hoop", + "fur": "cheetah", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7712, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored party horn", + "background": "orange", + "hat": "ww2 pilot helm", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7713, + "metadata_dict": { + "hat": "fez", + "clothes": "guayabera", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7714, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "clothes": "hawaiian", + "hat": "fisherman's hat", + "mouth": "bored cigar", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7715, + "metadata_dict": { + "clothes": "striped tee", + "hat": "seaman's hat", + "mouth": "rage", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "robot", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7716, + "metadata_dict": { + "eyes": "closed", + "hat": "party hat 1", + "mouth": "bored bubblegum", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7717, + "metadata_dict": { + "fur": "tan", + "clothes": "bandolier", + "eyes": "coins", + "earring": "gold hoop", + "background": "aquamarine", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7718, + "metadata_dict": { + "fur": "tan", + "mouth": "bored kazoo", + "earring": "gold hoop", + "background": "blue", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7719, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "orange", + "fur": "dark brown", + "mouth": "bored cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7720, + "metadata_dict": { + "mouth": "jovial", + "fur": "pink", + "background": "orange", + "eyes": "crazy", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7721, + "metadata_dict": { + "hat": "fez", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7722, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven bubblegum", + "hat": "spinner hat", + "earring": "gold stud", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7723, + "metadata_dict": { + "mouth": "phoneme wah", + "earring": "silver stud", + "hat": "vietnam era helmet", + "eyes": "bored", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7724, + "metadata_dict": { + "eyes": "cyborg", + "hat": "prussian helmet", + "mouth": "bored unshaven kazoo", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7725, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "jovial", + "eyes": "robot", + "hat": "bayc hat red", + "earring": "cross", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7726, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "mouth": "tongue out", + "hat": "commie hat", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7727, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin multicolored", + "hat": "fez", + "earring": "silver stud", + "fur": "pink", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7728, + "metadata_dict": { + "eyes": "sad", + "fur": "dark brown", + "mouth": "bored unshaven dagger", + "hat": "police motorcycle helmet", + "clothes": "bone tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7729, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "hat": "spinner hat", + "eyes": "bored", + "background": "yellow", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7730, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "golden brown", + "eyes": "coins", + "earring": "silver stud", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7731, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "eyes": "zombie", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7732, + "metadata_dict": { + "eyes": "heart", + "hat": "s&m hat", + "clothes": "sleeveless t", + "fur": "golden brown", + "background": "orange", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7733, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "hat": "fisherman's hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7734, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "background": "aquamarine", + "hat": "bayc flipped brim", + "eyes": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7735, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "hat": "party hat 1", + "eyes": "bored", + "clothes": "toga", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7736, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "striped tee", + "fur": "cream", + "background": "aquamarine", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7737, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "stuntman helmet", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7738, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "robot", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7739, + "metadata_dict": { + "background": "purple", + "hat": "short mohawk", + "eyes": "bored", + "fur": "brown", + "clothes": "guayabera", + "earring": "cross", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7740, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "background": "orange", + "eyes": "blue beams" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7741, + "metadata_dict": { + "clothes": "space suit", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7742, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "death bot", + "hat": "bowler", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7743, + "metadata_dict": { + "clothes": "striped tee", + "hat": "fez", + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7744, + "metadata_dict": { + "hat": "bayc flipped brim", + "mouth": "small grin", + "eyes": "bored", + "background": "purple", + "fur": "white", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7745, + "metadata_dict": { + "background": "new punk blue", + "hat": "baby's bonnet", + "fur": "black", + "clothes": "biker vest", + "earring": "silver hoop", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7746, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "irish boho", + "mouth": "bored unshaven bubblegum", + "fur": "brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7747, + "metadata_dict": { + "clothes": "black holes t", + "fur": "brown", + "earring": "silver stud", + "hat": "cowboy hat", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7748, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "black", + "background": "yellow", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7749, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "tweed suit", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7750, + "metadata_dict": { + "hat": "laurel wreath", + "clothes": "work vest", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7751, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "eyes": "coins", + "clothes": "cowboy shirt", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7752, + "metadata_dict": { + "fur": "gray", + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "clothes": "bayc t black", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7753, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "mouth": "bored unshaven pipe", + "background": "yellow", + "hat": "police motorcycle helmet", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7754, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "hypnotized", + "fur": "gray", + "hat": "short mohawk", + "mouth": "tongue out", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7755, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "small grin", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7756, + "metadata_dict": { + "eyes": "closed", + "hat": "party hat 1", + "mouth": "bored unshaven pipe", + "earring": "gold stud", + "fur": "pink", + "clothes": "sleeveless logo t", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7757, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven cigarette", + "earring": "silver stud", + "fur": "pink", + "clothes": "sleeveless logo t", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7758, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "clothes": "prison jumpsuit", + "background": "blue", + "earring": "silver hoop", + "hat": "girl's hair short", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7759, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "fisherman's hat", + "fur": "brown", + "clothes": "caveman pelt", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7760, + "metadata_dict": { + "hat": "king's crown", + "clothes": "leather jacket", + "fur": "dark brown", + "mouth": "bored cigarette", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7761, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "rage", + "background": "orange", + "hat": "cowboy hat", + "fur": "cheetah", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7762, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "red", + "clothes": "bayc t black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7763, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "mouth": "dumbfounded", + "fur": "dark brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7764, + "metadata_dict": { + "mouth": "bored dagger", + "fur": "golden brown", + "eyes": "bored", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7765, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "horns", + "fur": "gray", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7766, + "metadata_dict": { + "eyes": "heart", + "mouth": "discomfort", + "clothes": "rainbow suspenders", + "background": "orange", + "fur": "noise", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7767, + "metadata_dict": { + "hat": "girl's hair short", + "clothes": "black t", + "mouth": "dumbfounded", + "background": "blue", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7768, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "hat": "party hat 1", + "eyes": "robot", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7769, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "fur": "golden brown", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7770, + "metadata_dict": { + "fur": "cream", + "background": "aquamarine", + "clothes": "tie dye", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7771, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "golden brown", + "hat": "ww2 pilot helm", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7772, + "metadata_dict": { + "fur": "robot", + "mouth": "bored unshaven", + "hat": "fez", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7773, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "earring": "silver stud", + "eyes": "bloodshot", + "clothes": "tanktop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7774, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "fur": "red", + "eyes": "bloodshot", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7775, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "s&m hat", + "clothes": "prison jumpsuit", + "eyes": "bored", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7776, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "earring": "silver hoop", + "eyes": "bored", + "fur": "brown", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7777, + "metadata_dict": { + "fur": "tan", + "background": "blue", + "clothes": "bayc t black", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7778, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "earring": "diamond stud", + "clothes": "sailor shirt", + "hat": "commie hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7779, + "metadata_dict": { + "fur": "golden brown", + "eyes": "closed", + "background": "gray", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7780, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "earring": "gold stud", + "fur": "brown", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7781, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "clothes": "biker vest", + "eyes": "bored", + "hat": "girl's hair short", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7782, + "metadata_dict": { + "clothes": "work vest", + "background": "blue", + "fur": "brown", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7783, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "black suit", + "fur": "black", + "background": "orange", + "hat": "army hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7784, + "metadata_dict": { + "fur": "red", + "eyes": "3d", + "background": "orange", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7785, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "background": "blue", + "fur": "dark brown", + "hat": "faux hawk", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7786, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "hypnotized", + "fur": "brown", + "mouth": "bored party horn", + "clothes": "tuxedo tee", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7787, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "clothes": "space suit", + "earring": "gold hoop", + "hat": "army hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7788, + "metadata_dict": { + "background": "blue", + "mouth": "small grin", + "fur": "cheetah", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7789, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "golden brown", + "background": "gray", + "mouth": "phoneme wah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7790, + "metadata_dict": { + "eyes": "closed", + "hat": "fez", + "mouth": "dumbfounded", + "fur": "brown", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7791, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sailor shirt", + "background": "blue", + "mouth": "bored", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7792, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "smoking jacket", + "eyes": "bored", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7793, + "metadata_dict": { + "clothes": "striped tee", + "earring": "silver stud", + "fur": "black", + "eyes": "3d", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7794, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "black", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored cigarette", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7795, + "metadata_dict": { + "eyes": "closed", + "earring": "diamond stud", + "fur": "brown", + "clothes": "leather jacket", + "background": "blue", + "mouth": "bored unshaven cigarette", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7796, + "metadata_dict": { + "clothes": "striped tee", + "background": "aquamarine", + "eyes": "blue beams", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7797, + "metadata_dict": { + "fur": "tan", + "background": "orange", + "mouth": "bored", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7798, + "metadata_dict": { + "fur": "tan", + "clothes": "bone tee", + "background": "orange", + "mouth": "bored", + "hat": "safari", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7799, + "metadata_dict": { + "hat": "bandana blue", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7800, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "black holes t", + "fur": "cheetah", + "earring": "diamond stud", + "eyes": "bored", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7801, + "metadata_dict": { + "background": "gray", + "eyes": "robot", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7802, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "zombie", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "fur": "black", + "hat": "faux hawk", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7803, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "earring": "gold hoop", + "background": "orange", + "fur": "dark brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7804, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7805, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "clothes": "bone necklace", + "mouth": "bored", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7806, + "metadata_dict": { + "mouth": "tongue out", + "clothes": "guayabera", + "fur": "dark brown", + "eyes": "bored", + "hat": "ww2 pilot helm", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7807, + "metadata_dict": { + "eyes": "heart", + "background": "orange", + "fur": "noise", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7808, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "s&m hat", + "fur": "golden brown", + "background": "blue", + "clothes": "hip hop", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7809, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "striped tee", + "earring": "silver stud", + "fur": "red", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7810, + "metadata_dict": { + "fur": "cream", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7811, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "background": "orange", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7812, + "metadata_dict": { + "eyes": "closed", + "clothes": "lumberjack shirt", + "fur": "black", + "background": "gray", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7813, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "holographic", + "hat": "spinner hat", + "fur": "black", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7814, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "red", + "background": "aquamarine", + "hat": "spinner hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7815, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "striped tee", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7816, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "mouth": "phoneme ooo", + "hat": "stuntman helmet", + "clothes": "sleeveless logo t", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7817, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "hat": "bandana blue", + "fur": "black", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7818, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "clothes": "prison jumpsuit", + "eyes": "bloodshot", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7819, + "metadata_dict": { + "fur": "tan", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7820, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "hat": "party hat 1", + "fur": "red", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7821, + "metadata_dict": { + "earring": "gold hoop", + "fur": "black", + "hat": "spinner hat", + "clothes": "bayc t black", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7822, + "metadata_dict": { + "clothes": "leather punk jacket", + "hat": "fez", + "earring": "gold stud", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7823, + "metadata_dict": { + "hat": "irish boho", + "fur": "pink", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7824, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "earring": "gold stud", + "mouth": "small grin", + "eyes": "bored", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7825, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "hat": "short mohawk", + "fur": "brown", + "eyes": "sleepy", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7826, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "eyes": "coins", + "hat": "fez", + "fur": "cheetah", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7827, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "work vest", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "fisherman's hat", + "mouth": "phoneme wah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7828, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "black", + "background": "yellow", + "clothes": "navy striped tee", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7829, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "background": "orange", + "hat": "fisherman's hat", + "fur": "brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7830, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold stud", + "eyes": "bored", + "fur": "brown", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7831, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "clothes": "tuxedo tee", + "hat": "safari", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7832, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "background": "gray", + "eyes": "angry", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7833, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme oh", + "hat": "seaman's hat", + "clothes": "rainbow suspenders", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7834, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7835, + "metadata_dict": { + "eyes": "holographic", + "fur": "golden brown", + "clothes": "sailor shirt", + "hat": "fisherman's hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7836, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "sleepy", + "fur": "white", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7837, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "work vest", + "background": "yellow", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7838, + "metadata_dict": { + "background": "orange", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "brown", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7839, + "metadata_dict": { + "mouth": "bored party horn", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7840, + "metadata_dict": { + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored pizza", + "earring": "silver hoop", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7841, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "cream", + "clothes": "lumberjack shirt", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7842, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "clothes": "black t", + "hat": "fez", + "background": "orange", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7843, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7844, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "sushi chef headband", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7845, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "eyes": "zombie", + "earring": "gold hoop", + "clothes": "tuxedo tee", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7846, + "metadata_dict": { + "eyes": "closed", + "clothes": "leather punk jacket", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "pink", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7847, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "eyes": "bloodshot", + "mouth": "bored", + "fur": "zombie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7848, + "metadata_dict": { + "eyes": "closed", + "clothes": "black t", + "hat": "cowboy hat", + "background": "yellow", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7849, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "bored", + "hat": "bowler", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7850, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "earring": "silver stud", + "clothes": "work vest", + "background": "aquamarine", + "fur": "black", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7851, + "metadata_dict": { + "eyes": "coins", + "background": "blue", + "fur": "black", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7852, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "earring": "silver stud", + "fur": "black", + "mouth": "small grin", + "hat": "bowler", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7853, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "black", + "eyes": "bored", + "mouth": "tongue out", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7854, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "eyes": "bored", + "hat": "army hat", + "fur": "cheetah", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7855, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "leather jacket", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7856, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "clothes": "sleeveless t", + "background": "gray", + "hat": "prussian helmet", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7857, + "metadata_dict": { + "clothes": "bandolier", + "fur": "dark brown", + "mouth": "small grin", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7858, + "metadata_dict": { + "eyes": "zombie", + "fur": "black", + "clothes": "lab coat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7859, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "fur": "dmt", + "earring": "silver hoop", + "background": "gray", + "eyes": "crazy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7860, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "grin", + "hat": "prussian helmet", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7861, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "sleeveless logo t", + "fur": "cheetah", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7862, + "metadata_dict": { + "background": "aquamarine", + "fur": "noise", + "hat": "cowboy hat", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7863, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "eyes": "blue beams", + "clothes": "pimp coat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7864, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "fur": "black", + "mouth": "bored unshaven kazoo", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7865, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "seaman's hat", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7866, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "gold hoop", + "fur": "red", + "clothes": "tie dye", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7867, + "metadata_dict": { + "eyes": "coins", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7868, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "spinner hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7869, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "space suit", + "eyes": "coins", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7870, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "sleeveless logo t", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7871, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "background": "yellow", + "earring": "gold stud", + "clothes": "lab coat", + "hat": "bowler", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7872, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "mouth": "jovial", + "hat": "spinner hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7873, + "metadata_dict": { + "hat": "bandana blue", + "eyes": "coins", + "earring": "silver stud", + "mouth": "jovial", + "fur": "pink", + "clothes": "bayc t black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7874, + "metadata_dict": { + "hat": "horns", + "eyes": "hypnotized", + "mouth": "grin", + "fur": "golden brown", + "clothes": "leather jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7875, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "hat": "irish boho", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7876, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "clothes": "leather jacket", + "fur": "black", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7877, + "metadata_dict": { + "fur": "golden brown", + "hat": "king's crown", + "mouth": "bored pipe", + "eyes": "robot", + "clothes": "smoking jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7878, + "metadata_dict": { + "eyes": "closed", + "clothes": "toga", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "mouth": "tongue out", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7879, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "prison jumpsuit", + "background": "blue", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7880, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "bored bubblegum", + "earring": "gold stud", + "eyes": "3d", + "background": "orange", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7881, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7882, + "metadata_dict": { + "eyes": "zombie", + "earring": "gold stud", + "background": "gray", + "hat": "bowler", + "clothes": "admirals coat", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7883, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "background": "orange", + "hat": "girl's hair short", + "fur": "cheetah", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7884, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "hat": "girl's hair pink", + "mouth": "bored bubblegum", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7885, + "metadata_dict": { + "clothes": "bayc t red", + "background": "aquamarine", + "mouth": "tongue out", + "fur": "death bot", + "hat": "commie hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7886, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "grin", + "earring": "gold stud", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7887, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "noise", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7888, + "metadata_dict": { + "earring": "gold hoop", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7889, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "black t", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7890, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "black", + "hat": "army hat", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7891, + "metadata_dict": { + "hat": "trippy captain's hat", + "background": "blue", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7892, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "fur": "black", + "eyes": "bored", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7893, + "metadata_dict": { + "eyes": "coins", + "mouth": "jovial", + "fur": "red", + "background": "blue", + "hat": "bowler", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7894, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "laurel wreath", + "fur": "golden brown", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7895, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "fur": "pink", + "eyes": "bored", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7896, + "metadata_dict": { + "clothes": "bandolier", + "hat": "seaman's hat", + "mouth": "rage", + "background": "aquamarine", + "fur": "pink", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7897, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "dumbfounded", + "hat": "beanie", + "fur": "death bot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7898, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "clothes": "biker vest", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7899, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "fur": "dark brown", + "eyes": "bored", + "hat": "girl's hair short", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7900, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "aquamarine", + "hat": "fisherman's hat", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7901, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "admirals coat", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7902, + "metadata_dict": { + "fur": "cream", + "earring": "gold hoop", + "eyes": "bloodshot", + "hat": "bayc hat red", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7903, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "bored party horn", + "eyes": "sleepy", + "earring": "gold stud", + "fur": "black", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7904, + "metadata_dict": { + "eyes": "blindfold", + "fur": "pink", + "background": "orange", + "hat": "cowboy hat", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7905, + "metadata_dict": { + "clothes": "work vest", + "mouth": "jovial", + "eyes": "bloodshot", + "background": "gray", + "fur": "robot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7906, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "girl's hair pink", + "earring": "gold stud", + "eyes": "bored", + "clothes": "lab coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7907, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "earring": "gold hoop", + "mouth": "bored unshaven pipe", + "fur": "dark brown", + "hat": "short mohawk", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7908, + "metadata_dict": { + "fur": "pink", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7909, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "grin", + "fur": "red", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7910, + "metadata_dict": { + "background": "gray", + "fur": "black", + "mouth": "grin", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7911, + "metadata_dict": { + "background": "gray", + "eyes": "coins", + "mouth": "rage", + "clothes": "tuxedo tee", + "fur": "cheetah", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7912, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "holographic", + "fur": "tan", + "hat": "sushi chef headband", + "clothes": "biker vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7913, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored bubblegum", + "fur": "noise", + "eyes": "bored", + "hat": "cowboy hat", + "background": "gray", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7914, + "metadata_dict": { + "fur": "pink", + "eyes": "3d", + "hat": "army hat", + "clothes": "bone necklace", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7915, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "background": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7916, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme vuh", + "background": "purple", + "hat": "bayc flipped brim", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7917, + "metadata_dict": { + "eyes": "holographic", + "fur": "cream", + "hat": "fisherman's hat", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7918, + "metadata_dict": { + "eyes": "holographic", + "mouth": "rage", + "fur": "black", + "background": "orange", + "hat": "short mohawk", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7919, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "holographic", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7920, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cheetah", + "mouth": "bored unshaven cigarette", + "eyes": "3d", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7921, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "holographic", + "clothes": "rainbow suspenders", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7922, + "metadata_dict": { + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "prom dress", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7923, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "cream", + "eyes": "robot", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7924, + "metadata_dict": { + "clothes": "black t", + "background": "yellow", + "earring": "gold stud", + "eyes": "bloodshot", + "hat": "bowler", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7925, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "gray", + "hat": "short mohawk", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7926, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "girl's hair pink", + "clothes": "bayc t black", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7927, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "zombie", + "fur": "noise", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7928, + "metadata_dict": { + "hat": "baby's bonnet", + "clothes": "sailor shirt", + "fur": "black", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7929, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "seaman's hat", + "eyes": "3d", + "fur": "pink", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7930, + "metadata_dict": { + "clothes": "black t", + "eyes": "3d", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7931, + "metadata_dict": { + "mouth": "grin diamond grill", + "earring": "gold stud", + "fur": "black", + "eyes": "bored", + "hat": "vietnam era helmet", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7932, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7933, + "metadata_dict": { + "hat": "party hat 1", + "background": "aquamarine", + "clothes": "hawaiian", + "eyes": "bloodshot", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7934, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "scumbag", + "mouth": "jovial", + "fur": "black", + "hat": "faux hawk", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7935, + "metadata_dict": { + "fur": "tan", + "earring": "diamond stud", + "background": "blue", + "hat": "commie hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7936, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "sleeveless t", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7937, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "lumberjack shirt", + "background": "gray", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7938, + "metadata_dict": { + "fur": "cream", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7939, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 1", + "mouth": "bored pizza", + "fur": "cheetah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7940, + "metadata_dict": { + "earring": "diamond stud", + "eyes": "bored", + "fur": "solid gold", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7941, + "metadata_dict": { + "mouth": "grin", + "clothes": "blue dress", + "background": "blue", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7942, + "metadata_dict": { + "hat": "fez", + "fur": "black", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7943, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "blue", + "fur": "noise", + "hat": "cowboy hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7944, + "metadata_dict": { + "hat": "horns", + "fur": "golden brown", + "eyes": "bloodshot", + "clothes": "bayc t black", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7945, + "metadata_dict": { + "background": "new punk blue", + "hat": "baby's bonnet", + "eyes": "robot", + "mouth": "small grin", + "fur": "white", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7946, + "metadata_dict": { + "clothes": "black holes t", + "fur": "golden brown", + "mouth": "grin", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7947, + "metadata_dict": { + "clothes": "blue dress", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7948, + "metadata_dict": { + "clothes": "black holes t", + "background": "orange", + "eyes": "bloodshot", + "mouth": "bored unshaven kazoo", + "earring": "silver hoop", + "hat": "faux hawk", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7949, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "red", + "background": "blue", + "earring": "silver hoop", + "clothes": "lab coat", + "hat": "army hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7950, + "metadata_dict": { + "eyes": "coins", + "fur": "black", + "clothes": "sleeveless logo t", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7951, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "background": "blue", + "clothes": "leather jacket", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7952, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7953, + "metadata_dict": { + "earring": "silver stud", + "eyes": "3d", + "clothes": "bayc t black", + "background": "purple", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7954, + "metadata_dict": { + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7955, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "clothes": "rainbow suspenders", + "hat": "cowboy hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7956, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7957, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "hat": "army hat", + "fur": "brown", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7958, + "metadata_dict": { + "eyes": "closed", + "clothes": "black holes t", + "fur": "golden brown", + "background": "yellow", + "hat": "bunny ears", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7959, + "metadata_dict": { + "clothes": "black holes t", + "fur": "gray", + "hat": "fez", + "background": "orange", + "mouth": "bored unshaven cigarette", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7960, + "metadata_dict": { + "eyes": "closed", + "fur": "black", + "mouth": "bored bubblegum", + "hat": "short mohawk", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7961, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "background": "yellow", + "hat": "beanie", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7962, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "tuxedo tee", + "fur": "brown", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7963, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "background": "orange", + "hat": "army hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7964, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "fur": "black", + "mouth": "bored unshaven cigarette", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7965, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "red", + "background": "blue", + "clothes": "smoking jacket", + "hat": "short mohawk", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7966, + "metadata_dict": { + "mouth": "bored cigarette", + "earring": "silver hoop", + "clothes": "pimp coat", + "background": "purple", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7967, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "fur": "golden brown", + "clothes": "guayabera", + "hat": "girl's hair short", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7968, + "metadata_dict": { + "hat": "halo", + "clothes": "space suit", + "fur": "golden brown", + "background": "gray", + "eyes": "angry", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7969, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black t", + "fur": "black", + "eyes": "3d", + "earring": "silver hoop", + "background": "yellow", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7970, + "metadata_dict": { + "mouth": "discomfort", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7971, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "gray", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7972, + "metadata_dict": { + "hat": "trippy captain's hat", + "background": "new punk blue", + "clothes": "striped tee", + "eyes": "blindfold", + "mouth": "phoneme vuh", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7973, + "metadata_dict": { + "mouth": "bored unshaven bubblegum", + "background": "aquamarine", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "commie hat", + "clothes": "hip hop", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7974, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "black suit", + "eyes": "robot", + "hat": "fisherman's hat", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7975, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "kings robe", + "background": "blue", + "fur": "dark brown", + "hat": "cowboy hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7976, + "metadata_dict": { + "fur": "dmt", + "background": "blue", + "eyes": "bored", + "hat": "girl's hair short", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7977, + "metadata_dict": { + "fur": "golden brown", + "mouth": "jovial", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7978, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "eyes": "3d", + "hat": "spinner hat", + "background": "gray", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7979, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "cowboy shirt", + "earring": "gold stud", + "eyes": "3d", + "hat": "cowboy hat", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7980, + "metadata_dict": { + "mouth": "bored pipe", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "crazy", + "clothes": "caveman pelt", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7981, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "seaman's hat", + "fur": "brown", + "earring": "gold stud", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7982, + "metadata_dict": { + "clothes": "kings robe", + "earring": "gold hoop", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7983, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "fur": "dmt", + "clothes": "tuxedo tee", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7984, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "clothes": "sailor shirt", + "mouth": "bored unshaven pipe", + "fur": "cheetah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7985, + "metadata_dict": { + "eyes": "x eyes", + "background": "gray", + "mouth": "grin multicolored", + "earring": "silver stud", + "fur": "dark brown", + "clothes": "pimp coat", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7986, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "fur": "red", + "background": "blue", + "hat": "girl's hair short", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7987, + "metadata_dict": { + "clothes": "prison jumpsuit", + "mouth": "jovial", + "background": "gray", + "hat": "beanie", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7988, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "hat": "short mohawk", + "background": "yellow", + "eyes": "angry", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7989, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bloodshot", + "clothes": "bayc t black", + "hat": "cowboy hat", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7990, + "metadata_dict": { + "eyes": "zombie", + "clothes": "tweed suit", + "background": "yellow", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7991, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "robot", + "clothes": "leather jacket", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7992, + "metadata_dict": { + "clothes": "bandolier", + "earring": "silver stud", + "fur": "black", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7993, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme oh", + "background": "aquamarine", + "clothes": "work vest", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7994, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "eyes": "zombie", + "background": "blue", + "clothes": "guayabera", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7995, + "metadata_dict": { + "hat": "stuntman helmet", + "fur": "black", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7996, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "eyepatch", + "clothes": "rainbow suspenders", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7997, + "metadata_dict": { + "background": "new punk blue", + "hat": "sushi chef headband", + "fur": "dmt", + "eyes": "bored", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7998, + "metadata_dict": { + "mouth": "jovial", + "clothes": "biker vest", + "fur": "dark brown", + "earring": "silver hoop", + "background": "yellow", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7999, + "metadata_dict": { + "hat": "laurel wreath", + "eyes": "bored", + "background": "gray", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8000, + "metadata_dict": { + "hat": "irish boho", + "clothes": "space suit", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "eyes": "bored", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8001, + "metadata_dict": { + "eyes": "closed", + "clothes": "tweed suit", + "earring": "silver stud", + "background": "purple", + "fur": "death bot", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8002, + "metadata_dict": { + "fur": "tan", + "clothes": "leather jacket", + "eyes": "3d", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8003, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "s&m hat", + "clothes": "leather jacket", + "eyes": "3d", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8004, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "earring": "silver stud", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8005, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "coins", + "fur": "gray", + "mouth": "grin diamond grill", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "leather jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8006, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow", + "clothes": "guayabera", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8007, + "metadata_dict": { + "mouth": "rage", + "fur": "red", + "eyes": "sleepy", + "hat": "bowler", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8008, + "metadata_dict": { + "eyes": "coins", + "clothes": "prom dress", + "mouth": "rage", + "earring": "silver stud", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8009, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "golden brown", + "clothes": "black t", + "background": "aquamarine", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8010, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "silver stud", + "fur": "red", + "background": "blue", + "hat": "beanie", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8011, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "leather jacket", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8012, + "metadata_dict": { + "mouth": "grin", + "eyes": "3d", + "background": "orange", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8013, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "jovial", + "background": "orange", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8014, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "clothes": "space suit", + "fur": "gray", + "background": "aquamarine", + "earring": "gold stud" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8015, + "metadata_dict": { + "background": "blue", + "eyes": "bloodshot", + "mouth": "bored unshaven kazoo", + "hat": "bowler", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8016, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "tan", + "clothes": "leather jacket", + "mouth": "bored pizza", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8017, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "clothes": "bayc t black", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8018, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "zombie", + "mouth": "jovial", + "background": "gray", + "hat": "beanie", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8019, + "metadata_dict": { + "hat": "irish boho", + "background": "orange", + "clothes": "bayc t black", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8020, + "metadata_dict": { + "eyes": "blindfold", + "background": "gray", + "fur": "brown", + "clothes": "tanktop", + "hat": "spinner hat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8021, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "bored cigarette", + "fur": "tan", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8022, + "metadata_dict": { + "clothes": "navy striped tee", + "earring": "silver stud", + "background": "blue", + "eyes": "angry", + "mouth": "bored cigar", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8023, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "trippy", + "clothes": "black holes t", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8024, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "heart", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8025, + "metadata_dict": { + "background": "blue", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8026, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "sleeveless t", + "fur": "gray", + "earring": "silver stud", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8027, + "metadata_dict": { + "background": "new punk blue", + "fur": "blue", + "mouth": "rage", + "clothes": "admirals coat", + "hat": "beanie", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8028, + "metadata_dict": { + "fur": "brown", + "clothes": "prison jumpsuit", + "mouth": "dumbfounded", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8029, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "fur": "black", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8030, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored party horn", + "clothes": "prison jumpsuit", + "eyes": "bored", + "earring": "silver hoop", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8031, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "earring": "gold stud", + "fur": "dark brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8032, + "metadata_dict": { + "fur": "gray", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8033, + "metadata_dict": { + "clothes": "lumberjack shirt", + "background": "aquamarine", + "hat": "cowboy hat", + "mouth": "bored", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8034, + "metadata_dict": { + "eyes": "heart", + "clothes": "black holes t", + "mouth": "rage", + "fur": "red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8035, + "metadata_dict": { + "clothes": "vietnam jacket", + "mouth": "bored unshaven cigarette", + "background": "purple", + "eyes": "angry", + "fur": "zombie", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8036, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "eyepatch", + "background": "aquamarine", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8037, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "seaman's hat", + "clothes": "tweed suit", + "fur": "pink", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8038, + "metadata_dict": { + "background": "orange", + "mouth": "bored", + "fur": "white", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8039, + "metadata_dict": { + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored", + "hat": "safari", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8040, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "fur": "pink", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8041, + "metadata_dict": { + "clothes": "bandolier", + "background": "blue", + "earring": "silver hoop", + "hat": "girl's hair short", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8042, + "metadata_dict": { + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "hat": "bowler", + "background": "purple", + "fur": "white", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8043, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "s&m hat", + "eyes": "zombie", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8044, + "metadata_dict": { + "clothes": "striped tee", + "fur": "black", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8045, + "metadata_dict": { + "fur": "brown", + "clothes": "black t", + "earring": "gold stud", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8046, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "hat": "horns", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8047, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "clothes": "smoking jacket", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8048, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "tan", + "earring": "silver stud", + "hat": "vietnam era helmet", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8049, + "metadata_dict": { + "fur": "tan", + "clothes": "leather jacket", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8050, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "sleepy", + "background": "purple", + "fur": "death bot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8051, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "mouth": "phoneme ooo", + "fur": "brown", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8052, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8053, + "metadata_dict": { + "eyes": "scumbag", + "earring": "diamond stud", + "mouth": "rage", + "fur": "red", + "background": "orange", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8054, + "metadata_dict": { + "fur": "tan", + "clothes": "bandolier", + "hat": "baby's bonnet", + "eyes": "bloodshot", + "mouth": "small grin", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8055, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "clothes": "sleeveless logo t", + "hat": "beanie", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8056, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "fur": "noise", + "hat": "bunny ears", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8057, + "metadata_dict": { + "fur": "black", + "clothes": "tie dye", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8058, + "metadata_dict": { + "eyes": "zombie", + "earring": "diamond stud", + "mouth": "bored pipe", + "fur": "black", + "background": "blue", + "hat": "fisherman's hat", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8059, + "metadata_dict": { + "mouth": "dumbfounded", + "hat": "fisherman's hat", + "fur": "cheetah", + "clothes": "navy striped tee", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8060, + "metadata_dict": { + "clothes": "black holes t", + "hat": "seaman's hat", + "earring": "gold hoop", + "fur": "brown", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8061, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "horns", + "mouth": "jovial", + "fur": "dark brown", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8062, + "metadata_dict": { + "eyes": "x eyes", + "hat": "horns", + "fur": "golden brown", + "earring": "gold stud", + "mouth": "bored unshaven kazoo", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8063, + "metadata_dict": { + "hat": "irish boho", + "mouth": "jovial", + "background": "yellow", + "eyes": "crazy", + "fur": "white", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8064, + "metadata_dict": { + "hat": "bowler", + "mouth": "bored", + "eyes": "angry", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8065, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "blue", + "eyes": "robot", + "clothes": "smoking jacket", + "fur": "dark brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8066, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "fur": "dmt", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8067, + "metadata_dict": { + "fur": "tan", + "clothes": "black t", + "eyes": "robot", + "mouth": "bored pipe", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8068, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "hat": "cowboy hat", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8069, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8070, + "metadata_dict": { + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "small grin", + "eyes": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8071, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "aquamarine", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored cigarette", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8072, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "background": "orange", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8073, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "earring": "gold stud", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8074, + "metadata_dict": { + "background": "yellow", + "earring": "silver stud", + "clothes": "work vest", + "eyes": "bored", + "fur": "brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8075, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "orange", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8076, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "dark brown", + "clothes": "tanktop", + "hat": "bayc hat red", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8077, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "fur": "cheetah", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8078, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "hat": "seaman's hat", + "fur": "black", + "mouth": "tongue out", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8079, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "blue", + "hat": "spinner hat", + "eyes": "bored", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8080, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "hat": "king's crown", + "fur": "brown", + "clothes": "prom dress", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8081, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "coins", + "hat": "stuntman helmet", + "background": "orange", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8082, + "metadata_dict": { + "eyes": "blindfold", + "hat": "fez", + "background": "blue", + "earring": "cross", + "clothes": "stunt jacket", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8083, + "metadata_dict": { + "eyes": "robot", + "background": "blue", + "clothes": "bayc t black", + "hat": "bowler", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8084, + "metadata_dict": { + "eyes": "heart", + "fur": "cheetah", + "mouth": "phoneme vuh", + "hat": "spinner hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8085, + "metadata_dict": { + "eyes": "blindfold", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8086, + "metadata_dict": { + "background": "new punk blue", + "clothes": "leather punk jacket", + "mouth": "bored", + "eyes": "bored", + "fur": "brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8087, + "metadata_dict": { + "mouth": "grin", + "earring": "silver stud", + "eyes": "robot", + "fur": "black", + "background": "orange", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8088, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "small grin", + "eyes": "bored", + "hat": "halo", + "fur": "blue", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8089, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "gray", + "earring": "diamond stud", + "background": "blue", + "clothes": "tuxedo tee", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8090, + "metadata_dict": { + "hat": "prussian helmet", + "clothes": "sailor shirt", + "mouth": "bored pipe", + "fur": "cheetah", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8091, + "metadata_dict": { + "clothes": "kings robe", + "hat": "bandana blue", + "fur": "dmt", + "mouth": "dumbfounded", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8092, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "blindfold", + "clothes": "blue dress", + "hat": "party hat 1", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8093, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "clothes": "leather jacket", + "hat": "army hat", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8094, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "golden brown", + "clothes": "toga", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8095, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8096, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "coins", + "mouth": "dumbfounded", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8097, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven dagger", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8098, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "silver stud", + "background": "gray", + "fur": "death bot", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8099, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "lumberjack shirt", + "mouth": "grin multicolored", + "background": "blue", + "hat": "cowboy hat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8100, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "silver stud", + "fur": "dark brown", + "clothes": "tanktop", + "mouth": "bored cigarette", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8101, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "eyes": "coins", + "hat": "short mohawk", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8102, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "sunglasses", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "stunt jacket", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8103, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "hat": "seaman's hat", + "clothes": "cowboy shirt", + "background": "blue", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8104, + "metadata_dict": { + "clothes": "striped tee", + "earring": "gold hoop", + "hat": "girl's hair pink", + "background": "aquamarine", + "mouth": "bored", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8105, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "bloodshot", + "clothes": "guayabera", + "earring": "silver hoop", + "background": "yellow", + "fur": "death bot", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8106, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "bandana blue", + "background": "aquamarine", + "mouth": "bored pipe", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8107, + "metadata_dict": { + "clothes": "striped tee", + "hat": "beanie", + "background": "purple", + "mouth": "bored cigarette", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8108, + "metadata_dict": { + "fur": "golden brown", + "mouth": "grin", + "background": "aquamarine", + "hat": "cowboy hat", + "clothes": "hip hop", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8109, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8110, + "metadata_dict": { + "mouth": "bored party horn", + "fur": "dark brown", + "background": "gray", + "eyes": "sleepy", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8111, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "hat": "spinner hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8112, + "metadata_dict": { + "hat": "horns", + "eyes": "hypnotized", + "mouth": "dumbfounded", + "background": "blue", + "fur": "dark brown", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8113, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven party horn", + "clothes": "black t", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8114, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8115, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "clothes": "black t", + "hat": "commie hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8116, + "metadata_dict": { + "fur": "cream", + "clothes": "tweed suit", + "mouth": "phoneme vuh", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8117, + "metadata_dict": { + "eyes": "eyepatch", + "background": "aquamarine", + "mouth": "bored bubblegum", + "fur": "dark brown", + "hat": "fisherman's hat", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8118, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "hat": "cowboy hat", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8119, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8120, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "space suit", + "hat": "seaman's hat", + "mouth": "bored unshaven bubblegum", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8121, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "hat": "spinner hat", + "clothes": "bone necklace", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8122, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "mouth": "bored pipe", + "eyes": "3d", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8123, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "hat": "army hat", + "fur": "brown", + "clothes": "stunt jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8124, + "metadata_dict": { + "clothes": "striped tee", + "fur": "gray", + "hat": "girl's hair pink", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8125, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "grin diamond grill", + "fur": "dark brown", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8126, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "irish boho", + "eyes": "hypnotized", + "clothes": "tie dye", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8127, + "metadata_dict": { + "fur": "tan", + "hat": "cowboy hat", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored cigarette", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8128, + "metadata_dict": { + "eyes": "coins", + "mouth": "rage", + "clothes": "cowboy shirt", + "fur": "black", + "background": "orange", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8129, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "brown", + "hat": "bayc flipped brim", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8130, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "eyes": "sleepy", + "mouth": "small grin", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8131, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "golden brown", + "mouth": "jovial", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8132, + "metadata_dict": { + "mouth": "discomfort", + "hat": "sushi chef headband", + "background": "aquamarine", + "clothes": "tie dye", + "eyes": "3d", + "fur": "dark brown", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8133, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "bone tee", + "fur": "golden brown", + "earring": "gold hoop", + "mouth": "bored pipe", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8134, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "prison jumpsuit", + "eyes": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8135, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "hypnotized", + "earring": "silver stud", + "fur": "black", + "mouth": "bored unshaven dagger", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8136, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8137, + "metadata_dict": { + "mouth": "grin multicolored", + "background": "orange", + "eyes": "bloodshot", + "fur": "brown", + "hat": "vietnam era helmet", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8138, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "black", + "clothes": "smoking jacket", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8139, + "metadata_dict": { + "eyes": "scumbag", + "hat": "party hat 1", + "mouth": "jovial", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8140, + "metadata_dict": { + "clothes": "black t", + "fur": "pink", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8141, + "metadata_dict": { + "eyes": "closed", + "hat": "army hat", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8142, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "background": "blue", + "eyes": "sleepy", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8143, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "red", + "background": "aquamarine", + "hat": "short mohawk", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8144, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "grin", + "earring": "diamond stud", + "background": "blue", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8145, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored party horn", + "fur": "red", + "hat": "short mohawk", + "eyes": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8146, + "metadata_dict": { + "fur": "red", + "mouth": "jovial", + "background": "purple", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8147, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "cheetah", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8148, + "metadata_dict": { + "clothes": "striped tee", + "hat": "irish boho", + "eyes": "robot", + "background": "orange", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8149, + "metadata_dict": { + "hat": "prussian helmet", + "clothes": "sailor shirt", + "mouth": "rage", + "background": "blue", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8150, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "background": "aquamarine", + "eyes": "blue beams", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8151, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "cream", + "clothes": "sailor shirt", + "mouth": "phoneme vuh", + "earring": "gold stud", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8152, + "metadata_dict": { + "earring": "silver hoop", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "angry", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8153, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "background": "orange", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8154, + "metadata_dict": { + "eyes": "zombie", + "mouth": "bored party horn", + "fur": "noise", + "clothes": "bayc t black", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8155, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "hat": "horns", + "mouth": "dumbfounded", + "clothes": "leather jacket", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8156, + "metadata_dict": { + "eyes": "heart", + "hat": "sushi chef headband", + "fur": "dmt", + "clothes": "work vest", + "background": "aquamarine", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8157, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "fur": "noise", + "eyes": "bloodshot", + "hat": "bayc hat red", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8158, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black suit", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "army hat", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8159, + "metadata_dict": { + "background": "aquamarine", + "eyes": "3d", + "fur": "tan", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8160, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored dagger", + "earring": "gold stud", + "clothes": "smoking jacket", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8161, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "baby's bonnet", + "earring": "silver stud", + "fur": "pink", + "eyes": "3d", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8162, + "metadata_dict": { + "earring": "gold hoop", + "fur": "black", + "background": "orange", + "mouth": "small grin", + "hat": "bayc flipped brim", + "clothes": "lab coat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8163, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "work vest", + "hat": "army hat", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8164, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "coins", + "clothes": "biker vest", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8165, + "metadata_dict": { + "hat": "fez", + "eyes": "bloodshot", + "mouth": "small grin", + "fur": "noise", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8166, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "clothes": "prison jumpsuit", + "fur": "cheetah", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8167, + "metadata_dict": { + "mouth": "rage", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8168, + "metadata_dict": { + "clothes": "black t", + "mouth": "phoneme vuh", + "hat": "spinner hat", + "fur": "noise", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8169, + "metadata_dict": { + "hat": "irish boho", + "clothes": "black holes t", + "mouth": "grin", + "fur": "black", + "earring": "silver hoop", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8170, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "pink", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8171, + "metadata_dict": { + "eyes": "blindfold", + "fur": "cream", + "clothes": "black holes t", + "earring": "gold hoop", + "mouth": "jovial", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8172, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "fur": "black", + "eyes": "bored", + "mouth": "bored pizza", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8173, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "baby's bonnet", + "mouth": "phoneme vuh", + "fur": "black", + "background": "yellow", + "eyes": "sleepy", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8174, + "metadata_dict": { + "eyes": "x eyes", + "background": "gray", + "hat": "cowboy hat", + "clothes": "tanktop", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8175, + "metadata_dict": { + "hat": "girl's hair pink", + "earring": "gold stud", + "eyes": "3d", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8176, + "metadata_dict": { + "clothes": "sailor shirt", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8177, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8178, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "eyes": "bored", + "hat": "bayc hat red", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8179, + "metadata_dict": { + "clothes": "black t", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8180, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "mouth": "small grin", + "clothes": "lab coat", + "hat": "bowler", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8181, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "cream", + "eyes": "bloodshot", + "clothes": "bayc t black", + "hat": "army hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8182, + "metadata_dict": { + "hat": "bandana blue", + "eyes": "blindfold", + "fur": "dmt", + "earring": "gold hoop", + "background": "aquamarine", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8183, + "metadata_dict": { + "fur": "tan", + "clothes": "cowboy shirt", + "background": "orange", + "eyes": "blue beams", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8184, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8185, + "metadata_dict": { + "eyes": "zombie", + "earring": "diamond stud", + "hat": "prussian helmet", + "mouth": "bored unshaven bubblegum", + "fur": "brown", + "background": "yellow", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8186, + "metadata_dict": { + "background": "aquamarine", + "clothes": "bayc t black", + "fur": "brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8187, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "mouth": "phoneme ooo", + "fur": "dmt", + "hat": "king's crown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8188, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "hypnotized", + "fur": "brown", + "background": "blue", + "mouth": "bored unshaven cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8189, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "gray", + "eyes": "bored", + "background": "purple", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8190, + "metadata_dict": { + "fur": "black", + "background": "orange", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "phoneme wah", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8191, + "metadata_dict": { + "eyes": "zombie", + "background": "aquamarine", + "mouth": "bored pipe", + "clothes": "work vest", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8192, + "metadata_dict": { + "background": "gray", + "eyes": "zombie", + "hat": "stuntman helmet", + "fur": "cheetah", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8193, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "mouth": "small grin", + "background": "gray", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8194, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "gold stud", + "clothes": "admirals coat", + "hat": "vietnam era helmet", + "background": "purple", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8195, + "metadata_dict": { + "hat": "horns", + "clothes": "work vest", + "background": "orange", + "fur": "pink", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8196, + "metadata_dict": { + "mouth": "bored pipe", + "earring": "silver hoop", + "fur": "cheetah", + "hat": "beanie", + "background": "purple", + "eyes": "angry", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8197, + "metadata_dict": { + "mouth": "phoneme ooo", + "earring": "gold hoop", + "hat": "fez", + "fur": "black", + "clothes": "biker vest", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8198, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "fur": "golden brown", + "clothes": "cowboy shirt", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8199, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "eyes": "bored", + "clothes": "tanktop", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8200, + "metadata_dict": { + "eyes": "heart", + "fur": "gray", + "mouth": "phoneme vuh", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8201, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "blue dress", + "eyes": "3d", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8202, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "fur": "dark brown", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8203, + "metadata_dict": { + "eyes": "holographic", + "clothes": "black holes t", + "mouth": "grin", + "fur": "golden brown", + "earring": "silver hoop", + "hat": "girl's hair short", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8204, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "gray", + "clothes": "lab coat", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8205, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "hat": "sushi chef headband", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8206, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "stunt jacket", + "background": "yellow", + "eyes": "sleepy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8207, + "metadata_dict": { + "eyes": "heart", + "mouth": "jovial", + "fur": "black", + "hat": "short mohawk", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8208, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "cream", + "hat": "girl's hair pink", + "clothes": "biker vest", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8209, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "black", + "mouth": "bored unshaven cigar", + "eyes": "crazy", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8210, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "fur": "gray", + "background": "blue", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8211, + "metadata_dict": { + "eyes": "closed", + "clothes": "kings robe", + "mouth": "bored kazoo", + "fur": "golden brown", + "earring": "silver hoop", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8212, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "clothes": "sailor shirt", + "mouth": "small grin", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8213, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "coins", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8214, + "metadata_dict": { + "eyes": "x eyes", + "hat": "fisherman's hat", + "fur": "white", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8215, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "hypnotized", + "clothes": "black t", + "background": "aquamarine", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8216, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "black t", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8217, + "metadata_dict": { + "fur": "tan", + "eyes": "scumbag", + "clothes": "bandolier", + "mouth": "grin", + "background": "aquamarine", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8218, + "metadata_dict": { + "hat": "s&m hat", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8219, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin diamond grill", + "earring": "silver stud", + "hat": "army hat", + "fur": "cheetah", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8220, + "metadata_dict": { + "mouth": "bored party horn", + "hat": "bowler", + "fur": "pink", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8221, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "party hat 2", + "fur": "tan", + "eyes": "heart", + "background": "new punk blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8222, + "metadata_dict": { + "mouth": "rage", + "background": "orange", + "eyes": "bored", + "hat": "fisherman's hat", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8223, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "coins", + "mouth": "rage", + "hat": "spinner hat", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8224, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "eyes": "robot", + "hat": "spinner hat", + "mouth": "small grin", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8225, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "earring": "silver stud", + "background": "yellow", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8226, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "blue dress", + "mouth": "grin diamond grill", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8227, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "background": "blue", + "fur": "black", + "hat": "fisherman's hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8228, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather jacket", + "fur": "black", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8229, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "clothes": "bone necklace", + "mouth": "dumbfounded", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8230, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "zombie", + "clothes": "tie dye", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8231, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "fur": "black", + "hat": "girl's hair short", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8232, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "aquamarine", + "fur": "black", + "eyes": "3d", + "clothes": "biker vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8233, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "brown", + "clothes": "rainbow suspenders", + "eyes": "robot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8234, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "zombie", + "mouth": "dumbfounded", + "fur": "dark brown", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8235, + "metadata_dict": { + "fur": "black", + "background": "orange", + "eyes": "bored", + "mouth": "bored pizza" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8236, + "metadata_dict": { + "mouth": "bored kazoo", + "earring": "diamond stud", + "background": "orange", + "clothes": "smoking jacket", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8237, + "metadata_dict": { + "eyes": "heart", + "mouth": "phoneme ooo", + "hat": "prussian helmet", + "fur": "brown", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8238, + "metadata_dict": { + "background": "new punk blue", + "eyes": "robot", + "clothes": "smoking jacket", + "hat": "commie hat", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8239, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "background": "aquamarine", + "hat": "cowboy hat", + "mouth": "tongue out", + "eyes": "cyborg", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8240, + "metadata_dict": { + "fur": "robot", + "earring": "silver stud", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8241, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "hat": "s&m hat", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8242, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "stuntman helmet", + "fur": "black", + "clothes": "tie dye", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8243, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "eyes": "scumbag", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8244, + "metadata_dict": { + "clothes": "black suit", + "background": "blue", + "hat": "cowboy hat", + "mouth": "bored", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8245, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "dmt", + "earring": "silver hoop", + "background": "yellow", + "hat": "bunny ears", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8246, + "metadata_dict": { + "hat": "short mohawk", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8247, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "hypnotized", + "fur": "golden brown", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8248, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "earring": "gold hoop", + "background": "aquamarine", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8249, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "clothes": "black t", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8250, + "metadata_dict": { + "clothes": "tweed suit", + "background": "blue", + "mouth": "bored cigarette", + "fur": "robot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8251, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "zombie", + "background": "aquamarine", + "eyes": "bored", + "earring": "silver hoop", + "hat": "beanie", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8252, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "discomfort", + "clothes": "puffy vest", + "background": "blue", + "fur": "dark brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8253, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "horns", + "fur": "gray", + "clothes": "work vest", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8254, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "background": "orange", + "clothes": "tuxedo tee", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8255, + "metadata_dict": { + "eyes": "coins", + "earring": "silver hoop", + "mouth": "bored", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8256, + "metadata_dict": { + "fur": "dmt", + "eyes": "coins", + "background": "army green", + "mouth": "rage" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8257, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "mouth": "phoneme l", + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "fur": "black", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8258, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "hat": "cowboy hat", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8259, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "spinner hat", + "background": "orange", + "fur": "dark brown", + "clothes": "bayc t black", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8260, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "fur": "dmt", + "clothes": "blue dress", + "earring": "silver stud", + "eyes": "3d", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8261, + "metadata_dict": { + "mouth": "bored cigarette", + "background": "gray", + "clothes": "navy striped tee", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8262, + "metadata_dict": { + "fur": "gray", + "mouth": "bored party horn", + "hat": "bayc hat red", + "clothes": "guayabera", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8263, + "metadata_dict": { + "clothes": "black t", + "mouth": "dumbfounded", + "fur": "brown", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8264, + "metadata_dict": { + "eyes": "heart", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8265, + "metadata_dict": { + "fur": "gray", + "eyes": "sleepy", + "background": "orange", + "mouth": "bored unshaven" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8266, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "eyes": "robot", + "mouth": "bored unshaven kazoo", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8267, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "background": "aquamarine", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8268, + "metadata_dict": { + "fur": "cream", + "mouth": "bored party horn", + "clothes": "work vest", + "background": "gray", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8269, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cream", + "background": "blue", + "earring": "silver hoop", + "hat": "fisherman's hat", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8270, + "metadata_dict": { + "eyes": "zombie", + "fur": "black", + "background": "orange", + "clothes": "tuxedo tee", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8271, + "metadata_dict": { + "clothes": "black t", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8272, + "metadata_dict": { + "clothes": "sailor shirt", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8273, + "metadata_dict": { + "eyes": "holographic", + "mouth": "phoneme vuh", + "fur": "black", + "clothes": "biker vest", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8274, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "3d", + "hat": "fisherman's hat", + "fur": "cheetah", + "background": "yellow", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8275, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "clothes": "rainbow suspenders", + "fur": "brown", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8276, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8277, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8278, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "red", + "background": "purple", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8279, + "metadata_dict": { + "fur": "cream", + "clothes": "lumberjack shirt", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8280, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "cream", + "background": "blue", + "eyes": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8281, + "metadata_dict": { + "eyes": "scumbag", + "fur": "gray", + "mouth": "phoneme vuh", + "background": "purple", + "hat": "safari", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8282, + "metadata_dict": { + "earring": "diamond stud", + "hat": "beanie", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "phoneme wah", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8283, + "metadata_dict": { + "earring": "diamond stud", + "background": "aquamarine", + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8284, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "earring": "silver hoop", + "hat": "fisherman's hat", + "fur": "death bot", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8285, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigarette", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8286, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "black", + "eyes": "scumbag" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8287, + "metadata_dict": { + "eyes": "scumbag", + "fur": "red", + "hat": "beanie", + "background": "purple", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8288, + "metadata_dict": { + "fur": "golden brown", + "hat": "baby's bonnet", + "mouth": "dumbfounded", + "background": "blue", + "earring": "silver hoop", + "eyes": "sleepy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8289, + "metadata_dict": { + "mouth": "phoneme l", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bayc flipped brim", + "clothes": "bone necklace", + "earring": "cross", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8290, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "grin", + "eyes": "bored", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8291, + "metadata_dict": { + "hat": "party hat 1", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8292, + "metadata_dict": { + "eyes": "closed", + "hat": "horns", + "fur": "black", + "background": "yellow", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8293, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "mouth": "bored pipe", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8294, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "mouth": "dumbfounded", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8295, + "metadata_dict": { + "fur": "trippy", + "hat": "seaman's hat", + "eyes": "bored", + "clothes": "stunt jacket", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8296, + "metadata_dict": { + "fur": "tan", + "clothes": "black t", + "earring": "gold stud", + "mouth": "small grin", + "background": "yellow", + "hat": "safari", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8297, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "silver stud", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "fur": "cheetah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8298, + "metadata_dict": { + "hat": "s&m hat", + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8299, + "metadata_dict": { + "background": "gray", + "earring": "gold hoop", + "eyes": "bloodshot", + "fur": "brown", + "hat": "bowler", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8300, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "eyes": "sad", + "earring": "silver stud", + "fur": "death bot", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8301, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "background": "aquamarine", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8302, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "bandolier", + "fur": "tan", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8303, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "striped tee", + "earring": "gold hoop", + "eyes": "bored", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8304, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "stuntman helmet", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8305, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8306, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "clothes": "leather jacket", + "eyes": "bored", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8307, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "irish boho", + "fur": "golden brown", + "eyes": "coins", + "background": "aquamarine", + "earring": "gold stud", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8308, + "metadata_dict": { + "hat": "horns", + "background": "gray", + "fur": "pink", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "clothes": "guayabera", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8309, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "clothes": "lumberjack shirt", + "eyes": "bloodshot", + "hat": "safari", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8310, + "metadata_dict": { + "fur": "gray", + "clothes": "tuxedo tee", + "background": "purple", + "mouth": "bored", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8311, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme ooo", + "hat": "fez", + "background": "orange", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8312, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "black t", + "fur": "black", + "hat": "bayc flipped brim", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8313, + "metadata_dict": { + "fur": "tan", + "mouth": "dumbfounded", + "clothes": "guayabera", + "hat": "beanie", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8314, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "background": "aquamarine", + "eyes": "sleepy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8315, + "metadata_dict": { + "fur": "golden brown", + "clothes": "smoking jacket", + "background": "orange", + "eyes": "bored", + "hat": "bunny ears", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8316, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "phoneme oh", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8317, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "smoking jacket", + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8318, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "small grin", + "eyes": "bored", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8319, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "baby's bonnet", + "fur": "black", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8320, + "metadata_dict": { + "fur": "tan", + "hat": "party hat 1", + "background": "purple", + "clothes": "stunt jacket", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8321, + "metadata_dict": { + "fur": "brown", + "background": "purple", + "mouth": "bored", + "eyes": "crazy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8322, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "holographic", + "mouth": "grin", + "fur": "black", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8323, + "metadata_dict": { + "fur": "cream", + "clothes": "sleeveless t", + "mouth": "grin diamond grill", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8324, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "mouth": "small grin", + "eyes": "bored", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8325, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "clothes": "biker vest", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8326, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "tweed suit", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "army hat", + "mouth": "phoneme wah", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8327, + "metadata_dict": { + "fur": "cream", + "earring": "gold hoop", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8328, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "red", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8329, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "sailor shirt", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8330, + "metadata_dict": { + "eyes": "scumbag", + "hat": "girl's hair pink", + "fur": "red", + "clothes": "biker vest", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8331, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "laurel wreath", + "clothes": "black holes t", + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8332, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "irish boho", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "sleeveless logo t", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8333, + "metadata_dict": { + "fur": "trippy", + "mouth": "grin", + "earring": "gold stud", + "eyes": "bored", + "hat": "faux hawk", + "clothes": "pimp coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8334, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "clothes": "black holes t", + "background": "orange", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8335, + "metadata_dict": { + "clothes": "tweed suit", + "background": "orange", + "fur": "cheetah", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8336, + "metadata_dict": { + "clothes": "bandolier", + "eyes": "coins", + "hat": "fez", + "background": "yellow", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8337, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "cream", + "mouth": "rage", + "background": "blue", + "hat": "fisherman's hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8338, + "metadata_dict": { + "fur": "tan", + "eyes": "zombie", + "earring": "gold stud", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8339, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "lumberjack shirt", + "earring": "diamond stud", + "fur": "red", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8340, + "metadata_dict": { + "background": "new punk blue", + "clothes": "prison jumpsuit", + "earring": "silver stud", + "mouth": "bored pipe", + "eyes": "robot", + "fur": "dark brown", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8341, + "metadata_dict": { + "mouth": "bored pipe", + "background": "blue", + "fur": "brown", + "hat": "beanie", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8342, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "earring": "gold hoop", + "mouth": "bored pipe", + "fur": "dark brown", + "hat": "girl's hair short", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8343, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "earring": "silver stud", + "clothes": "pimp coat", + "hat": "army hat", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8344, + "metadata_dict": { + "mouth": "phoneme vuh", + "fur": "noise", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8345, + "metadata_dict": { + "hat": "fez", + "background": "orange", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8346, + "metadata_dict": { + "mouth": "discomfort", + "hat": "horns", + "clothes": "black t", + "background": "blue", + "earring": "gold stud", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8347, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme ooo", + "fur": "brown", + "background": "yellow", + "hat": "bunny ears", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8348, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "golden brown", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8349, + "metadata_dict": { + "mouth": "grin", + "earring": "diamond stud", + "background": "blue", + "eyes": "3d", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8350, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored cigar", + "background": "blue", + "eyes": "robot", + "fur": "brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8351, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "background": "blue", + "eyes": "3d", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8352, + "metadata_dict": { + "clothes": "tweed suit", + "background": "orange", + "mouth": "bored unshaven cigarette", + "fur": "white", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8353, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "black holes t", + "fur": "brown", + "eyes": "robot", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8354, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "background": "aquamarine", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8355, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "gray", + "hat": "stuntman helmet", + "background": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8356, + "metadata_dict": { + "mouth": "grin", + "fur": "brown", + "earring": "silver stud", + "clothes": "smoking jacket", + "hat": "short mohawk", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8357, + "metadata_dict": { + "earring": "gold hoop", + "background": "aquamarine", + "clothes": "leather jacket", + "fur": "black", + "mouth": "bored", + "eyes": "angry", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8358, + "metadata_dict": { + "fur": "gray", + "eyes": "coins", + "earring": "gold hoop", + "hat": "bunny ears", + "mouth": "tongue out", + "background": "purple", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8359, + "metadata_dict": { + "hat": "fez", + "background": "blue", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8360, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "eyes": "scumbag", + "mouth": "rage", + "earring": "silver hoop", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8361, + "metadata_dict": { + "mouth": "grin multicolored", + "fur": "gray", + "clothes": "tanktop", + "hat": "bayc hat red", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8362, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "red", + "eyes": "robot", + "background": "orange", + "mouth": "bored unshaven cigar", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8363, + "metadata_dict": { + "eyes": "x eyes", + "fur": "robot", + "clothes": "space suit", + "hat": "fez", + "earring": "silver stud", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8364, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8365, + "metadata_dict": { + "hat": "horns", + "fur": "white", + "mouth": "bored", + "eyes": "angry", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8366, + "metadata_dict": { + "clothes": "bone necklace", + "background": "aquamarine", + "earring": "gold stud", + "eyes": "bored", + "fur": "brown", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8367, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "eyes": "hypnotized", + "hat": "prussian helmet", + "fur": "red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8368, + "metadata_dict": { + "clothes": "striped tee", + "fur": "black", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8369, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "clothes": "bayc t black", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8370, + "metadata_dict": { + "eyes": "holographic", + "mouth": "dumbfounded", + "fur": "black", + "hat": "bayc flipped brim", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8371, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "hat": "beanie", + "background": "purple", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8372, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "hat": "irish boho", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8373, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme vuh", + "hat": "spinner hat", + "fur": "noise", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8374, + "metadata_dict": { + "background": "new punk blue", + "fur": "dmt", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8375, + "metadata_dict": { + "background": "new punk blue", + "hat": "irish boho", + "clothes": "black t", + "fur": "black", + "mouth": "bored unshaven kazoo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8376, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "diamond stud", + "background": "gray", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8377, + "metadata_dict": { + "fur": "gray", + "hat": "fez", + "background": "blue", + "clothes": "bone necklace", + "mouth": "bored cigar", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8378, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "fur": "pink", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8379, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "cowboy shirt", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8380, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "hat": "irish boho", + "clothes": "black t", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8381, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8382, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored unshaven bubblegum", + "hat": "girl's hair pink", + "background": "orange", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8383, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "red", + "hat": "bayc flipped brim", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8384, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "bayc t red", + "hat": "baby's bonnet", + "fur": "black", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8385, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "bandana blue", + "fur": "red", + "background": "aquamarine", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8386, + "metadata_dict": { + "eyes": "laser eyes", + "earring": "silver stud", + "fur": "red", + "mouth": "dumbfounded", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8387, + "metadata_dict": { + "fur": "blue", + "eyes": "zombie", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8388, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8389, + "metadata_dict": { + "hat": "horns", + "clothes": "tweed suit", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8390, + "metadata_dict": { + "fur": "golden brown", + "background": "orange", + "mouth": "bored", + "earring": "cross", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8391, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "background": "blue", + "hat": "fisherman's hat", + "clothes": "hip hop", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8392, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cream", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8393, + "metadata_dict": { + "background": "aquamarine", + "eyes": "3d", + "clothes": "biker vest", + "hat": "cowboy hat", + "mouth": "bored unshaven cigar", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8394, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "phoneme ooo", + "hat": "sea captain's hat", + "fur": "black", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8395, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "yellow", + "fur": "black", + "eyes": "bored", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8396, + "metadata_dict": { + "earring": "gold hoop", + "fur": "pink", + "hat": "faux hawk", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8397, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8398, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven cigarette", + "background": "purple", + "hat": "halo", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8399, + "metadata_dict": { + "mouth": "rage", + "fur": "dark brown", + "hat": "bunny ears", + "background": "army green", + "clothes": "hawaiian", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8400, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "blindfold", + "clothes": "blue dress", + "background": "orange", + "fur": "dark brown", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8401, + "metadata_dict": { + "eyes": "closed", + "clothes": "bone tee", + "earring": "silver stud", + "background": "blue", + "mouth": "bored", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8402, + "metadata_dict": { + "hat": "party hat 1", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "clothes": "navy striped tee", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8403, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "rage", + "background": "aquamarine", + "eyes": "3d", + "fur": "brown", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8404, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "phoneme ooo", + "background": "blue", + "eyes": "robot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8405, + "metadata_dict": { + "fur": "tan", + "clothes": "prison jumpsuit", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "commie hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8406, + "metadata_dict": { + "eyes": "holographic", + "hat": "fez", + "earring": "silver stud", + "mouth": "jovial", + "clothes": "cowboy shirt", + "fur": "dark brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8407, + "metadata_dict": { + "eyes": "heart", + "clothes": "striped tee", + "hat": "irish boho", + "mouth": "phoneme ooo", + "fur": "gray", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8408, + "metadata_dict": { + "fur": "golden brown", + "background": "army green", + "eyes": "bored", + "mouth": "phoneme l" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8409, + "metadata_dict": { + "hat": "baby's bonnet", + "earring": "gold hoop", + "fur": "pink", + "eyes": "3d", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8410, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "bone tee", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8411, + "metadata_dict": { + "hat": "sushi chef headband", + "background": "aquamarine", + "clothes": "leather jacket", + "eyes": "3d", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8412, + "metadata_dict": { + "fur": "red", + "background": "blue", + "clothes": "smoking jacket", + "eyes": "bored", + "hat": "fisherman's hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8413, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "bowler", + "earring": "gold stud", + "fur": "dark brown", + "clothes": "pimp coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8414, + "metadata_dict": { + "fur": "cream", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "background": "gray", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8415, + "metadata_dict": { + "eyes": "heart", + "fur": "brown", + "hat": "fez", + "background": "blue", + "clothes": "admirals coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8416, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "eyes": "bored", + "background": "yellow", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8417, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bloodshot", + "hat": "army hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8418, + "metadata_dict": { + "clothes": "black t", + "background": "blue", + "earring": "gold stud", + "fur": "brown", + "mouth": "bored cigarette", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8419, + "metadata_dict": { + "fur": "gray", + "hat": "beanie", + "clothes": "tie dye", + "eyes": "bored", + "background": "yellow", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8420, + "metadata_dict": { + "clothes": "space suit", + "earring": "diamond stud", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8421, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme vuh", + "background": "blue", + "eyes": "bloodshot", + "hat": "beanie", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8422, + "metadata_dict": { + "eyes": "holographic", + "earring": "diamond stud", + "fur": "noise", + "hat": "bayc flipped brim", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8423, + "metadata_dict": { + "clothes": "black t", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "short mohawk", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8424, + "metadata_dict": { + "hat": "horns", + "mouth": "phoneme vuh", + "fur": "red", + "background": "gray", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8425, + "metadata_dict": { + "eyes": "heart", + "clothes": "rainbow suspenders", + "earring": "gold stud", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8426, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "black t", + "hat": "vietnam era helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8427, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "hat": "baby's bonnet", + "eyes": "bored", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8428, + "metadata_dict": { + "hat": "sushi chef headband", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8429, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "coins", + "hat": "king's crown", + "background": "aquamarine", + "fur": "pink", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8430, + "metadata_dict": { + "fur": "golden brown", + "hat": "prussian helmet", + "background": "aquamarine", + "eyes": "3d", + "mouth": "bored cigarette", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8431, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "earring": "silver stud", + "clothes": "bayc t black", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8432, + "metadata_dict": { + "fur": "gray", + "mouth": "phoneme vuh", + "background": "aquamarine", + "hat": "cowboy hat", + "clothes": "tanktop", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8433, + "metadata_dict": { + "background": "new punk blue", + "eyes": "hypnotized", + "fur": "golden brown", + "hat": "king's crown", + "clothes": "tuxedo tee", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8434, + "metadata_dict": { + "hat": "party hat 1", + "clothes": "work vest", + "background": "aquamarine", + "mouth": "bored bubblegum", + "eyes": "3d", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8435, + "metadata_dict": { + "clothes": "tweed suit", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8436, + "metadata_dict": { + "background": "aquamarine", + "fur": "noise", + "mouth": "small grin", + "eyes": "blue beams", + "hat": "beanie", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8437, + "metadata_dict": { + "background": "blue", + "fur": "black", + "clothes": "tuxedo tee", + "mouth": "phoneme wah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8438, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "cowboy hat", + "background": "gray", + "fur": "death bot", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8439, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "silver stud", + "fur": "black", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8440, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "background": "purple", + "hat": "spinner hat", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8441, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "scumbag", + "fur": "golden brown", + "mouth": "phoneme vuh", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8442, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "hat": "girl's hair short", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8443, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "clothes": "striped tee", + "hat": "bandana blue", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8444, + "metadata_dict": { + "clothes": "biker vest", + "background": "orange", + "mouth": "small grin", + "earring": "silver hoop", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8445, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "eyes": "bored", + "clothes": "tanktop", + "hat": "vietnam era helmet", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8446, + "metadata_dict": { + "earring": "gold hoop", + "background": "blue", + "fur": "black", + "mouth": "bored", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8447, + "metadata_dict": { + "background": "purple", + "fur": "pink", + "clothes": "biker vest", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8448, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "trippy", + "hat": "fez", + "background": "orange", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8449, + "metadata_dict": { + "hat": "baby's bonnet", + "clothes": "black t", + "background": "aquamarine", + "fur": "black", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8450, + "metadata_dict": { + "eyes": "x eyes", + "hat": "irish boho", + "background": "blue", + "mouth": "small grin", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8451, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "gray", + "mouth": "phoneme vuh", + "earring": "silver stud", + "background": "gray", + "hat": "bowler", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8452, + "metadata_dict": { + "clothes": "striped tee", + "background": "blue", + "hat": "short mohawk", + "mouth": "bored cigarette", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8453, + "metadata_dict": { + "clothes": "bayc t red", + "hat": "fez", + "earring": "silver stud", + "background": "blue", + "eyes": "bloodshot", + "mouth": "small grin", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8454, + "metadata_dict": { + "background": "yellow", + "fur": "white", + "eyes": "sunglasses", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8455, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "wool turtleneck", + "hat": "s&m hat", + "fur": "golden brown", + "background": "aquamarine", + "earring": "gold stud", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8456, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "phoneme ooo", + "earring": "silver stud", + "fur": "dark brown", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8457, + "metadata_dict": { + "fur": "dmt", + "hat": "prussian helmet", + "background": "aquamarine", + "clothes": "cowboy shirt", + "mouth": "small grin", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8458, + "metadata_dict": { + "background": "blue", + "fur": "black", + "mouth": "bored unshaven cigar", + "eyes": "sleepy", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8459, + "metadata_dict": { + "eyes": "closed", + "hat": "baby's bonnet", + "fur": "brown", + "clothes": "biker vest", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8460, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "eyes": "3d", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8461, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "eyes": "coins", + "earring": "diamond stud", + "clothes": "tweed suit", + "mouth": "bored pizza" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8462, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "mouth": "dumbfounded", + "fur": "black", + "eyes": "3d", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8463, + "metadata_dict": { + "background": "yellow", + "fur": "dark brown", + "clothes": "admirals coat", + "hat": "bowler", + "mouth": "bored cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8464, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "party hat 1", + "eyes": "3d", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8465, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "hat": "party hat 1", + "background": "blue", + "fur": "black", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8466, + "metadata_dict": { + "hat": "short mohawk", + "eyes": "bored", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8467, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "rage", + "eyes": "bloodshot", + "fur": "cheetah", + "background": "yellow", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8468, + "metadata_dict": { + "background": "gray", + "mouth": "bored", + "fur": "robot", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8469, + "metadata_dict": { + "mouth": "grin", + "eyes": "sleepy", + "fur": "brown", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8470, + "metadata_dict": { + "mouth": "phoneme vuh", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8471, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "coins", + "earring": "silver hoop", + "background": "yellow", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8472, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "earring": "silver hoop", + "fur": "cheetah", + "hat": "vietnam era helmet", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8473, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "fur": "cream", + "hat": "seaman's hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8474, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "hat": "sushi chef headband", + "mouth": "dumbfounded", + "earring": "silver stud", + "clothes": "leather jacket", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8475, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "hat": "fez", + "mouth": "bored unshaven pipe", + "background": "blue", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8476, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "closed", + "earring": "diamond stud", + "hat": "fisherman's hat", + "fur": "brown", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8477, + "metadata_dict": { + "background": "purple", + "eyes": "crazy", + "mouth": "bored unshaven", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8478, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "diamond stud", + "hat": "fez", + "background": "blue", + "fur": "death bot", + "clothes": "prom dress", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8479, + "metadata_dict": { + "fur": "cream", + "clothes": "lumberjack shirt", + "background": "blue", + "eyes": "bloodshot", + "hat": "vietnam era helmet", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8480, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored unshaven bubblegum", + "earring": "silver stud", + "fur": "red", + "clothes": "smoking jacket", + "background": "army green", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8481, + "metadata_dict": { + "fur": "tan", + "hat": "irish boho", + "mouth": "phoneme ooo", + "clothes": "black t", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8482, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "grin", + "clothes": "black t", + "background": "blue", + "fur": "dark brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8483, + "metadata_dict": { + "background": "new punk blue", + "clothes": "smoking jacket", + "fur": "dark brown", + "eyes": "blue beams", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8484, + "metadata_dict": { + "eyes": "holographic", + "mouth": "phoneme ooo", + "earring": "gold stud", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8485, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "hat": "spinner hat", + "fur": "brown", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8486, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8487, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "cream", + "background": "yellow", + "clothes": "guayabera", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8488, + "metadata_dict": { + "eyes": "holographic", + "clothes": "smoking jacket", + "hat": "army hat", + "background": "yellow", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8489, + "metadata_dict": { + "eyes": "coins", + "mouth": "jovial", + "earring": "gold stud", + "hat": "girl's hair short", + "fur": "brown", + "background": "yellow", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8490, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "clothes": "space suit", + "hat": "fez", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8491, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "golden brown", + "hat": "seaman's hat", + "earring": "silver hoop", + "clothes": "lab coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8492, + "metadata_dict": { + "clothes": "black t", + "mouth": "jovial", + "background": "orange", + "fur": "pink", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8493, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "clothes": "sailor shirt", + "mouth": "jovial", + "hat": "spinner hat", + "eyes": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8494, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "coins", + "hat": "stuntman helmet", + "mouth": "tongue out", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8495, + "metadata_dict": { + "eyes": "heart", + "fur": "dmt", + "earring": "gold stud", + "background": "gray", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8496, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "cheetah", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8497, + "metadata_dict": { + "clothes": "space suit", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8498, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "fez", + "background": "blue", + "earring": "silver hoop", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8499, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "clothes": "hawaiian", + "eyes": "bored", + "background": "gray", + "hat": "bunny ears", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8500, + "metadata_dict": { + "fur": "brown", + "clothes": "work vest", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8501, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "fur": "brown", + "hat": "girl's hair pink", + "clothes": "work vest", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8502, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "mouth": "rage", + "background": "blue", + "earring": "gold stud", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8503, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "diamond stud", + "fur": "red", + "eyes": "sleepy", + "hat": "fisherman's hat", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8504, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "eyes": "bloodshot", + "fur": "pink", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8505, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sailor shirt", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8506, + "metadata_dict": { + "hat": "fez", + "mouth": "phoneme vuh", + "earring": "silver stud", + "background": "orange", + "fur": "dark brown", + "clothes": "bayc t black", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8507, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "bored", + "background": "gray", + "fur": "death bot", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8508, + "metadata_dict": { + "fur": "cream", + "mouth": "grin", + "background": "blue", + "eyes": "sunglasses", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8509, + "metadata_dict": { + "background": "new punk blue", + "clothes": "smoking jacket", + "fur": "brown", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8510, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "sunglasses", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8511, + "metadata_dict": { + "background": "new punk blue", + "eyes": "wide eyed", + "fur": "red", + "mouth": "bored", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8512, + "metadata_dict": { + "fur": "cream", + "background": "blue", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8513, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "fur": "brown", + "earring": "cross", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8514, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "clothes": "black t", + "fur": "red", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8515, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "clothes": "tanktop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8516, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "earring": "diamond stud", + "hat": "fez", + "background": "blue", + "fur": "brown", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8517, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8518, + "metadata_dict": { + "clothes": "black t", + "hat": "party hat 1", + "background": "blue", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8519, + "metadata_dict": { + "eyes": "eyepatch", + "background": "gray", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette", + "earring": "cross", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8520, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "black", + "eyes": "bored", + "background": "gray", + "clothes": "prom dress", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8521, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "pink", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8522, + "metadata_dict": { + "fur": "trippy", + "eyes": "zombie", + "hat": "girl's hair pink", + "mouth": "bored pipe", + "earring": "silver hoop", + "background": "gray", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8523, + "metadata_dict": { + "clothes": "wool turtleneck", + "background": "gray", + "hat": "girl's hair short", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8524, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "work vest", + "fur": "black", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8525, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "vietnam jacket", + "mouth": "bored unshaven pipe", + "background": "purple", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8526, + "metadata_dict": { + "clothes": "tweed suit", + "fur": "red", + "background": "purple", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8527, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather jacket", + "earring": "gold stud", + "fur": "death bot", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8528, + "metadata_dict": { + "clothes": "tuxedo tee", + "hat": "commie hat", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8529, + "metadata_dict": { + "fur": "tan", + "clothes": "sleeveless t", + "mouth": "phoneme vuh", + "background": "orange", + "eyes": "bloodshot", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8530, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "clothes": "biker vest", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8531, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "tweed suit", + "hat": "fez", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8532, + "metadata_dict": { + "mouth": "jovial", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8533, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "gold hoop", + "clothes": "biker vest", + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8534, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "fur": "black", + "clothes": "pimp coat", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8535, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin diamond grill", + "background": "orange", + "hat": "beanie", + "fur": "robot", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8536, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "gray", + "clothes": "sailor shirt", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8537, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "black holes t", + "mouth": "phoneme vuh", + "fur": "black", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8538, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "eyes": "holographic", + "hat": "horns", + "earring": "silver hoop", + "clothes": "guayabera", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8539, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven party horn", + "clothes": "cowboy shirt", + "earring": "gold stud", + "eyes": "bored", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8540, + "metadata_dict": { + "eyes": "closed", + "hat": "girl's hair pink", + "background": "gray", + "mouth": "bored cigarette", + "fur": "robot", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8541, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "guayabera", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8542, + "metadata_dict": { + "fur": "pink", + "eyes": "bloodshot", + "hat": "bowler", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8543, + "metadata_dict": { + "fur": "golden brown", + "earring": "gold hoop", + "hat": "bowler", + "eyes": "robot", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8544, + "metadata_dict": { + "mouth": "grin gold grill", + "clothes": "sleeveless t", + "fur": "golden brown", + "hat": "fez", + "eyes": "sleepy", + "background": "purple", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8545, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "clothes": "black t", + "earring": "silver stud", + "fur": "red", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8546, + "metadata_dict": { + "clothes": "tweed suit", + "mouth": "jovial", + "eyes": "bored", + "background": "yellow", + "fur": "zombie", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8547, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "hat": "short mohawk", + "clothes": "caveman pelt", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8548, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "background": "orange", + "eyes": "crazy", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8549, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8550, + "metadata_dict": { + "hat": "horns", + "clothes": "black t", + "background": "blue", + "eyes": "bored", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8551, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8552, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "bored pipe", + "clothes": "biker vest", + "earring": "silver hoop", + "fur": "solid gold", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8553, + "metadata_dict": { + "mouth": "grin multicolored", + "background": "yellow", + "fur": "black", + "clothes": "biker vest", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8554, + "metadata_dict": { + "fur": "gray", + "mouth": "rage", + "clothes": "tie dye", + "eyes": "bored", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8555, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "grin diamond grill", + "eyes": "sleepy", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8556, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "hat": "bayc hat red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8557, + "metadata_dict": { + "clothes": "service", + "mouth": "rage", + "eyes": "3d", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8558, + "metadata_dict": { + "background": "new punk blue", + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8559, + "metadata_dict": { + "clothes": "black t", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "silver hoop", + "eyes": "bored", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8560, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored", + "fur": "robot", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8561, + "metadata_dict": { + "eyes": "closed", + "hat": "fisherman's hat", + "mouth": "grin", + "fur": "dark brown", + "clothes": "toga", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8562, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "sushi chef headband", + "fur": "cheetah", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8563, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "aquamarine", + "clothes": "tuxedo tee", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8564, + "metadata_dict": { + "eyes": "closed", + "hat": "horns", + "mouth": "dumbfounded", + "fur": "pink", + "background": "orange", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8565, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "hat": "baby's bonnet", + "fur": "gray", + "eyes": "robot", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8566, + "metadata_dict": { + "mouth": "bored cigarette", + "clothes": "black holes t", + "background": "blue", + "earring": "silver hoop", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8567, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "gray", + "background": "blue", + "hat": "vietnam era helmet", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8568, + "metadata_dict": { + "eyes": "x eyes", + "fur": "tan", + "background": "yellow", + "mouth": "jovial", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8569, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "sleeveless t", + "hat": "horns", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8570, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "mouth": "small grin", + "clothes": "lab coat", + "hat": "beanie", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8571, + "metadata_dict": { + "clothes": "striped tee", + "hat": "baby's bonnet", + "fur": "black", + "eyes": "3d", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8572, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "cowboy hat", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored cigar", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8573, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "clothes": "smoking jacket", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8574, + "metadata_dict": { + "eyes": "sleepy", + "fur": "gray", + "mouth": "small grin", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8575, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "space suit", + "fur": "black", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8576, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "dumbfounded", + "fur": "pink", + "hat": "cowboy hat", + "background": "gray", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8577, + "metadata_dict": { + "eyes": "scumbag", + "earring": "gold hoop", + "clothes": "work vest", + "mouth": "bored unshaven cigar", + "fur": "cheetah", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8578, + "metadata_dict": { + "eyes": "x eyes", + "hat": "horns", + "earring": "silver stud", + "clothes": "leather jacket", + "fur": "dark brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8579, + "metadata_dict": { + "eyes": "heart", + "hat": "party hat 1", + "clothes": "smoking jacket", + "fur": "cheetah", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8580, + "metadata_dict": { + "eyes": "holographic", + "clothes": "black suit", + "background": "aquamarine", + "hat": "spinner hat", + "earring": "gold stud", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8581, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "mouth": "jovial", + "fur": "dark brown", + "clothes": "lab coat", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8582, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "hat": "baby's bonnet", + "background": "blue", + "clothes": "toga", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8583, + "metadata_dict": { + "mouth": "grin", + "hat": "fez", + "fur": "black", + "eyes": "3d", + "clothes": "biker vest", + "earring": "silver hoop", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8584, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "phoneme oh", + "fur": "red", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8585, + "metadata_dict": { + "eyes": "heart", + "fur": "trippy", + "hat": "king's crown", + "mouth": "phoneme vuh", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8586, + "metadata_dict": { + "clothes": "black t", + "mouth": "phoneme vuh", + "fur": "black", + "earring": "silver hoop", + "eyes": "bored", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8587, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "girl's hair short", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8588, + "metadata_dict": { + "clothes": "sailor shirt", + "hat": "fez", + "fur": "dark brown", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8589, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored bubblegum", + "fur": "dark brown", + "eyes": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8590, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "earring": "diamond stud", + "hat": "king's crown", + "background": "orange", + "fur": "pink", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8591, + "metadata_dict": { + "mouth": "discomfort", + "fur": "tan", + "clothes": "black t", + "hat": "vietnam era helmet", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8592, + "metadata_dict": { + "fur": "tan", + "hat": "girl's hair short", + "background": "orange", + "clothes": "lab coat", + "earring": "cross", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8593, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "earring": "gold stud", + "fur": "noise", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8594, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "cheetah", + "hat": "seaman's hat", + "mouth": "grin diamond grill", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8595, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "3d", + "hat": "fisherman's hat", + "fur": "cheetah", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8596, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "baby's bonnet", + "fur": "black", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8597, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "eyes": "robot", + "fur": "black", + "mouth": "small grin", + "hat": "cowboy hat", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8598, + "metadata_dict": { + "fur": "dmt", + "background": "gray", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8599, + "metadata_dict": { + "fur": "pink", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8600, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t red", + "fur": "tan", + "hat": "spinner hat", + "eyes": "bored", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8601, + "metadata_dict": { + "eyes": "blindfold", + "hat": "seaman's hat", + "earring": "silver stud", + "mouth": "bored pipe", + "fur": "black", + "clothes": "sleeveless logo t", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8602, + "metadata_dict": { + "eyes": "eyepatch", + "background": "blue", + "fur": "black", + "hat": "bayc hat red", + "mouth": "bored cigarette", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8603, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "clothes": "wool turtleneck", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8604, + "metadata_dict": { + "eyes": "coins", + "fur": "red", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8605, + "metadata_dict": { + "fur": "tan", + "clothes": "bone necklace", + "earring": "silver stud", + "mouth": "dumbfounded", + "hat": "beanie", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8606, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin diamond grill", + "earring": "silver hoop", + "background": "gray", + "hat": "beanie", + "clothes": "stunt jacket", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8607, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "fur": "pink" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8608, + "metadata_dict": { + "eyes": "holographic", + "fur": "cream", + "hat": "irish boho", + "mouth": "grin", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8609, + "metadata_dict": { + "eyes": "coins", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8610, + "metadata_dict": { + "eyes": "coins", + "clothes": "sleeveless logo t", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8611, + "metadata_dict": { + "fur": "tan", + "background": "orange", + "clothes": "guayabera", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8612, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "clothes": "bayc t black", + "hat": "short mohawk", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8613, + "metadata_dict": { + "fur": "tan", + "hat": "bunny ears", + "clothes": "toga", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8614, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "golden brown", + "clothes": "tie dye", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8615, + "metadata_dict": { + "eyes": "holographic", + "hat": "halo", + "clothes": "sailor shirt", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored cigarette", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8616, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "fur": "cream", + "background": "orange", + "hat": "cowboy hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8617, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "hat": "short mohawk", + "clothes": "bayc t black", + "fur": "robot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8618, + "metadata_dict": { + "clothes": "bayc t red", + "background": "purple", + "eyes": "bored", + "fur": "brown", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8619, + "metadata_dict": { + "fur": "gray", + "mouth": "bored pizza", + "background": "yellow", + "hat": "commie hat", + "eyes": "angry", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8620, + "metadata_dict": { + "background": "orange", + "clothes": "bayc t black", + "fur": "brown", + "hat": "vietnam era helmet", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8621, + "metadata_dict": { + "clothes": "leather jacket", + "fur": "black", + "background": "gray", + "hat": "bunny ears", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8622, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "pink", + "hat": "bayc flipped brim", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8623, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8624, + "metadata_dict": { + "mouth": "rage", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown", + "earring": "cross", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8625, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "sleepy", + "fur": "brown", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8626, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "work vest", + "fur": "black", + "background": "orange", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8627, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "striped tee", + "fur": "brown", + "hat": "beanie", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8628, + "metadata_dict": { + "eyes": "closed", + "mouth": "rage", + "background": "aquamarine", + "fur": "brown", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8629, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "gray", + "eyes": "sleepy", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8630, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "hat": "irish boho", + "background": "blue", + "earring": "silver hoop", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8631, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "clothes": "blue dress", + "fur": "golden brown", + "eyes": "bloodshot", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8632, + "metadata_dict": { + "clothes": "striped tee", + "earring": "gold hoop", + "mouth": "bored unshaven bubblegum", + "background": "blue", + "hat": "cowboy hat", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8633, + "metadata_dict": { + "eyes": "scumbag", + "background": "orange", + "fur": "trippy", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8634, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "background": "gray", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8635, + "metadata_dict": { + "eyes": "blindfold", + "fur": "black", + "earring": "gold stud", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8636, + "metadata_dict": { + "background": "new punk blue", + "hat": "baby's bonnet", + "mouth": "dumbfounded", + "clothes": "pimp coat", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8637, + "metadata_dict": { + "fur": "tan", + "eyes": "blindfold", + "earring": "diamond stud", + "hat": "vietnam era helmet", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8638, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "fur": "noise", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8639, + "metadata_dict": { + "eyes": "holographic", + "clothes": "caveman pelt", + "mouth": "bored unshaven bubblegum", + "hat": "fez", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8640, + "metadata_dict": { + "fur": "dmt", + "clothes": "prison jumpsuit", + "hat": "army hat", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8641, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "background": "blue", + "eyes": "3d", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8642, + "metadata_dict": { + "mouth": "bored cigarette", + "hat": "bandana blue", + "clothes": "space suit", + "earring": "silver stud", + "background": "yellow", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8643, + "metadata_dict": { + "background": "new punk blue", + "hat": "spinner hat", + "mouth": "tongue out", + "clothes": "tanktop", + "eyes": "sleepy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8644, + "metadata_dict": { + "clothes": "kings robe", + "hat": "party hat 2", + "fur": "golden brown", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8645, + "metadata_dict": { + "hat": "fez", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8646, + "metadata_dict": { + "fur": "black", + "mouth": "bored bubblegum", + "eyes": "bored", + "earring": "cross", + "background": "army green", + "clothes": "hawaiian", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8647, + "metadata_dict": { + "background": "new punk blue", + "hat": "girl's hair pink", + "clothes": "prison jumpsuit", + "eyes": "3d", + "mouth": "bored unshaven cigar", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8648, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "seaman's hat", + "eyes": "sleepy", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8649, + "metadata_dict": { + "fur": "gray", + "background": "purple", + "clothes": "tuxedo tee", + "hat": "army hat", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8650, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "prussian helmet", + "fur": "solid gold", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8651, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "mouth": "jovial", + "eyes": "3d", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8652, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "aquamarine", + "eyes": "robot", + "fur": "red", + "clothes": "sleeveless logo t", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8653, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "fur": "red", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8654, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "striped tee", + "eyes": "zombie", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8655, + "metadata_dict": { + "clothes": "kings robe", + "fur": "black", + "eyes": "bored", + "background": "gray", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8656, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme wah", + "hat": "horns", + "eyes": "bored", + "clothes": "guayabera", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8657, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "fur": "dmt", + "clothes": "lab coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8658, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "fur": "black", + "hat": "short mohawk", + "mouth": "bored", + "earring": "cross", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8659, + "metadata_dict": { + "hat": "irish boho", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "mouth": "bored cigarette", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8660, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "clothes": "black holes t", + "eyes": "zombie", + "fur": "gray", + "earring": "silver hoop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8661, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "blindfold", + "hat": "halo", + "clothes": "admirals coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8662, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "grin diamond grill", + "clothes": "leather jacket", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8663, + "metadata_dict": { + "clothes": "space suit", + "mouth": "phoneme ooo", + "hat": "baby's bonnet", + "fur": "red", + "earring": "silver hoop", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8664, + "metadata_dict": { + "clothes": "lab coat", + "eyes": "bored", + "fur": "solid gold", + "hat": "bunny ears", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8665, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "sailor shirt", + "eyes": "3d", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8666, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "diamond stud", + "eyes": "coins", + "hat": "girl's hair pink", + "fur": "pink", + "clothes": "smoking jacket", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8667, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "fez", + "fur": "red", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8668, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored", + "hat": "halo", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8669, + "metadata_dict": { + "fur": "cheetah", + "clothes": "sailor shirt", + "mouth": "bored pipe", + "hat": "girl's hair short", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8670, + "metadata_dict": { + "clothes": "bandolier", + "fur": "dark brown", + "mouth": "small grin", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8671, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "hat": "horns", + "background": "orange", + "mouth": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8672, + "metadata_dict": { + "hat": "irish boho", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "tie dye", + "background": "orange", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8673, + "metadata_dict": { + "earring": "gold hoop", + "fur": "dark brown", + "hat": "army hat", + "background": "yellow", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8674, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "dmt", + "mouth": "bored unshaven kazoo", + "hat": "bayc flipped brim", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8675, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "sailor shirt", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8676, + "metadata_dict": { + "mouth": "rage", + "background": "orange", + "fur": "dark brown", + "clothes": "lab coat", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8677, + "metadata_dict": { + "mouth": "discomfort", + "hat": "seaman's hat", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8678, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "background": "blue", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8679, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "blue", + "earring": "gold stud", + "eyes": "3d", + "fur": "dark brown", + "hat": "girl's hair short", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8680, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "brown", + "mouth": "dumbfounded", + "hat": "bayc flipped brim", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8681, + "metadata_dict": { + "clothes": "bandolier", + "background": "orange", + "mouth": "bored", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8682, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "fur": "black", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8683, + "metadata_dict": { + "hat": "girl's hair pink", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "brown", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8684, + "metadata_dict": { + "hat": "bandana blue", + "fur": "gray", + "earring": "gold hoop", + "mouth": "dumbfounded", + "background": "blue", + "eyes": "bored", + "clothes": "lab coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8685, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "lumberjack shirt", + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8686, + "metadata_dict": { + "hat": "trippy captain's hat", + "clothes": "sleeveless t", + "earring": "silver stud", + "fur": "red", + "eyes": "robot", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8687, + "metadata_dict": { + "fur": "brown", + "background": "purple", + "eyes": "bloodshot", + "mouth": "bored unshaven" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8688, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "background": "orange", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8689, + "metadata_dict": { + "eyes": "closed", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "black", + "mouth": "small grin", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8690, + "metadata_dict": { + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "mouth": "grin diamond grill", + "background": "aquamarine", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8691, + "metadata_dict": { + "hat": "fisherman's hat", + "mouth": "jovial", + "background": "aquamarine", + "eyes": "bloodshot", + "clothes": "lab coat", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8692, + "metadata_dict": { + "fur": "golden brown", + "clothes": "bayc t black", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8693, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "earring": "gold stud", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8694, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "fur": "tan", + "mouth": "grin diamond grill", + "background": "aquamarine", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8695, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "stuntman helmet", + "mouth": "bored cigarette", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8696, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "earring": "gold hoop", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8697, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "army green", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8698, + "metadata_dict": { + "fur": "cream", + "hat": "halo", + "background": "orange", + "clothes": "bone necklace", + "mouth": "bored cigar", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8699, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "black", + "clothes": "hip hop", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8700, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "mouth": "phoneme ooo", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8701, + "metadata_dict": { + "clothes": "bandolier", + "fur": "golden brown", + "mouth": "tongue out", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8702, + "metadata_dict": { + "fur": "tan", + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "hat": "stuntman helmet", + "background": "purple", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8703, + "metadata_dict": { + "background": "new punk blue", + "eyes": "cyborg", + "mouth": "grin", + "earring": "silver stud", + "clothes": "tie dye", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8704, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "fur": "brown", + "clothes": "sleeveless logo t", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8705, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "mouth": "phoneme vuh", + "fur": "noise", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8706, + "metadata_dict": { + "eyes": "coins", + "background": "orange", + "hat": "bayc flipped brim", + "fur": "brown", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8707, + "metadata_dict": { + "fur": "trippy", + "mouth": "phoneme ooo", + "hat": "beanie", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8708, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "party hat 1", + "background": "aquamarine", + "fur": "black", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8709, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "eyes": "robot", + "fur": "black", + "hat": "girl's hair short", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8710, + "metadata_dict": { + "mouth": "discomfort", + "fur": "golden brown", + "hat": "stuntman helmet", + "background": "aquamarine", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8711, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "clothes": "tie dye", + "earring": "gold stud", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8712, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "coins", + "mouth": "rage", + "fur": "dark brown", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8713, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "eyes": "bored", + "clothes": "sleeveless logo t", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8714, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "dmt", + "earring": "diamond stud", + "clothes": "cowboy shirt", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8715, + "metadata_dict": { + "hat": "safari", + "eyes": "robot", + "clothes": "leather jacket", + "fur": "black", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8716, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "hat": "fisherman's hat", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8717, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "scumbag", + "fur": "red", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8718, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "dark brown", + "hat": "cowboy hat", + "background": "purple", + "eyes": "cyborg", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8719, + "metadata_dict": { + "hat": "irish boho", + "clothes": "black holes t", + "mouth": "rage", + "eyes": "bored", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8720, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "fur": "cream", + "earring": "silver stud", + "hat": "short mohawk", + "mouth": "bored cigarette", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8721, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "orange", + "fur": "dark brown", + "clothes": "bone necklace", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8722, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "bayc t black", + "hat": "bowler", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8723, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "mouth": "bored unshaven cigarette", + "clothes": "bone necklace", + "hat": "commie hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8724, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "toga", + "fur": "cheetah", + "hat": "vietnam era helmet", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8725, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "black t", + "hat": "bowler", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8726, + "metadata_dict": { + "background": "new punk blue", + "earring": "silver stud", + "mouth": "bored pipe", + "eyes": "3d", + "fur": "dark brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8727, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "bored", + "background": "yellow", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8728, + "metadata_dict": { + "fur": "robot", + "background": "aquamarine", + "clothes": "toga", + "mouth": "bored", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8729, + "metadata_dict": { + "fur": "tan", + "mouth": "dumbfounded", + "hat": "beanie", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8730, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "background": "gray", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8731, + "metadata_dict": { + "eyes": "hypnotized", + "hat": "fez", + "background": "orange", + "clothes": "stunt jacket", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8732, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "angry", + "fur": "blue", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8733, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "zombie", + "hat": "prussian helmet", + "clothes": "biker vest", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8734, + "metadata_dict": { + "fur": "cream", + "clothes": "toga", + "earring": "silver stud", + "hat": "faux hawk", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8735, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "cream", + "hat": "sushi chef headband", + "background": "blue", + "mouth": "small grin", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8736, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "work vest", + "fur": "black", + "background": "orange", + "mouth": "small grin", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8737, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "background": "orange", + "mouth": "bored", + "clothes": "navy striped tee", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8738, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "fur": "pink", + "eyes": "bored", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8739, + "metadata_dict": { + "fur": "gray", + "eyes": "coins", + "mouth": "dumbfounded", + "clothes": "leather jacket", + "background": "yellow", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8740, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "guayabera", + "fur": "dark brown", + "eyes": "bored", + "hat": "faux hawk", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8741, + "metadata_dict": { + "mouth": "grin", + "hat": "spinner hat", + "fur": "dark brown", + "background": "gray", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8742, + "metadata_dict": { + "background": "blue", + "mouth": "bored", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8743, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "eyes": "scumbag", + "fur": "dark brown", + "clothes": "stunt jacket", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8744, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "biker vest", + "fur": "dark brown", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8745, + "metadata_dict": { + "hat": "sushi chef headband", + "fur": "gray", + "eyes": "coins", + "clothes": "work vest", + "mouth": "small grin", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8746, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black suit", + "background": "orange", + "eyes": "blue beams", + "fur": "cheetah", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8747, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "hat": "army hat", + "clothes": "prom dress", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8748, + "metadata_dict": { + "hat": "baby's bonnet", + "eyes": "sunglasses", + "clothes": "rainbow suspenders", + "earring": "diamond stud", + "mouth": "phoneme vuh", + "background": "orange", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8749, + "metadata_dict": { + "clothes": "black holes t", + "hat": "party hat 1", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8750, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "zombie", + "clothes": "sailor shirt", + "background": "blue", + "fur": "dark brown", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8751, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tweed suit", + "fur": "pink", + "eyes": "bloodshot", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8752, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "aquamarine", + "mouth": "bored pipe", + "fur": "dark brown", + "hat": "cowboy hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8753, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "red", + "background": "blue", + "clothes": "toga", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8754, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "zombie", + "fur": "gray", + "earring": "gold stud", + "hat": "fisherman's hat", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8755, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "golden brown", + "background": "aquamarine", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8756, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "background": "aquamarine", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8757, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "yellow", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8758, + "metadata_dict": { + "eyes": "x eyes", + "earring": "gold stud", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8759, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "space suit", + "earring": "silver hoop", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8760, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "work vest", + "mouth": "bored pipe", + "fur": "black", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8761, + "metadata_dict": { + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "mouth": "bored pizza", + "hat": "commie hat", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8762, + "metadata_dict": { + "mouth": "discomfort", + "hat": "sushi chef headband", + "earring": "silver stud", + "eyes": "robot", + "clothes": "prom dress", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8763, + "metadata_dict": { + "hat": "halo", + "earring": "silver stud", + "mouth": "phoneme vuh", + "fur": "black", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8764, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "coins", + "fur": "blue", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8765, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "fur": "red", + "background": "gray", + "hat": "bowler", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8766, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "background": "aquamarine", + "fur": "dark brown", + "hat": "fisherman's hat", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8767, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme l", + "hat": "baby's bonnet", + "eyes": "coins", + "earring": "gold hoop", + "clothes": "work vest", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8768, + "metadata_dict": { + "eyes": "heart", + "fur": "brown", + "clothes": "tweed suit", + "background": "orange", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8769, + "metadata_dict": { + "eyes": "coins", + "background": "blue", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8770, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather jacket", + "background": "purple", + "fur": "pink", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8771, + "metadata_dict": { + "background": "new punk blue", + "hat": "seaman's hat", + "fur": "dark brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8772, + "metadata_dict": { + "eyes": "blindfold", + "fur": "red", + "background": "orange", + "clothes": "stunt jacket", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8773, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "mouth": "grin", + "hat": "cowboy hat", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8774, + "metadata_dict": { + "eyes": "heart", + "earring": "gold hoop", + "hat": "fisherman's hat", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8775, + "metadata_dict": { + "background": "orange", + "clothes": "bayc t black", + "mouth": "bored", + "hat": "army hat", + "earring": "cross", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8776, + "metadata_dict": { + "clothes": "tweed suit", + "earring": "gold stud", + "fur": "dark brown", + "hat": "short mohawk", + "mouth": "bored cigarette", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8777, + "metadata_dict": { + "hat": "horns", + "mouth": "dumbfounded", + "background": "aquamarine", + "clothes": "prom dress", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8778, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8779, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8780, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme ooo", + "fur": "brown", + "clothes": "rainbow suspenders", + "hat": "army hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8781, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven cigarette", + "eyes": "coins", + "fur": "black", + "clothes": "admirals coat", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8782, + "metadata_dict": { + "hat": "king's crown", + "mouth": "rage", + "eyes": "bored", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8783, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "baby's bonnet", + "eyes": "3d", + "mouth": "bored unshaven cigarette", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8784, + "metadata_dict": { + "fur": "dark brown", + "clothes": "sleeveless logo t", + "background": "yellow", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8785, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "eyes": "bored", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8786, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "golden brown", + "background": "blue", + "clothes": "prom dress", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8787, + "metadata_dict": { + "mouth": "grin", + "earring": "diamond stud", + "eyes": "bloodshot", + "hat": "short mohawk", + "background": "gray", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8788, + "metadata_dict": { + "hat": "seaman's hat", + "eyes": "coins", + "fur": "pink", + "clothes": "guayabera", + "mouth": "bored pizza", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8789, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "mouth": "bored pipe", + "earring": "silver hoop", + "hat": "cowboy hat", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8790, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "grin", + "clothes": "prison jumpsuit", + "hat": "fez", + "fur": "red", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8791, + "metadata_dict": { + "clothes": "prison jumpsuit", + "eyes": "bloodshot", + "hat": "bunny ears", + "fur": "death bot", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8792, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown", + "hat": "beanie", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8793, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "dmt", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8794, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "hat": "girl's hair pink", + "background": "aquamarine", + "eyes": "robot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8795, + "metadata_dict": { + "clothes": "black holes t", + "hat": "seaman's hat", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8796, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "gray", + "hat": "bowler", + "mouth": "bored", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8797, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "clothes": "tuxedo tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8798, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "eyes": "bloodshot", + "mouth": "small grin", + "fur": "brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8799, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "cream", + "hat": "s&m hat", + "mouth": "bored pipe", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8800, + "metadata_dict": { + "eyes": "zombie", + "background": "aquamarine", + "hat": "vietnam era helmet", + "earring": "cross", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8801, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "bored pipe", + "clothes": "biker vest", + "background": "orange", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8802, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "background": "blue", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8803, + "metadata_dict": { + "fur": "pink", + "background": "gray", + "mouth": "bored", + "clothes": "service", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8804, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "work vest", + "background": "blue", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8805, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "eyes": "zombie", + "hat": "short mohawk", + "fur": "noise", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8806, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "dumbfounded", + "clothes": "tuxedo tee", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8807, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "gray", + "hat": "party hat 1", + "background": "aquamarine", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8808, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "dmt", + "mouth": "dumbfounded", + "background": "aquamarine", + "earring": "gold stud", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8809, + "metadata_dict": { + "clothes": "leather jacket", + "background": "orange", + "eyes": "bored", + "fur": "brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8810, + "metadata_dict": { + "clothes": "striped tee", + "fur": "golden brown", + "hat": "prussian helmet", + "eyes": "bloodshot", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8811, + "metadata_dict": { + "clothes": "black holes t", + "eyes": "zombie", + "earring": "diamond stud", + "background": "orange", + "hat": "bayc flipped brim", + "fur": "brown", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8812, + "metadata_dict": { + "fur": "black", + "clothes": "biker vest", + "hat": "army hat", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8813, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "sleeveless t", + "fur": "gray", + "background": "blue", + "earring": "silver hoop", + "hat": "bowler", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8814, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "gray", + "clothes": "black suit", + "earring": "silver stud", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8815, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "clothes": "blue dress", + "hat": "fez", + "mouth": "rage", + "earring": "silver hoop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8816, + "metadata_dict": { + "background": "gray", + "mouth": "bored unshaven", + "fur": "pink", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8817, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored party horn", + "hat": "spinner hat", + "background": "orange", + "fur": "solid gold", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8818, + "metadata_dict": { + "hat": "laurel wreath", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8819, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "phoneme vuh", + "background": "aquamarine", + "clothes": "toga", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8820, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "eyes": "blindfold", + "fur": "gray", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8821, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "black holes t", + "hat": "party hat 1", + "fur": "white", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8822, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "hat": "girl's hair pink", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8823, + "metadata_dict": { + "eyes": "closed", + "clothes": "bayc t red", + "background": "yellow", + "mouth": "bored cigarette", + "hat": "halo", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8824, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "background": "aquamarine", + "fur": "solid gold", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8825, + "metadata_dict": { + "eyes": "coins", + "hat": "king's crown", + "mouth": "bored unshaven pipe", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8826, + "metadata_dict": { + "fur": "tan", + "eyes": "holographic", + "clothes": "bandolier", + "mouth": "grin", + "hat": "baby's bonnet", + "earring": "silver stud", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8827, + "metadata_dict": { + "fur": "trippy", + "hat": "baby's bonnet", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "stunt jacket", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8828, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "earring": "silver stud", + "eyes": "bored", + "mouth": "bored", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8829, + "metadata_dict": { + "clothes": "striped tee", + "hat": "seaman's hat", + "fur": "red", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8830, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "earring": "diamond stud", + "fur": "black", + "eyes": "bored", + "mouth": "bored", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8831, + "metadata_dict": { + "mouth": "phoneme wah", + "clothes": "striped tee", + "eyes": "bored", + "background": "gray", + "hat": "beanie", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8832, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "commie hat", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8833, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "dark brown", + "background": "purple", + "hat": "commie hat", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8834, + "metadata_dict": { + "eyes": "coins", + "hat": "bayc flipped brim", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8835, + "metadata_dict": { + "mouth": "rage", + "fur": "black", + "clothes": "bayc t black", + "hat": "faux hawk", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8836, + "metadata_dict": { + "eyes": "3d", + "fur": "brown", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8837, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "eyes": "bloodshot", + "hat": "cowboy hat", + "clothes": "navy striped tee", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8838, + "metadata_dict": { + "fur": "gray", + "eyes": "robot", + "background": "orange", + "clothes": "bayc t black", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8839, + "metadata_dict": { + "clothes": "sleeveless logo t", + "background": "purple", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8840, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "eyes": "bored", + "hat": "cowboy hat", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8841, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "red", + "clothes": "biker vest", + "earring": "silver hoop", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8842, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven bubblegum", + "earring": "silver stud", + "eyes": "bored", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8843, + "metadata_dict": { + "clothes": "black holes t", + "earring": "gold hoop", + "fur": "red", + "background": "blue", + "eyes": "bloodshot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8844, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "background": "blue", + "clothes": "toga", + "mouth": "bored unshaven cigarette", + "hat": "bowler", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8845, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "eyes": "zombie", + "fur": "tan", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8846, + "metadata_dict": { + "fur": "gray", + "earring": "gold hoop", + "hat": "stuntman helmet", + "background": "aquamarine", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8847, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "bored", + "hat": "commie hat", + "eyes": "sunglasses", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8848, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "background": "blue", + "clothes": "cowboy shirt", + "fur": "brown", + "earring": "cross", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8849, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "clothes": "sailor shirt", + "fur": "black", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8850, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "fur": "dark brown", + "hat": "commie hat", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8851, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "dumbfounded", + "eyes": "3d", + "hat": "fisherman's hat", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8852, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "work vest", + "fur": "black", + "eyes": "3d", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8853, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "eyes": "bloodshot", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8854, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "bayc t red", + "mouth": "bored party horn", + "background": "aquamarine", + "hat": "faux hawk", + "earring": "cross", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8855, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "golden brown", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8856, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "clothes": "black t", + "fur": "black", + "mouth": "bored unshaven kazoo", + "earring": "silver hoop", + "hat": "girl's hair short" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8857, + "metadata_dict": { + "clothes": "space suit", + "eyes": "3d", + "background": "orange", + "mouth": "small grin", + "hat": "fisherman's hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8858, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "clothes": "work vest", + "fur": "red", + "eyes": "sleepy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8859, + "metadata_dict": { + "eyes": "coins", + "background": "aquamarine", + "clothes": "smoking jacket", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8860, + "metadata_dict": { + "eyes": "blindfold", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "small grin", + "clothes": "bayc t black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8861, + "metadata_dict": { + "clothes": "black t", + "mouth": "phoneme vuh", + "hat": "bayc flipped brim", + "fur": "solid gold", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8862, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "clothes": "rainbow suspenders", + "fur": "brown", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8863, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8864, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "eyes": "coins", + "clothes": "black t", + "fur": "dark brown", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8865, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "fur": "golden brown", + "background": "aquamarine", + "hat": "cowboy hat", + "earring": "silver hoop", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8866, + "metadata_dict": { + "eyes": "closed", + "clothes": "leather punk jacket", + "hat": "laurel wreath", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8867, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "black", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8868, + "metadata_dict": { + "clothes": "wool turtleneck", + "fur": "black", + "eyes": "bored", + "hat": "army hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8869, + "metadata_dict": { + "eyes": "holographic", + "background": "aquamarine", + "fur": "dark brown", + "hat": "commie hat", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8870, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "hat": "fez", + "clothes": "smoking jacket", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8871, + "metadata_dict": { + "eyes": "zombie", + "clothes": "cowboy shirt", + "background": "blue", + "fur": "dark brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8872, + "metadata_dict": { + "hat": "irish boho", + "mouth": "dumbfounded", + "clothes": "smoking jacket", + "fur": "brown", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8873, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "admirals coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8874, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven pipe", + "clothes": "cowboy shirt", + "eyes": "3d", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8875, + "metadata_dict": { + "mouth": "rage", + "clothes": "work vest", + "background": "aquamarine", + "hat": "cowboy hat", + "eyes": "crazy", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8876, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "clothes": "lumberjack shirt", + "fur": "brown", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8877, + "metadata_dict": { + "background": "yellow", + "mouth": "bored unshaven", + "fur": "dark brown", + "eyes": "blue beams" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8878, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "black holes t", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "robot", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8879, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "striped tee", + "eyes": "blindfold", + "mouth": "grin", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8880, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "gray", + "hat": "party hat 1", + "fur": "brown", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8881, + "metadata_dict": { + "eyes": "closed", + "hat": "baby's bonnet", + "mouth": "dumbfounded", + "fur": "red", + "earring": "silver hoop", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8882, + "metadata_dict": { + "fur": "dmt", + "earring": "gold hoop", + "clothes": "sailor shirt", + "background": "aquamarine", + "eyes": "bloodshot", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8883, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "mouth": "tongue out", + "clothes": "prom dress", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8884, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "fur": "black", + "clothes": "lab coat", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8885, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "hat": "fez", + "mouth": "rage", + "clothes": "smoking jacket", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8886, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "bored", + "mouth": "grin multicolored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8887, + "metadata_dict": { + "fur": "gray", + "mouth": "bored unshaven", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8888, + "metadata_dict": { + "earring": "silver stud", + "mouth": "jovial", + "hat": "spinner hat", + "background": "yellow", + "fur": "white", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8889, + "metadata_dict": { + "mouth": "grin multicolored", + "earring": "silver stud", + "background": "blue", + "hat": "army hat", + "fur": "cheetah", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8890, + "metadata_dict": { + "clothes": "space suit", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "brown", + "hat": "commie hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8891, + "metadata_dict": { + "mouth": "bored dagger", + "hat": "irish boho", + "fur": "pink", + "clothes": "lab coat", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8892, + "metadata_dict": { + "hat": "s&m hat", + "background": "orange", + "fur": "dark brown", + "clothes": "lab coat", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8893, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "rainbow suspenders", + "hat": "fez", + "eyes": "bloodshot", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8894, + "metadata_dict": { + "clothes": "bayc t red", + "earring": "gold hoop", + "fur": "black", + "eyes": "bloodshot", + "hat": "cowboy hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8895, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "hat": "stuntman helmet", + "background": "yellow", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8896, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "black holes t", + "hat": "bowler", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8897, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "mouth": "jovial", + "fur": "brown", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8898, + "metadata_dict": { + "eyes": "scumbag", + "fur": "dark brown", + "clothes": "tuxedo tee", + "hat": "short mohawk", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8899, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "3d", + "earring": "silver hoop", + "clothes": "toga", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8900, + "metadata_dict": { + "clothes": "black holes t", + "background": "gray", + "fur": "brown", + "hat": "girl's hair pink", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8901, + "metadata_dict": { + "mouth": "grin", + "eyes": "3d", + "background": "orange", + "hat": "bunny ears", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8902, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "mouth": "bored unshaven", + "clothes": "rainbow suspenders", + "fur": "black", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8903, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "hat": "short mohawk", + "eyes": "bored", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8904, + "metadata_dict": { + "clothes": "striped tee", + "hat": "s&m hat", + "mouth": "grin diamond grill", + "fur": "pink", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8905, + "metadata_dict": { + "clothes": "wool turtleneck", + "earring": "diamond stud", + "eyes": "bored", + "hat": "girl's hair short", + "background": "yellow", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8906, + "metadata_dict": { + "fur": "tan", + "background": "blue", + "eyes": "bored", + "hat": "girl's hair short", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8907, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "closed", + "background": "purple", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8908, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "phoneme ooo", + "earring": "gold hoop", + "fur": "dark brown", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8909, + "metadata_dict": { + "mouth": "tongue out", + "eyes": "zombie", + "clothes": "black t", + "earring": "silver stud", + "background": "blue", + "hat": "girl's hair short", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8910, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "earring": "gold hoop", + "clothes": "black t", + "background": "aquamarine", + "hat": "cowboy hat", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8911, + "metadata_dict": { + "fur": "gray", + "background": "aquamarine", + "mouth": "bored cigarette", + "clothes": "service", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8912, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "irish boho", + "fur": "black", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8913, + "metadata_dict": { + "earring": "silver stud", + "hat": "bayc hat red", + "background": "gray", + "clothes": "bone necklace", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8914, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "guayabera", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8915, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored dagger", + "clothes": "prom dress", + "fur": "brown", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8916, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "bandolier", + "mouth": "bored bubblegum", + "fur": "black", + "hat": "vietnam era helmet", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8917, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "leather punk jacket", + "fur": "pink", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8918, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "tan", + "clothes": "striped tee", + "mouth": "grin diamond grill", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8919, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "bayc t red", + "mouth": "phoneme ooo", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "faux hawk", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8920, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "dumbfounded", + "fur": "black", + "background": "yellow", + "hat": "halo", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8921, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven pizza", + "background": "orange", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8922, + "metadata_dict": { + "fur": "golden brown", + "clothes": "blue dress", + "mouth": "small grin", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8923, + "metadata_dict": { + "clothes": "leather jacket", + "mouth": "bored bubblegum", + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8924, + "metadata_dict": { + "hat": "horns", + "fur": "red", + "background": "orange", + "clothes": "bayc t black", + "mouth": "phoneme wah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8925, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "clothes": "tanktop", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8926, + "metadata_dict": { + "background": "new punk blue", + "hat": "bandana blue", + "mouth": "phoneme vuh", + "fur": "black", + "eyes": "3d", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8927, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "background": "gray", + "fur": "black", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8928, + "metadata_dict": { + "mouth": "grin", + "background": "yellow", + "fur": "black", + "hat": "cowboy hat", + "earring": "silver hoop", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8929, + "metadata_dict": { + "hat": "laurel wreath", + "eyes": "coins", + "clothes": "lab coat", + "fur": "black", + "mouth": "bored unshaven cigar", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8930, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "fur": "noise", + "mouth": "bored pizza", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8931, + "metadata_dict": { + "eyes": "bloodshot", + "mouth": "bored unshaven cigar", + "hat": "bowler", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8932, + "metadata_dict": { + "eyes": "robot", + "clothes": "leather jacket", + "fur": "pink", + "hat": "fisherman's hat", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8933, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "hat": "sushi chef headband", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8934, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "sad", + "hat": "fez", + "fur": "black", + "background": "yellow", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8935, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "hat": "irish boho", + "background": "blue", + "eyes": "bloodshot", + "earring": "silver hoop", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8936, + "metadata_dict": { + "eyes": "blindfold", + "fur": "golden brown", + "hat": "cowboy hat", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8937, + "metadata_dict": { + "eyes": "holographic", + "mouth": "bored unshaven bubblegum", + "background": "orange", + "fur": "dark brown", + "hat": "cowboy hat", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8938, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "black", + "hat": "army hat", + "clothes": "toga", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8939, + "metadata_dict": { + "background": "blue", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "tuxedo tee", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8940, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "hypnotized", + "fur": "brown", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8941, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven cigarette", + "clothes": "biker vest", + "hat": "cowboy hat", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8942, + "metadata_dict": { + "eyes": "holographic", + "hat": "seaman's hat", + "fur": "gray", + "mouth": "bored pipe", + "background": "gray", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8943, + "metadata_dict": { + "background": "new punk blue", + "hat": "irish boho", + "mouth": "grin", + "fur": "pink", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8944, + "metadata_dict": { + "hat": "prussian helmet", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "clothes": "toga", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8945, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "clothes": "toga", + "hat": "fisherman's hat", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8946, + "metadata_dict": { + "hat": "girl's hair pink", + "fur": "brown", + "mouth": "bored", + "eyes": "crazy", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8947, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "jovial", + "hat": "beanie", + "background": "orange", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8948, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "earring": "diamond stud", + "background": "orange", + "fur": "brown", + "hat": "commie hat", + "clothes": "navy striped tee", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8949, + "metadata_dict": { + "eyes": "scumbag", + "fur": "cream", + "mouth": "bored unshaven bubblegum", + "background": "yellow", + "clothes": "stunt jacket", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8950, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "background": "aquamarine", + "eyes": "3d", + "fur": "cheetah", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8951, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "gray", + "mouth": "rage", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8952, + "metadata_dict": { + "background": "aquamarine", + "hat": "commie hat", + "mouth": "bored", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8953, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "striped tee", + "fur": "cream", + "eyes": "coins", + "background": "orange", + "mouth": "bored pizza", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8954, + "metadata_dict": { + "eyes": "holographic", + "clothes": "sleeveless t", + "fur": "dark brown", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8955, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "coins", + "hat": "prussian helmet", + "clothes": "black t", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8956, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "hat": "cowboy hat", + "mouth": "bored", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8957, + "metadata_dict": { + "eyes": "heart", + "clothes": "bandolier", + "mouth": "phoneme ooo", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8958, + "metadata_dict": { + "fur": "tan", + "mouth": "bored party horn", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "background": "yellow", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8959, + "metadata_dict": { + "eyes": "zombie", + "hat": "girl's hair pink", + "fur": "red", + "clothes": "toga", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8960, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "pink", + "eyes": "bloodshot", + "hat": "cowboy hat", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8961, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "hypnotized", + "background": "orange", + "fur": "dark brown", + "clothes": "guayabera", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8962, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "sleeveless logo t", + "mouth": "dumbfounded", + "background": "blue", + "fur": "brown", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8963, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored dagger", + "hat": "seaman's hat", + "clothes": "smoking jacket", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8964, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tweed suit", + "hat": "fez", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "noise" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8965, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "striped tee", + "background": "aquamarine", + "fur": "red", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8966, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bloodshot", + "hat": "short mohawk", + "mouth": "bored", + "clothes": "hip hop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8967, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "seaman's hat", + "earring": "diamond stud", + "background": "blue", + "fur": "dark brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8968, + "metadata_dict": { + "eyes": "heart", + "earring": "gold hoop", + "fur": "red", + "hat": "short mohawk", + "clothes": "sleeveless logo t", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8969, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "clothes": "black holes t", + "hat": "spinner hat", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8970, + "metadata_dict": { + "eyes": "blindfold", + "earring": "silver stud", + "hat": "fisherman's hat", + "clothes": "pimp coat", + "background": "yellow", + "mouth": "bored cigarette", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8971, + "metadata_dict": { + "clothes": "black t", + "background": "aquamarine", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8972, + "metadata_dict": { + "mouth": "discomfort", + "hat": "horns", + "earring": "diamond stud", + "fur": "black", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8973, + "metadata_dict": { + "hat": "sushi chef headband", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8974, + "metadata_dict": { + "fur": "golden brown", + "mouth": "jovial", + "clothes": "tie dye", + "background": "orange", + "hat": "faux hawk", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8975, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "fez", + "clothes": "leather jacket", + "background": "blue", + "eyes": "robot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8976, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "eyes": "x eyes", + "clothes": "tweed suit", + "earring": "silver stud", + "background": "yellow", + "hat": "safari", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8977, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "fur": "trippy", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8978, + "metadata_dict": { + "eyes": "closed", + "hat": "prussian helmet", + "clothes": "tanktop", + "fur": "dark brown", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8979, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "coins", + "background": "yellow", + "fur": "death bot", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8980, + "metadata_dict": { + "eyes": "heart", + "mouth": "grin", + "fur": "red", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8981, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "cream", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8982, + "metadata_dict": { + "eyes": "eyepatch", + "background": "gray", + "fur": "golden brown", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigarette", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8983, + "metadata_dict": { + "background": "new punk blue", + "fur": "noise", + "mouth": "bored", + "hat": "halo", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8984, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "lumberjack shirt", + "fur": "golden brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8985, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "short mohawk", + "background": "gray", + "eyes": "sleepy", + "fur": "white", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8986, + "metadata_dict": { + "fur": "golden brown", + "clothes": "cowboy shirt", + "eyes": "blue beams", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8987, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "dmt", + "earring": "silver stud", + "background": "orange", + "eyes": "bored", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8988, + "metadata_dict": { + "eyes": "coins", + "hat": "prussian helmet", + "fur": "gray", + "background": "orange", + "clothes": "bayc t black", + "earring": "silver hoop", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8989, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "bayc t red", + "mouth": "bored dagger", + "fur": "pink", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8990, + "metadata_dict": { + "background": "gray", + "clothes": "biker vest", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8991, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "black holes t", + "eyes": "bored", + "hat": "vietnam era helmet", + "earring": "cross", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8992, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "gray", + "clothes": "black t", + "background": "orange", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8993, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "s&m hat", + "earring": "diamond stud", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8994, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "hypnotized", + "background": "orange", + "fur": "dark brown", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8995, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "clothes": "smoking jacket", + "background": "orange", + "hat": "cowboy hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8996, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "blue", + "clothes": "biker vest", + "eyes": "bored", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8997, + "metadata_dict": { + "hat": "horns", + "eyes": "zombie", + "clothes": "prison jumpsuit", + "mouth": "jovial", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8998, + "metadata_dict": { + "fur": "cream", + "hat": "horns", + "mouth": "bored unshaven party horn", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8999, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme ooo", + "earring": "silver stud", + "fur": "pink", + "hat": "bowler", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9000, + "metadata_dict": { + "fur": "tan", + "hat": "horns", + "mouth": "grin", + "eyes": "coins", + "clothes": "leather jacket", + "earring": "gold stud", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9001, + "metadata_dict": { + "mouth": "bored kazoo", + "clothes": "black t", + "background": "aquamarine", + "eyes": "robot", + "fur": "red", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9002, + "metadata_dict": { + "fur": "brown", + "clothes": "work vest", + "earring": "gold stud", + "background": "gray", + "hat": "vietnam era helmet", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9003, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "gold hoop", + "clothes": "prison jumpsuit", + "fur": "noise", + "mouth": "bored", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9004, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tweed suit", + "hat": "fez", + "mouth": "rage", + "eyes": "robot", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9005, + "metadata_dict": { + "clothes": "black t", + "mouth": "bored", + "fur": "robot", + "eyes": "sunglasses", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9006, + "metadata_dict": { + "eyes": "closed", + "mouth": "rage", + "clothes": "tie dye", + "background": "orange", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9007, + "metadata_dict": { + "hat": "s&m hat", + "eyes": "bored", + "fur": "brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9008, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "golden brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9009, + "metadata_dict": { + "background": "new punk blue", + "mouth": "rage", + "hat": "army hat", + "fur": "brown", + "clothes": "navy striped tee", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9010, + "metadata_dict": { + "hat": "girl's hair pink", + "clothes": "tie dye", + "eyes": "bored", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9011, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "background": "orange", + "fur": "cheetah", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9012, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "eyes": "3d", + "clothes": "toga", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9013, + "metadata_dict": { + "hat": "irish boho", + "clothes": "sailor shirt", + "fur": "black", + "mouth": "bored bubblegum", + "background": "orange", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9014, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "clothes": "striped tee", + "background": "blue", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9015, + "metadata_dict": { + "hat": "fez", + "background": "blue", + "mouth": "tongue out", + "fur": "death bot", + "eyes": "crazy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9016, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "blindfold", + "mouth": "bored bubblegum", + "background": "orange", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9017, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "striped tee", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9018, + "metadata_dict": { + "fur": "red", + "clothes": "smoking jacket", + "earring": "silver hoop", + "background": "yellow", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9019, + "metadata_dict": { + "hat": "horns", + "background": "orange", + "eyes": "bloodshot", + "fur": "dark brown", + "mouth": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9020, + "metadata_dict": { + "fur": "black", + "background": "orange", + "clothes": "tuxedo tee", + "hat": "fisherman's hat", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9021, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "orange", + "hat": "army hat", + "mouth": "bored", + "eyes": "crazy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9022, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "closed", + "earring": "gold hoop", + "background": "blue", + "clothes": "toga", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9023, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "noise", + "hat": "short mohawk", + "earring": "silver hoop", + "clothes": "bayc t black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9024, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "background": "orange", + "eyes": "bored", + "clothes": "stunt jacket", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9025, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "rainbow suspenders", + "background": "blue", + "eyes": "bloodshot", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9026, + "metadata_dict": { + "eyes": "x eyes", + "fur": "noise", + "hat": "safari", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9027, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "hat": "spinner hat", + "fur": "white", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9028, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "tan", + "hat": "sushi chef headband", + "mouth": "bored party horn", + "background": "blue", + "clothes": "smoking jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9029, + "metadata_dict": { + "eyes": "blindfold", + "background": "gray", + "clothes": "sleeveless logo t", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9030, + "metadata_dict": { + "eyes": "zombie", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "toga", + "background": "purple", + "mouth": "bored cigarette", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9031, + "metadata_dict": { + "clothes": "leather punk jacket", + "earring": "silver stud", + "background": "blue", + "hat": "spinner hat", + "fur": "cheetah", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9032, + "metadata_dict": { + "eyes": "blindfold", + "hat": "seaman's hat", + "earring": "silver stud", + "background": "blue", + "mouth": "bored", + "fur": "white", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9033, + "metadata_dict": { + "eyes": "blindfold", + "fur": "gray", + "background": "blue", + "hat": "beanie", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9034, + "metadata_dict": { + "fur": "dmt", + "mouth": "jovial", + "eyes": "bored", + "hat": "army hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9035, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "black", + "hat": "bayc flipped brim", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9036, + "metadata_dict": { + "fur": "cream", + "eyes": "bored", + "hat": "army hat", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9037, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored party horn", + "fur": "black", + "eyes": "bloodshot", + "hat": "bunny ears", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9038, + "metadata_dict": { + "mouth": "bored dagger", + "clothes": "black holes t", + "fur": "pink", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9039, + "metadata_dict": { + "eyes": "zombie", + "clothes": "rainbow suspenders", + "mouth": "grin diamond grill", + "background": "blue", + "fur": "dark brown", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9040, + "metadata_dict": { + "hat": "seaman's hat", + "earring": "gold hoop", + "clothes": "work vest", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9041, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "clothes": "blue dress", + "mouth": "bored party horn", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9042, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black t", + "fur": "noise", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9043, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "clothes": "bayc t black", + "eyes": "bored", + "background": "gray", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9044, + "metadata_dict": { + "background": "new punk blue", + "hat": "spinner hat", + "fur": "pink", + "eyes": "bloodshot", + "clothes": "tanktop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9045, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "grin", + "fur": "pink", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9046, + "metadata_dict": { + "fur": "golden brown", + "mouth": "grin", + "background": "aquamarine", + "hat": "bayc flipped brim", + "clothes": "prom dress", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9047, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "hat": "stuntman helmet", + "fur": "red", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9048, + "metadata_dict": { + "hat": "irish boho", + "earring": "silver stud", + "clothes": "tuxedo tee", + "background": "yellow", + "mouth": "bored", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9049, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "hypnotized", + "fur": "cheetah", + "mouth": "rage", + "background": "gray", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9050, + "metadata_dict": { + "hat": "party hat 1", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9051, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "brown", + "hat": "commie hat", + "eyes": "bored", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9052, + "metadata_dict": { + "eyes": "closed", + "earring": "cross", + "fur": "noise", + "clothes": "bayc t black", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9053, + "metadata_dict": { + "eyes": "closed", + "clothes": "prison jumpsuit", + "background": "aquamarine", + "fur": "dark brown", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9054, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "cream", + "mouth": "rage", + "earring": "gold stud", + "background": "orange", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9055, + "metadata_dict": { + "eyes": "closed", + "mouth": "dumbfounded", + "hat": "army hat", + "background": "gray", + "fur": "white", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9056, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "background": "orange", + "eyes": "bloodshot", + "earring": "silver hoop", + "hat": "safari", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9057, + "metadata_dict": { + "mouth": "dumbfounded", + "eyes": "3d", + "clothes": "pimp coat", + "hat": "commie hat", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9058, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "striped tee", + "hat": "prussian helmet", + "mouth": "bored", + "fur": "white", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9059, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "dumbfounded", + "earring": "gold stud", + "hat": "fisherman's hat", + "background": "gray", + "clothes": "guayabera", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9060, + "metadata_dict": { + "earring": "gold hoop", + "background": "blue", + "clothes": "lab coat", + "mouth": "bored", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9061, + "metadata_dict": { + "clothes": "guayabera", + "fur": "cheetah", + "eyes": "sleepy", + "hat": "commie hat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9062, + "metadata_dict": { + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9063, + "metadata_dict": { + "clothes": "blue dress", + "fur": "dark brown", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9064, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "phoneme ooo", + "hat": "cowboy hat", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9065, + "metadata_dict": { + "eyes": "coins", + "hat": "stuntman helmet", + "earring": "silver stud", + "fur": "brown", + "mouth": "phoneme wah", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9066, + "metadata_dict": { + "clothes": "striped tee", + "hat": "girl's hair pink", + "earring": "gold stud", + "background": "orange", + "mouth": "bored", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9067, + "metadata_dict": { + "eyes": "x eyes", + "fur": "brown", + "hat": "army hat", + "background": "gray", + "mouth": "bored cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9068, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "girl's hair pink", + "background": "aquamarine", + "clothes": "leather jacket", + "earring": "gold stud", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9069, + "metadata_dict": { + "hat": "girl's hair pink", + "earring": "silver stud", + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "background": "army green", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9070, + "metadata_dict": { + "clothes": "space suit", + "hat": "fez", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9071, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "hat": "stuntman helmet", + "clothes": "work vest", + "background": "yellow", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9072, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "eyes": "bored", + "clothes": "tanktop", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9073, + "metadata_dict": { + "eyes": "closed", + "background": "aquamarine", + "hat": "short mohawk", + "clothes": "bayc t black", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9074, + "metadata_dict": { + "fur": "golden brown", + "mouth": "phoneme vuh", + "background": "orange", + "eyes": "bloodshot", + "hat": "cowboy hat", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9075, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "fur": "tan", + "background": "aquamarine", + "eyes": "bored", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9076, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "stuntman helmet", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9077, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "beanie", + "eyes": "sleepy", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9078, + "metadata_dict": { + "mouth": "grin", + "clothes": "cowboy shirt", + "background": "orange", + "fur": "dark brown", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9079, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "dark brown", + "mouth": "dumbfounded" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9080, + "metadata_dict": { + "background": "aquamarine", + "mouth": "jovial", + "hat": "spinner hat", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9081, + "metadata_dict": { + "fur": "cream", + "eyes": "hypnotized", + "mouth": "grin", + "clothes": "work vest", + "background": "orange", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9082, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "gold hoop", + "fur": "noise", + "background": "yellow", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9083, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "hat": "bowler", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9084, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "background": "purple", + "clothes": "biker vest", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9085, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "grin", + "fur": "dmt", + "hat": "seaman's hat", + "eyes": "robot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9086, + "metadata_dict": { + "fur": "golden brown", + "hat": "girl's hair pink", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9087, + "metadata_dict": { + "hat": "horns", + "mouth": "bored unshaven party horn", + "background": "orange", + "fur": "dark brown", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9088, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 1", + "fur": "dark brown", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9089, + "metadata_dict": { + "fur": "trippy", + "background": "orange", + "eyes": "bored", + "hat": "fisherman's hat", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9090, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "jovial", + "background": "blue", + "eyes": "bored", + "clothes": "bone necklace", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9091, + "metadata_dict": { + "background": "yellow", + "fur": "black", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9092, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "black", + "eyes": "robot", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9093, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "dmt", + "mouth": "bored bubblegum", + "clothes": "tanktop", + "earring": "silver hoop", + "background": "gray", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9094, + "metadata_dict": { + "clothes": "leather punk jacket", + "earring": "silver stud", + "mouth": "jovial", + "eyes": "blue beams", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9095, + "metadata_dict": { + "fur": "gray", + "clothes": "sailor shirt", + "background": "aquamarine", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9096, + "metadata_dict": { + "mouth": "grin", + "clothes": "tweed suit", + "hat": "fez", + "background": "aquamarine", + "earring": "gold stud", + "fur": "pink", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9097, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "gray", + "eyes": "coins", + "background": "blue", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9098, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "trippy", + "background": "blue", + "hat": "halo", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9099, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "cowboy shirt", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9100, + "metadata_dict": { + "eyes": "zombie", + "mouth": "jovial", + "background": "aquamarine", + "clothes": "tuxedo tee", + "hat": "ww2 pilot helm", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9101, + "metadata_dict": { + "eyes": "heart", + "fur": "tan", + "background": "blue", + "mouth": "bored bubblegum", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9102, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "eyes": "bored", + "background": "gray", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9103, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "sushi chef headband", + "clothes": "cowboy shirt", + "eyes": "bloodshot", + "background": "yellow", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9104, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "purple", + "eyes": "bloodshot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9105, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "clothes": "striped tee", + "fur": "golden brown", + "earring": "silver stud", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9106, + "metadata_dict": { + "eyes": "scumbag", + "hat": "irish boho", + "background": "blue", + "fur": "brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9107, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "golden brown", + "eyes": "bloodshot", + "hat": "ww2 pilot helm", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9108, + "metadata_dict": { + "clothes": "prison jumpsuit", + "background": "aquamarine", + "eyes": "sleepy", + "mouth": "bored", + "fur": "white", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9109, + "metadata_dict": { + "hat": "fez", + "mouth": "jovial", + "background": "blue", + "fur": "black", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9110, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "background": "yellow", + "fur": "tan", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9111, + "metadata_dict": { + "background": "gray", + "clothes": "blue dress", + "mouth": "bored unshaven cigarette", + "eyes": "bored", + "fur": "brown", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9112, + "metadata_dict": { + "clothes": "striped tee", + "hat": "irish boho", + "fur": "gray", + "mouth": "dumbfounded", + "eyes": "3d", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9113, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "tan", + "earring": "gold stud" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9114, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven bubblegum", + "hat": "fez", + "clothes": "biker vest", + "fur": "dark brown", + "background": "orange", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9115, + "metadata_dict": { + "eyes": "holographic", + "hat": "s&m hat", + "mouth": "grin multicolored", + "earring": "gold stud", + "fur": "dark brown", + "background": "purple", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9116, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "3d", + "clothes": "sleeveless logo t", + "hat": "bowler", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9117, + "metadata_dict": { + "background": "blue", + "mouth": "bored bubblegum", + "fur": "dark brown", + "hat": "commie hat", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9118, + "metadata_dict": { + "fur": "tan", + "mouth": "grin multicolored", + "hat": "sea captain's hat", + "background": "orange", + "eyes": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9119, + "metadata_dict": { + "mouth": "bored cigarette", + "eyes": "robot", + "clothes": "bayc t black", + "background": "gray", + "hat": "commie hat", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9120, + "metadata_dict": { + "eyes": "scumbag", + "earring": "diamond stud", + "mouth": "bored party horn", + "clothes": "bone necklace", + "fur": "brown", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9121, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "brown", + "hat": "prussian helmet", + "mouth": "grin diamond grill", + "eyes": "3d", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9122, + "metadata_dict": { + "fur": "pink", + "eyes": "3d", + "hat": "beanie", + "mouth": "phoneme wah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9123, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "clothes": "sleeveless logo t", + "eyes": "robot", + "background": "orange", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9124, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "gray", + "earring": "silver hoop", + "clothes": "prom dress", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9125, + "metadata_dict": { + "background": "new punk blue", + "fur": "cream", + "hat": "prussian helmet", + "clothes": "sailor shirt", + "eyes": "bloodshot", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9126, + "metadata_dict": { + "fur": "brown", + "hat": "beanie", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9127, + "metadata_dict": { + "background": "yellow", + "clothes": "work vest", + "eyes": "3d", + "fur": "brown", + "hat": "beanie", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9128, + "metadata_dict": { + "eyes": "hypnotized", + "clothes": "blue dress", + "hat": "fez", + "earring": "silver stud", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9129, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "eyes": "coins", + "background": "gray", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9130, + "metadata_dict": { + "clothes": "striped tee", + "fur": "tan", + "hat": "fez", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9131, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "pink", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9132, + "metadata_dict": { + "fur": "tan", + "clothes": "black t", + "background": "orange", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9133, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "black", + "background": "gray", + "hat": "bunny ears", + "clothes": "bone tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9134, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "dmt", + "background": "aquamarine", + "eyes": "3d", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9135, + "metadata_dict": { + "fur": "dmt", + "earring": "gold hoop", + "mouth": "grin diamond grill", + "eyes": "3d", + "clothes": "toga", + "hat": "bayc hat red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9136, + "metadata_dict": { + "fur": "cream", + "earring": "silver stud", + "background": "blue", + "eyes": "bored", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9137, + "metadata_dict": { + "eyes": "zombie", + "background": "orange", + "fur": "dark brown", + "hat": "beanie", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9138, + "metadata_dict": { + "clothes": "space suit", + "mouth": "phoneme ooo", + "eyes": "coins", + "background": "orange", + "fur": "dark brown", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9139, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "fur": "tan", + "mouth": "phoneme vuh", + "hat": "safari", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9140, + "metadata_dict": { + "hat": "sushi chef headband", + "mouth": "jovial", + "eyes": "bored", + "background": "purple", + "fur": "white", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9141, + "metadata_dict": { + "mouth": "rage", + "earring": "silver stud", + "fur": "black", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9142, + "metadata_dict": { + "fur": "tan", + "hat": "sushi chef headband", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9143, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cheetah", + "eyes": "crazy", + "hat": "police motorcycle helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9144, + "metadata_dict": { + "earring": "diamond stud", + "fur": "brown", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9145, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "fur": "golden brown", + "hat": "baby's bonnet", + "earring": "gold hoop", + "eyes": "robot", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9146, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "fur": "dark brown", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9147, + "metadata_dict": { + "fur": "tan", + "mouth": "jovial", + "eyes": "bloodshot", + "clothes": "tanktop", + "background": "yellow", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9148, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "blue", + "eyes": "bored", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9149, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "blindfold", + "hat": "seaman's hat", + "earring": "gold hoop", + "fur": "black", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9150, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "eyes": "bloodshot", + "fur": "blue", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9151, + "metadata_dict": { + "clothes": "sleeveless t", + "hat": "bayc flipped brim", + "background": "gray", + "mouth": "bored", + "eyes": "angry", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9152, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "tanktop", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9153, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9154, + "metadata_dict": { + "fur": "blue", + "mouth": "dumbfounded", + "earring": "gold stud", + "clothes": "tanktop", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9155, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "blue dress", + "eyes": "zombie", + "fur": "pink", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9156, + "metadata_dict": { + "mouth": "rage", + "clothes": "work vest", + "fur": "black", + "background": "orange", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9157, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t red", + "mouth": "bored kazoo", + "fur": "cream", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9158, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "blindfold", + "fur": "golden brown", + "background": "aquamarine", + "clothes": "smoking jacket", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9159, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "clothes": "leather jacket", + "hat": "short mohawk", + "background": "gray", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9160, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "heart", + "clothes": "striped tee", + "earring": "silver stud", + "mouth": "jovial", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9161, + "metadata_dict": { + "hat": "faux hawk", + "earring": "silver hoop", + "eyes": "bored", + "clothes": "tanktop", + "background": "yellow", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9162, + "metadata_dict": { + "background": "new punk blue", + "clothes": "striped tee", + "eyes": "hypnotized", + "fur": "dmt", + "mouth": "jovial" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9163, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme vuh", + "fur": "black", + "clothes": "biker vest", + "hat": "army hat", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9164, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "bowler", + "mouth": "jovial", + "background": "orange", + "fur": "pink", + "clothes": "prom dress" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9165, + "metadata_dict": { + "eyes": "laser eyes", + "mouth": "bored unshaven", + "hat": "s&m hat", + "clothes": "black t", + "fur": "black", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9166, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "space suit", + "mouth": "phoneme ooo", + "fur": "golden brown", + "background": "aquamarine", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9167, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "striped tee", + "hat": "horns", + "fur": "gray", + "background": "blue", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9168, + "metadata_dict": { + "fur": "golden brown", + "clothes": "sleeveless logo t", + "eyes": "bloodshot", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9169, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "biker vest", + "background": "orange", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9170, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "blue", + "fur": "black", + "hat": "beanie", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9171, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "fur": "cream", + "hat": "seaman's hat", + "clothes": "leather jacket", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9172, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "guayabera", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9173, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "cowboy hat", + "mouth": "bored unshaven cigar", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9174, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "golden brown", + "earring": "gold hoop", + "clothes": "smoking jacket", + "hat": "short mohawk", + "background": "orange", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9175, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "earring": "diamond stud", + "hat": "sea captain's hat", + "background": "blue", + "fur": "noise", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9176, + "metadata_dict": { + "clothes": "black t", + "mouth": "grin diamond grill", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9177, + "metadata_dict": { + "eyes": "eyepatch", + "earring": "silver stud", + "fur": "red", + "clothes": "toga", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9178, + "metadata_dict": { + "eyes": "coins", + "earring": "gold hoop", + "clothes": "bone necklace", + "fur": "brown", + "background": "yellow", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9179, + "metadata_dict": { + "background": "blue", + "fur": "pink", + "mouth": "small grin", + "hat": "ww2 pilot helm", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9180, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "clothes": "pimp coat", + "hat": "beanie", + "background": "army green", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9181, + "metadata_dict": { + "earring": "diamond stud", + "eyes": "robot", + "fur": "noise", + "clothes": "lab coat", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9182, + "metadata_dict": { + "hat": "trippy captain's hat", + "eyes": "blindfold", + "earring": "gold hoop", + "mouth": "phoneme vuh", + "background": "blue", + "fur": "black" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9183, + "metadata_dict": { + "mouth": "grin", + "background": "purple", + "fur": "cheetah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9184, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "black holes t", + "eyes": "3d", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9185, + "metadata_dict": { + "earring": "gold hoop", + "hat": "fez", + "fur": "dark brown", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9186, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "solid gold", + "eyes": "bored", + "hat": "cowboy hat", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9187, + "metadata_dict": { + "mouth": "tongue out", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "fisherman's hat", + "background": "yellow", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9188, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "grin", + "background": "aquamarine", + "fur": "red", + "clothes": "pimp coat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9189, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "sailor shirt", + "background": "orange", + "hat": "bunny ears", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9190, + "metadata_dict": { + "clothes": "bandolier", + "earring": "silver hoop", + "eyes": "bored", + "mouth": "bored", + "fur": "white", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9191, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "black", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9192, + "metadata_dict": { + "eyes": "coins", + "earring": "gold stud", + "background": "orange", + "mouth": "small grin", + "fur": "brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9193, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "dark brown", + "background": "gray", + "mouth": "bored", + "clothes": "caveman pelt", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9194, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "red", + "eyes": "3d", + "clothes": "tuxedo tee", + "mouth": "tongue out", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9195, + "metadata_dict": { + "background": "blue", + "fur": "tan", + "eyes": "3d", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9196, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "fur": "black", + "hat": "short mohawk", + "earring": "silver hoop", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9197, + "metadata_dict": { + "eyes": "x eyes", + "background": "gray", + "earring": "gold hoop", + "mouth": "bored unshaven bubblegum", + "hat": "short mohawk", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9198, + "metadata_dict": { + "eyes": "x eyes", + "background": "aquamarine", + "fur": "pink", + "hat": "short mohawk", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9199, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "fur": "death bot", + "clothes": "stunt jacket", + "mouth": "bored cigar", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9200, + "metadata_dict": { + "earring": "silver stud", + "background": "aquamarine", + "clothes": "leather jacket", + "fur": "dark brown", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9201, + "metadata_dict": { + "fur": "cream", + "background": "aquamarine", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "bored", + "hat": "commie hat", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9202, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "mouth": "phoneme wah", + "eyes": "sunglasses", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9203, + "metadata_dict": { + "hat": "bayc hat black", + "background": "new punk blue", + "fur": "brown", + "clothes": "prison jumpsuit", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9204, + "metadata_dict": { + "fur": "tan", + "earring": "silver stud", + "mouth": "jovial", + "background": "purple", + "clothes": "tuxedo tee", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9205, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "hat": "fez", + "mouth": "rage", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9206, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "bored pipe", + "fur": "pink", + "hat": "bayc flipped brim", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9207, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "king's crown", + "fur": "dark brown", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9208, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9209, + "metadata_dict": { + "mouth": "grin", + "background": "orange", + "clothes": "tuxedo tee", + "hat": "safari", + "fur": "zombie", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9210, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "fur": "black", + "hat": "army hat", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9211, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "pink", + "hat": "bayc flipped brim", + "clothes": "guayabera", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9212, + "metadata_dict": { + "background": "purple", + "eyes": "coins", + "mouth": "bored", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9213, + "metadata_dict": { + "eyes": "closed", + "background": "orange", + "mouth": "bored pizza", + "hat": "girl's hair short", + "clothes": "tanktop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9214, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "wool turtleneck", + "fur": "tan", + "eyes": "hypnotized", + "earring": "diamond stud", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9215, + "metadata_dict": { + "mouth": "discomfort", + "background": "blue", + "fur": "black", + "hat": "bayc flipped brim", + "clothes": "prom dress", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9216, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "lumberjack shirt", + "hat": "irish boho", + "fur": "red", + "background": "aquamarine", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9217, + "metadata_dict": { + "eyes": "closed", + "background": "purple", + "mouth": "bored", + "fur": "cream" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9218, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "bored unshaven", + "eyes": "bored", + "hat": "faux hawk", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9219, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "hat": "short mohawk", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9220, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored unshaven", + "clothes": "biker vest", + "fur": "pink", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9221, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "fur": "red", + "eyes": "3d", + "background": "purple", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9222, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "fur": "dark brown", + "eyes": "bored", + "hat": "army hat", + "clothes": "bone necklace" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9223, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "space suit", + "eyes": "bored", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9224, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "black suit", + "hat": "fisherman's hat", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9225, + "metadata_dict": { + "hat": "horns", + "fur": "cheetah", + "earring": "gold hoop", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9226, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "wool turtleneck", + "fur": "death bot", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9227, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cream", + "mouth": "grin multicolored", + "background": "blue", + "earring": "cross", + "hat": "halo", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9228, + "metadata_dict": { + "mouth": "grin", + "hat": "short mohawk", + "eyes": "bored", + "fur": "cheetah", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9229, + "metadata_dict": { + "background": "gray", + "mouth": "dumbfounded", + "fur": "pink", + "eyes": "bloodshot", + "clothes": "tanktop", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9230, + "metadata_dict": { + "mouth": "discomfort", + "fur": "brown", + "clothes": "rainbow suspenders", + "eyes": "bloodshot", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9231, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "clothes": "tie dye", + "fur": "pink", + "eyes": "bored", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9232, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "leather jacket", + "fur": "black", + "background": "blue", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9233, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "fur": "golden brown", + "hat": "party hat 1", + "background": "aquamarine", + "clothes": "tie dye" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9234, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "blue beams", + "background": "orange", + "fur": "noise", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9235, + "metadata_dict": { + "background": "new punk blue", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9236, + "metadata_dict": { + "clothes": "striped tee", + "fur": "cream", + "mouth": "phoneme ooo", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9237, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "background": "orange", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9238, + "metadata_dict": { + "background": "gray", + "mouth": "bored bubblegum", + "eyes": "3d", + "fur": "brown", + "hat": "commie hat", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9239, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "sleeveless t", + "hat": "horns", + "fur": "black", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9240, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "eyes": "robot", + "fur": "black", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9241, + "metadata_dict": { + "hat": "irish boho", + "eyes": "zombie", + "mouth": "dumbfounded", + "background": "blue", + "fur": "black", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9242, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "gray", + "eyes": "3d", + "background": "orange", + "clothes": "biker vest", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9243, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "spinner hat", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "pimp coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9244, + "metadata_dict": { + "hat": "seaman's hat", + "background": "blue", + "fur": "black", + "earring": "silver hoop", + "clothes": "guayabera", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9245, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "pink", + "hat": "army hat", + "clothes": "lab coat", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9246, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bored", + "fur": "cheetah", + "background": "army green", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9247, + "metadata_dict": { + "mouth": "grin", + "eyes": "3d", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9248, + "metadata_dict": { + "clothes": "bandolier", + "hat": "seaman's hat", + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "background": "aquamarine", + "fur": "black", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9249, + "metadata_dict": { + "clothes": "striped tee", + "fur": "trippy", + "background": "aquamarine", + "eyes": "robot", + "earring": "silver hoop", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9250, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "background": "aquamarine", + "fur": "pink", + "hat": "ww2 pilot helm", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9251, + "metadata_dict": { + "mouth": "bored party horn", + "hat": "fez", + "background": "orange", + "eyes": "bloodshot", + "clothes": "tanktop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9252, + "metadata_dict": { + "fur": "pink", + "clothes": "smoking jacket", + "mouth": "tongue out", + "hat": "bayc hat red", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9253, + "metadata_dict": { + "eyes": "robot", + "clothes": "leather jacket", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9254, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme vuh", + "fur": "dark brown", + "hat": "bayc flipped brim", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9255, + "metadata_dict": { + "mouth": "discomfort", + "fur": "red", + "background": "aquamarine", + "clothes": "smoking jacket", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9256, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored kazoo", + "fur": "golden brown", + "earring": "gold hoop", + "background": "orange", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9257, + "metadata_dict": { + "hat": "bandana blue", + "clothes": "black t", + "background": "blue", + "mouth": "bored cigarette", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9258, + "metadata_dict": { + "mouth": "phoneme ooo", + "hat": "spinner hat", + "fur": "dark brown", + "background": "yellow", + "clothes": "guayabera", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9259, + "metadata_dict": { + "hat": "irish boho", + "fur": "dark brown", + "clothes": "toga", + "mouth": "bored", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9260, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "bayc t red", + "hat": "baby's bonnet", + "earring": "gold stud", + "eyes": "3d", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9261, + "metadata_dict": { + "hat": "irish boho", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "fur": "cheetah", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9262, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "earring": "diamond stud", + "hat": "safari", + "fur": "robot", + "clothes": "hawaiian", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9263, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "background": "orange", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9264, + "metadata_dict": { + "eyes": "heart", + "clothes": "black holes t", + "fur": "gray", + "hat": "short mohawk", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9265, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "fur": "black", + "eyes": "bored", + "hat": "ww2 pilot helm", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9266, + "metadata_dict": { + "hat": "irish boho", + "mouth": "jovial", + "eyes": "3d", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9267, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "tan", + "hat": "irish boho", + "clothes": "black holes t", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9268, + "metadata_dict": { + "fur": "dmt", + "hat": "fez", + "mouth": "bored bubblegum", + "eyes": "angry", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9269, + "metadata_dict": { + "hat": "prussian helmet", + "clothes": "work vest", + "background": "blue", + "fur": "black", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9270, + "metadata_dict": { + "mouth": "grin", + "clothes": "rainbow suspenders", + "background": "orange", + "hat": "fisherman's hat", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9271, + "metadata_dict": { + "hat": "horns", + "background": "gray", + "mouth": "grin", + "clothes": "smoking jacket", + "earring": "silver hoop", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9272, + "metadata_dict": { + "eyes": "coins", + "background": "aquamarine", + "clothes": "leather jacket", + "fur": "brown", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9273, + "metadata_dict": { + "fur": "trippy", + "eyes": "bloodshot", + "clothes": "bayc t black", + "hat": "fisherman's hat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9274, + "metadata_dict": { + "eyes": "hypnotized", + "earring": "silver stud", + "background": "aquamarine", + "mouth": "small grin", + "clothes": "prom dress", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9275, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "hat": "short mohawk", + "fur": "brown", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9276, + "metadata_dict": { + "clothes": "striped tee", + "background": "blue", + "hat": "beanie", + "mouth": "bored", + "eyes": "crazy", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9277, + "metadata_dict": { + "clothes": "bayc t red", + "fur": "tan", + "hat": "short mohawk", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9278, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black holes t", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "vietnam era helmet", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9279, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored unshaven", + "earring": "gold hoop", + "fur": "black", + "eyes": "bored", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9280, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "sailor shirt", + "eyes": "3d", + "hat": "beanie", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9281, + "metadata_dict": { + "clothes": "kings robe", + "eyes": "heart", + "earring": "diamond stud", + "fur": "black", + "background": "gray", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9282, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "coins", + "fur": "black", + "hat": "faux hawk", + "background": "yellow", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9283, + "metadata_dict": { + "eyes": "closed", + "fur": "gray", + "mouth": "bored unshaven bubblegum", + "hat": "fez", + "background": "aquamarine", + "earring": "silver hoop", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9284, + "metadata_dict": { + "background": "aquamarine", + "mouth": "jovial", + "fur": "black", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9285, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "eyes": "zombie", + "background": "orange", + "fur": "dark brown", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9286, + "metadata_dict": { + "clothes": "bandolier", + "fur": "cream", + "hat": "seaman's hat", + "eyes": "bloodshot", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9287, + "metadata_dict": { + "fur": "tan", + "background": "aquamarine", + "eyes": "3d", + "clothes": "tuxedo tee", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9288, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme oh", + "eyes": "sleepy", + "background": "purple", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9289, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "hypnotized", + "clothes": "prison jumpsuit", + "earring": "gold stud", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9290, + "metadata_dict": { + "fur": "gray", + "background": "orange", + "eyes": "bored", + "clothes": "toga", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9291, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "golden brown", + "clothes": "black t", + "mouth": "jovial", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9292, + "metadata_dict": { + "eyes": "scumbag", + "background": "orange", + "fur": "dark brown", + "hat": "vietnam era helmet", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9293, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "earring": "silver stud", + "clothes": "cowboy shirt", + "background": "orange", + "eyes": "3d", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9294, + "metadata_dict": { + "fur": "tan", + "clothes": "bayc t red", + "mouth": "grin", + "eyes": "coins", + "background": "gray", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9295, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "clothes": "striped tee", + "fur": "red", + "hat": "bayc flipped brim", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9296, + "metadata_dict": { + "mouth": "grin gold grill", + "eyes": "coins", + "clothes": "black t", + "fur": "dark brown", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9297, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "diamond stud", + "hat": "party hat 1", + "fur": "red", + "background": "blue", + "clothes": "bayc t black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9298, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black t", + "hat": "short mohawk", + "fur": "dark brown", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9299, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "zombie", + "hat": "seaman's hat", + "clothes": "stunt jacket", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9300, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "earring": "gold stud", + "fur": "dark brown", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9301, + "metadata_dict": { + "mouth": "grin", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9302, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "eyes": "hypnotized", + "clothes": "black holes t", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9303, + "metadata_dict": { + "clothes": "black holes t", + "hat": "seaman's hat", + "fur": "black", + "background": "orange", + "earring": "silver hoop", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9304, + "metadata_dict": { + "eyes": "x eyes", + "background": "new punk blue", + "clothes": "wool turtleneck", + "hat": "sushi chef headband", + "mouth": "grin multicolored", + "earring": "silver stud", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9305, + "metadata_dict": { + "fur": "golden brown", + "hat": "fez", + "earring": "silver stud", + "eyes": "bored", + "mouth": "bored cigarette", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9306, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "jovial", + "background": "blue", + "earring": "silver hoop", + "fur": "cheetah", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9307, + "metadata_dict": { + "fur": "tan", + "clothes": "prison jumpsuit", + "mouth": "phoneme vuh", + "background": "blue", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9308, + "metadata_dict": { + "fur": "pink", + "hat": "cowboy hat", + "mouth": "bored unshaven cigar", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9309, + "metadata_dict": { + "eyes": "blindfold", + "hat": "irish boho", + "earring": "silver stud", + "mouth": "jovial", + "clothes": "sleeveless logo t", + "background": "yellow", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9310, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "black holes t", + "eyes": "coins", + "background": "orange", + "fur": "death bot", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9311, + "metadata_dict": { + "mouth": "bored dagger", + "earring": "gold hoop", + "fur": "red", + "background": "yellow", + "hat": "safari", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9312, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "bayc t red", + "mouth": "dumbfounded", + "background": "aquamarine", + "hat": "short mohawk", + "fur": "noise" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9313, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "red", + "earring": "silver hoop", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9314, + "metadata_dict": { + "eyes": "coins", + "fur": "pink", + "mouth": "small grin", + "hat": "ww2 pilot helm", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9315, + "metadata_dict": { + "mouth": "grin gold grill", + "background": "aquamarine", + "clothes": "biker vest", + "eyes": "bored", + "hat": "bayc hat red", + "earring": "cross", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9316, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "diamond stud", + "fur": "red", + "background": "blue", + "eyes": "bored", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9317, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "background": "orange", + "clothes": "smoking jacket", + "hat": "bayc flipped brim", + "earring": "cross", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9318, + "metadata_dict": { + "clothes": "leather punk jacket", + "eyes": "zombie", + "fur": "dark brown", + "mouth": "small grin", + "hat": "beanie", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9319, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "background": "aquamarine", + "eyes": "bloodshot", + "fur": "dark brown", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9320, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "sea captain's hat", + "clothes": "tanktop", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9321, + "metadata_dict": { + "eyes": "heart", + "clothes": "smoking jacket", + "fur": "dark brown", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9322, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9323, + "metadata_dict": { + "clothes": "bayc t red", + "mouth": "bored unshaven", + "fur": "black", + "eyes": "bored", + "hat": "ww2 pilot helm", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9324, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "earring": "silver stud", + "fur": "black", + "mouth": "bored unshaven cigar", + "clothes": "tanktop", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9325, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven cigarette", + "eyes": "bored", + "background": "gray", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9326, + "metadata_dict": { + "fur": "black", + "clothes": "biker vest", + "background": "yellow", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9327, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "mouth": "bored unshaven cigarette", + "earring": "diamond stud", + "clothes": "sailor shirt", + "fur": "brown", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9328, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "hypnotized", + "fur": "gray", + "background": "aquamarine", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9329, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "background": "aquamarine", + "eyes": "robot", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9330, + "metadata_dict": { + "fur": "cream", + "eyes": "coins", + "background": "blue", + "mouth": "bored", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9331, + "metadata_dict": { + "fur": "dmt", + "earring": "gold stud", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9332, + "metadata_dict": { + "hat": "bandana blue", + "eyes": "3d", + "background": "orange", + "fur": "brown", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9333, + "metadata_dict": { + "eyes": "scumbag", + "hat": "baby's bonnet", + "fur": "red", + "background": "blue", + "clothes": "tie dye", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9334, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "wide eyed", + "background": "blue", + "fur": "white", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9335, + "metadata_dict": { + "eyes": "heart", + "clothes": "black t", + "background": "blue", + "hat": "short mohawk", + "fur": "dark brown", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9336, + "metadata_dict": { + "eyes": "holographic", + "clothes": "service", + "background": "purple", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9337, + "metadata_dict": { + "background": "new punk blue", + "hat": "sushi chef headband", + "mouth": "phoneme ooo", + "clothes": "black t", + "eyes": "bloodshot", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9338, + "metadata_dict": { + "fur": "cream", + "eyes": "zombie", + "background": "orange", + "earring": "silver hoop", + "clothes": "sleeveless logo t", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9339, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "mouth": "grin multicolored", + "clothes": "black t", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9340, + "metadata_dict": { + "clothes": "black t", + "mouth": "grin diamond grill", + "earring": "silver hoop", + "fur": "brown", + "background": "yellow", + "hat": "commie hat", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9341, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "clothes": "rainbow suspenders", + "background": "blue", + "fur": "brown", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9342, + "metadata_dict": { + "background": "aquamarine", + "clothes": "biker vest", + "mouth": "bored", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9343, + "metadata_dict": { + "background": "new punk blue", + "eyes": "sleepy", + "fur": "pink", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9344, + "metadata_dict": { + "mouth": "grin gold grill", + "earring": "gold stud", + "fur": "pink", + "eyes": "bored", + "background": "yellow", + "hat": "bunny ears", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9345, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "black", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9346, + "metadata_dict": { + "eyes": "eyepatch", + "background": "new punk blue", + "clothes": "black t", + "hat": "cowboy hat", + "mouth": "tongue out", + "fur": "brown", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9347, + "metadata_dict": { + "mouth": "grin", + "eyes": "3d", + "fur": "dark brown", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9348, + "metadata_dict": { + "hat": "party hat 2", + "clothes": "striped tee", + "mouth": "phoneme vuh", + "background": "aquamarine", + "earring": "silver hoop", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9349, + "metadata_dict": { + "hat": "party hat 2", + "fur": "gray", + "mouth": "small grin", + "eyes": "bored", + "clothes": "lab coat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9350, + "metadata_dict": { + "eyes": "closed", + "background": "blue", + "fur": "dark brown", + "mouth": "bored", + "hat": "safari", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9351, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "black", + "background": "orange", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9352, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "mouth": "dumbfounded", + "background": "aquamarine", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9353, + "metadata_dict": { + "mouth": "jovial", + "clothes": "leather jacket", + "background": "aquamarine", + "hat": "short mohawk", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9354, + "metadata_dict": { + "eyes": "holographic", + "background": "blue", + "mouth": "bored pipe", + "hat": "beanie", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9355, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "clothes": "tuxedo tee", + "hat": "halo", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9356, + "metadata_dict": { + "clothes": "lumberjack shirt", + "hat": "sushi chef headband", + "eyes": "coins", + "mouth": "bored pipe", + "background": "blue", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9357, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "bored unshaven", + "hat": "fez", + "background": "blue", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9358, + "metadata_dict": { + "eyes": "sad", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "background": "yellow", + "mouth": "bored cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9359, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "black", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9360, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "eyes": "coins", + "fur": "red", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9361, + "metadata_dict": { + "fur": "trippy", + "mouth": "bored unshaven bubblegum", + "earring": "silver stud", + "background": "gray", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9362, + "metadata_dict": { + "hat": "horns", + "earring": "silver stud", + "fur": "black", + "eyes": "bored", + "clothes": "lab coat", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9363, + "metadata_dict": { + "fur": "brown", + "eyes": "coins", + "background": "blue", + "clothes": "sleeveless logo t", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9364, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "dumbfounded", + "fur": "cheetah", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9365, + "metadata_dict": { + "background": "new punk blue", + "clothes": "lumberjack shirt", + "eyes": "3d", + "fur": "dark brown", + "hat": "ww2 pilot helm", + "mouth": "bored unshaven cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9366, + "metadata_dict": { + "eyes": "heart", + "fur": "black", + "mouth": "bored bubblegum", + "clothes": "pimp coat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9367, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "discomfort", + "fur": "cream", + "background": "blue", + "hat": "cowboy hat", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9368, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "fur": "gray", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9369, + "metadata_dict": { + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "jovial", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9370, + "metadata_dict": { + "fur": "cream", + "mouth": "rage", + "background": "orange", + "eyes": "sleepy", + "clothes": "navy striped tee", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9371, + "metadata_dict": { + "eyes": "laser eyes", + "hat": "fez", + "earring": "silver stud", + "fur": "black", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9372, + "metadata_dict": { + "mouth": "grin", + "hat": "baby's bonnet", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "tuxedo tee", + "fur": "brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9373, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "leather jacket", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9374, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "mouth": "dumbfounded", + "background": "orange", + "hat": "bayc flipped brim" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9375, + "metadata_dict": { + "mouth": "discomfort", + "earring": "gold hoop", + "background": "gray", + "hat": "beanie", + "clothes": "hip hop", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9376, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "tweed suit", + "hat": "beanie", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9377, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "dumbfounded", + "fur": "pink", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9378, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored dagger", + "clothes": "prison jumpsuit", + "hat": "short mohawk", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9379, + "metadata_dict": { + "background": "new punk blue", + "clothes": "black t", + "mouth": "bored unshaven pipe", + "fur": "black", + "eyes": "crazy", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9380, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "clothes": "bayc t red", + "fur": "gray", + "background": "blue", + "earring": "silver hoop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9381, + "metadata_dict": { + "background": "aquamarine", + "fur": "brown", + "mouth": "bored", + "eyes": "coins" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9382, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "work vest", + "fur": "black", + "hat": "spinner hat", + "earring": "gold stud", + "background": "gray", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9383, + "metadata_dict": { + "hat": "horns", + "mouth": "phoneme ooo", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9384, + "metadata_dict": { + "clothes": "rainbow suspenders", + "eyes": "bloodshot", + "fur": "cheetah", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9385, + "metadata_dict": { + "clothes": "cowboy shirt", + "eyes": "3d", + "mouth": "bored unshaven kazoo", + "fur": "pink", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9386, + "metadata_dict": { + "background": "yellow", + "mouth": "phoneme vuh", + "fur": "black", + "eyes": "3d", + "hat": "beanie", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9387, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "fur": "gray", + "hat": "beanie", + "clothes": "navy striped tee", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9388, + "metadata_dict": { + "background": "new punk blue", + "earring": "gold hoop", + "mouth": "jovial", + "fur": "red", + "hat": "beanie", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9389, + "metadata_dict": { + "fur": "golden brown", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9390, + "metadata_dict": { + "fur": "red", + "hat": "spinner hat", + "background": "orange", + "eyes": "bored", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9391, + "metadata_dict": { + "earring": "gold hoop", + "clothes": "tweed suit", + "hat": "fez", + "eyes": "bloodshot", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9392, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "clothes": "cowboy shirt", + "eyes": "3d", + "hat": "short mohawk", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9393, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "cream", + "mouth": "jovial", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9394, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "clothes": "sailor shirt", + "background": "orange", + "fur": "brown", + "eyes": "sleepy", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9395, + "metadata_dict": { + "mouth": "grin", + "eyes": "coins", + "background": "orange", + "fur": "brown", + "earring": "cross", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9396, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "blue", + "fur": "black", + "eyes": "bored", + "hat": "bowler", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9397, + "metadata_dict": { + "fur": "cream", + "clothes": "black t", + "eyes": "3d", + "mouth": "small grin", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9398, + "metadata_dict": { + "hat": "trippy captain's hat", + "mouth": "bored unshaven", + "background": "aquamarine", + "fur": "brown", + "eyes": "sleepy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9399, + "metadata_dict": { + "background": "blue", + "fur": "dark brown", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9400, + "metadata_dict": { + "eyes": "holographic", + "mouth": "phoneme vuh", + "background": "orange", + "hat": "cowboy hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9401, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "bandolier", + "fur": "golden brown", + "hat": "stuntman helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9402, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "eyes": "bored", + "mouth": "phoneme wah", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9403, + "metadata_dict": { + "mouth": "bored bubblegum", + "fur": "pink", + "clothes": "smoking jacket", + "eyes": "bored", + "hat": "army hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9404, + "metadata_dict": { + "hat": "baby's bonnet", + "mouth": "bored unshaven pipe", + "background": "orange", + "eyes": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9405, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "sad", + "mouth": "phoneme vuh", + "earring": "silver stud", + "background": "orange", + "fur": "brown", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9406, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "fur": "black", + "background": "purple", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9407, + "metadata_dict": { + "clothes": "prison jumpsuit", + "fur": "black", + "background": "orange", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9408, + "metadata_dict": { + "fur": "cream", + "earring": "gold hoop", + "clothes": "tanktop", + "mouth": "bored", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9409, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "bayc t red", + "fur": "red", + "background": "gray", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9410, + "metadata_dict": { + "clothes": "space suit", + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "earring": "silver stud", + "background": "aquamarine", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9411, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "fur": "black", + "clothes": "bone necklace", + "eyes": "sleepy", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9412, + "metadata_dict": { + "hat": "police motorcycle helmet", + "clothes": "leather jacket", + "background": "orange", + "mouth": "bored cigarette", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9413, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "horns", + "mouth": "grin diamond grill", + "clothes": "biker vest", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9414, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "brown", + "clothes": "leather jacket", + "background": "gray", + "hat": "commie hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9415, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "orange", + "eyes": "bloodshot", + "earring": "silver hoop", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9416, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "girl's hair pink", + "eyes": "3d", + "fur": "brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9417, + "metadata_dict": { + "eyes": "hypnotized", + "background": "aquamarine", + "clothes": "tanktop", + "fur": "brown", + "hat": "vietnam era helmet", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9418, + "metadata_dict": { + "background": "yellow", + "hat": "cowboy hat", + "earring": "silver hoop", + "clothes": "prom dress", + "eyes": "sleepy", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9419, + "metadata_dict": { + "mouth": "grin", + "hat": "baby's bonnet", + "background": "aquamarine", + "fur": "red", + "eyes": "sleepy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9420, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "clothes": "black holes t", + "eyes": "sunglasses", + "background": "orange", + "earring": "silver hoop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9421, + "metadata_dict": { + "fur": "tan", + "mouth": "phoneme vuh", + "background": "aquamarine", + "clothes": "leather jacket", + "hat": "bayc flipped brim", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9422, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "fur": "pink", + "hat": "ww2 pilot helm", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9423, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "hat": "sushi chef headband", + "clothes": "blue dress", + "mouth": "grin diamond grill", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9424, + "metadata_dict": { + "fur": "golden brown", + "hat": "fez", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9425, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "bored", + "clothes": "tanktop", + "background": "yellow", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9426, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "hat": "girl's hair pink", + "fur": "pink", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9427, + "metadata_dict": { + "background": "new punk blue", + "clothes": "smoking jacket", + "eyes": "bored", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9428, + "metadata_dict": { + "fur": "brown", + "earring": "silver stud", + "hat": "army hat", + "background": "gray", + "mouth": "bored", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9429, + "metadata_dict": { + "mouth": "phoneme oh", + "background": "blue", + "hat": "short mohawk", + "clothes": "tuxedo tee", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9430, + "metadata_dict": { + "clothes": "striped tee", + "fur": "red", + "eyes": "robot", + "background": "orange", + "hat": "safari", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9431, + "metadata_dict": { + "background": "new punk blue", + "eyes": "coins", + "hat": "stuntman helmet", + "mouth": "phoneme vuh", + "clothes": "leather jacket", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9432, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bayc t red", + "eyes": "zombie", + "mouth": "bored pipe", + "fur": "pink", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9433, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "s&m hat", + "mouth": "bored party horn", + "background": "aquamarine", + "clothes": "tanktop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9434, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "phoneme ooo", + "earring": "silver stud", + "background": "blue", + "fur": "white", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9435, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "sleepy", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9436, + "metadata_dict": { + "fur": "cream", + "hat": "king's crown", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9437, + "metadata_dict": { + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9438, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "leather punk jacket", + "background": "aquamarine", + "eyes": "bored", + "fur": "brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9439, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "bandolier", + "hat": "baby's bonnet", + "background": "aquamarine", + "fur": "red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9440, + "metadata_dict": { + "hat": "bayc hat black", + "background": "blue", + "clothes": "biker vest", + "mouth": "small grin", + "fur": "cheetah", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9441, + "metadata_dict": { + "clothes": "lumberjack shirt", + "mouth": "grin", + "fur": "golden brown", + "background": "orange", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9442, + "metadata_dict": { + "fur": "red", + "background": "blue", + "clothes": "work vest", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "hat": "vietnam era helmet", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9443, + "metadata_dict": { + "hat": "fisherman's hat", + "eyes": "coins", + "fur": "red", + "earring": "silver hoop", + "mouth": "tongue out", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9444, + "metadata_dict": { + "eyes": "zombie", + "background": "orange", + "hat": "fisherman's hat", + "fur": "brown", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9445, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "golden brown", + "clothes": "work vest", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9446, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bloodshot", + "clothes": "bayc t black", + "hat": "fisherman's hat", + "background": "gray", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9447, + "metadata_dict": { + "fur": "tan", + "clothes": "sailor shirt", + "earring": "silver stud", + "eyes": "robot", + "hat": "army hat", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9448, + "metadata_dict": { + "eyes": "x eyes", + "fur": "dmt", + "background": "aquamarine", + "mouth": "bored bubblegum", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9449, + "metadata_dict": { + "clothes": "black t", + "background": "blue", + "eyes": "blue beams", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9450, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "earring": "gold hoop", + "background": "aquamarine", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9451, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "bandolier", + "hat": "fez", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9452, + "metadata_dict": { + "eyes": "laser eyes", + "clothes": "space suit", + "mouth": "bored unshaven pipe", + "background": "gray", + "hat": "beanie", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9453, + "metadata_dict": { + "fur": "tan", + "hat": "spinner hat", + "mouth": "bored bubblegum", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9454, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "dumbfounded", + "hat": "beanie", + "fur": "black", + "eyes": "robot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9455, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "clothes": "wool turtleneck", + "hat": "seaman's hat", + "fur": "gray", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9456, + "metadata_dict": { + "fur": "gray", + "mouth": "jovial", + "clothes": "smoking jacket", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9457, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "bored party horn", + "background": "blue", + "fur": "noise", + "clothes": "bayc t black", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9458, + "metadata_dict": { + "mouth": "discomfort", + "fur": "cream", + "hat": "prussian helmet", + "background": "blue", + "earring": "gold stud", + "eyes": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9459, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "eyes": "coins", + "fur": "red", + "mouth": "tongue out", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9460, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "dumbfounded", + "fur": "cheetah", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9461, + "metadata_dict": { + "mouth": "grin", + "background": "yellow", + "fur": "brown", + "hat": "bayc hat red", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9462, + "metadata_dict": { + "clothes": "sailor shirt", + "fur": "dark brown", + "mouth": "small grin", + "eyes": "bored", + "background": "purple", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9463, + "metadata_dict": { + "fur": "red", + "background": "yellow", + "mouth": "bored cigarette", + "eyes": "hypnotized" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9464, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "hat": "baby's bonnet", + "background": "aquamarine", + "fur": "noise", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9465, + "metadata_dict": { + "clothes": "striped tee", + "earring": "silver stud", + "fur": "red", + "background": "orange", + "mouth": "bored unshaven cigarette", + "hat": "commie hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9466, + "metadata_dict": { + "mouth": "grin", + "earring": "gold hoop", + "eyes": "sleepy", + "hat": "beanie", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9467, + "metadata_dict": { + "fur": "tan", + "mouth": "grin", + "hat": "fez", + "clothes": "work vest", + "earring": "gold stud", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9468, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "tan", + "clothes": "bone tee", + "hat": "army hat", + "background": "purple", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9469, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "cream", + "eyes": "bored", + "background": "purple", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9470, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "sailor shirt", + "mouth": "bored party horn", + "fur": "pink", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9471, + "metadata_dict": { + "mouth": "bored kazoo", + "eyes": "blindfold", + "background": "gray", + "hat": "fez", + "fur": "black", + "clothes": "admirals coat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9472, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "hat": "prussian helmet", + "background": "aquamarine", + "eyes": "bloodshot", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9473, + "metadata_dict": { + "eyes": "3d", + "fur": "dark brown", + "earring": "silver hoop", + "background": "purple", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9474, + "metadata_dict": { + "hat": "horns", + "background": "blue", + "fur": "dark brown", + "mouth": "bored", + "eyes": "angry", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9475, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "horns", + "mouth": "dumbfounded", + "fur": "black", + "earring": "silver hoop", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9476, + "metadata_dict": { + "hat": "bowler", + "mouth": "phoneme vuh", + "fur": "pink", + "clothes": "biker vest", + "background": "yellow", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9477, + "metadata_dict": { + "background": "new punk blue", + "mouth": "jovial", + "hat": "short mohawk", + "fur": "brown", + "eyes": "crazy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9478, + "metadata_dict": { + "eyes": "coins", + "fur": "red", + "background": "orange", + "mouth": "phoneme wah", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9479, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "dark brown", + "hat": "army hat", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9480, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "cream", + "eyes": "bloodshot", + "hat": "bunny ears", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9481, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "trippy", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9482, + "metadata_dict": { + "eyes": "x eyes", + "earring": "gold hoop", + "mouth": "bored party horn", + "hat": "bowler", + "background": "purple", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9483, + "metadata_dict": { + "clothes": "work vest", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9484, + "metadata_dict": { + "clothes": "lumberjack shirt", + "fur": "golden brown", + "hat": "party hat 1", + "earring": "gold stud", + "background": "orange", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9485, + "metadata_dict": { + "mouth": "phoneme oh", + "eyes": "blindfold", + "background": "aquamarine", + "clothes": "bayc t black", + "hat": "army hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9486, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "hat": "irish boho", + "fur": "cheetah", + "eyes": "sleepy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9487, + "metadata_dict": { + "clothes": "striped tee", + "hat": "short mohawk", + "fur": "brown", + "background": "yellow", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9488, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "fez", + "clothes": "prison jumpsuit", + "eyes": "3d", + "fur": "dark brown", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9489, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "tweed suit", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9490, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "leather jacket", + "background": "orange", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9491, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dark brown", + "clothes": "tuxedo tee", + "eyes": "bored", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9492, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven bubblegum", + "fur": "black", + "eyes": "3d", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9493, + "metadata_dict": { + "eyes": "3d", + "mouth": "bored unshaven", + "background": "orange", + "fur": "tan" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9494, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "fur": "golden brown", + "background": "aquamarine", + "hat": "short mohawk", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9495, + "metadata_dict": { + "background": "new punk blue", + "clothes": "tweed suit", + "fur": "black", + "hat": "vietnam era helmet", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9496, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "clothes": "stunt jacket", + "fur": "robot", + "eyes": "sunglasses", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9497, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "golden brown", + "clothes": "work vest", + "background": "blue", + "eyes": "bloodshot", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9498, + "metadata_dict": { + "fur": "tan", + "earring": "gold hoop", + "background": "yellow", + "mouth": "dumbfounded", + "hat": "vietnam era helmet", + "clothes": "bone necklace", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9499, + "metadata_dict": { + "hat": "fez", + "clothes": "prison jumpsuit", + "eyes": "bored", + "fur": "brown", + "mouth": "bored cigar", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9500, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "hat": "sushi chef headband", + "background": "aquamarine", + "fur": "dark brown", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9501, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "s&m hat", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9502, + "metadata_dict": { + "hat": "horns", + "eyes": "coins", + "mouth": "bored unshaven cigar", + "background": "yellow", + "fur": "white", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9503, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "tweed suit", + "background": "purple", + "eyes": "sleepy", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9504, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "prison jumpsuit", + "fur": "dark brown", + "mouth": "bored cigarette", + "hat": "halo", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9505, + "metadata_dict": { + "eyes": "closed", + "clothes": "leather punk jacket", + "hat": "fez", + "earring": "silver hoop", + "mouth": "tongue out", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9506, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "background": "aquamarine", + "fur": "black", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9507, + "metadata_dict": { + "fur": "brown", + "mouth": "bored unshaven", + "background": "aquamarine", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9508, + "metadata_dict": { + "mouth": "phoneme wah", + "clothes": "striped tee", + "hat": "beanie", + "fur": "cheetah", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9509, + "metadata_dict": { + "mouth": "grin", + "clothes": "cowboy shirt", + "background": "orange", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9510, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "holographic", + "clothes": "cowboy shirt", + "fur": "dark brown", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9511, + "metadata_dict": { + "clothes": "sleeveless t", + "eyes": "hypnotized", + "fur": "black", + "mouth": "bored unshaven cigarette", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9512, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "clothes": "bayc t black", + "fur": "brown", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9513, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "irish boho", + "mouth": "phoneme vuh", + "background": "aquamarine", + "fur": "brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9514, + "metadata_dict": { + "eyes": "zombie", + "earring": "gold hoop", + "fur": "brown", + "mouth": "jovial", + "background": "gray", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9515, + "metadata_dict": { + "clothes": "wool turtleneck", + "earring": "gold hoop", + "fur": "red", + "background": "blue", + "hat": "bayc flipped brim", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9516, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "phoneme vuh", + "fur": "pink", + "background": "yellow", + "eyes": "crazy", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9517, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "cheetah", + "hat": "safari", + "clothes": "navy striped tee", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9518, + "metadata_dict": { + "mouth": "grin multicolored", + "background": "gray", + "hat": "fez", + "fur": "black", + "eyes": "bored", + "clothes": "sleeveless logo t" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9519, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "gray", + "mouth": "rage", + "earring": "silver stud", + "background": "aquamarine", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9520, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "leather jacket", + "earring": "gold stud", + "hat": "fisherman's hat", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9521, + "metadata_dict": { + "fur": "blue", + "hat": "party hat 1", + "background": "aquamarine", + "mouth": "bored", + "eyes": "crazy", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9522, + "metadata_dict": { + "hat": "bandana blue", + "fur": "red", + "background": "purple", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9523, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "short mohawk", + "mouth": "bored", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9524, + "metadata_dict": { + "earring": "gold hoop", + "fur": "noise", + "hat": "cowboy hat", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9525, + "metadata_dict": { + "mouth": "grin", + "clothes": "black t", + "background": "aquamarine", + "fur": "black", + "earring": "gold stud", + "hat": "cowboy hat", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9526, + "metadata_dict": { + "mouth": "bored kazoo", + "fur": "cream", + "eyes": "coins", + "clothes": "tuxedo tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9527, + "metadata_dict": { + "background": "new punk blue", + "hat": "s&m hat", + "clothes": "space suit", + "fur": "cheetah", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9528, + "metadata_dict": { + "eyes": "heart", + "background": "gray", + "fur": "golden brown", + "hat": "cowboy hat", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9529, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "red", + "eyes": "bored", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9530, + "metadata_dict": { + "fur": "tan", + "hat": "s&m hat", + "background": "aquamarine", + "clothes": "leather jacket", + "eyes": "robot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9531, + "metadata_dict": { + "earring": "diamond stud", + "background": "aquamarine", + "clothes": "tie dye", + "eyes": "bored", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9532, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "grin", + "eyes": "bored", + "fur": "brown", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9533, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "fur": "gray", + "clothes": "biker vest", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9534, + "metadata_dict": { + "fur": "red", + "background": "aquamarine", + "eyes": "3d", + "hat": "cowboy hat", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9535, + "metadata_dict": { + "eyes": "closed", + "clothes": "kings robe", + "mouth": "dumbfounded", + "hat": "spinner hat", + "fur": "pink", + "earring": "silver hoop", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9536, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "fur": "gray", + "earring": "diamond stud", + "background": "orange", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9537, + "metadata_dict": { + "fur": "black", + "clothes": "tuxedo tee", + "eyes": "bored", + "earring": "silver hoop", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9538, + "metadata_dict": { + "hat": "horns", + "mouth": "bored party horn", + "fur": "dark brown", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9539, + "metadata_dict": { + "clothes": "lumberjack shirt", + "background": "aquamarine", + "eyes": "robot", + "mouth": "bored unshaven pipe", + "earring": "silver hoop", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9540, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "clothes": "cowboy shirt", + "fur": "dark brown", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9541, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "space suit", + "mouth": "grin", + "fur": "black", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9542, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "eyes": "scumbag", + "fur": "dark brown", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9543, + "metadata_dict": { + "mouth": "grin", + "background": "blue", + "fur": "tan", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9544, + "metadata_dict": { + "mouth": "bored party horn", + "eyes": "3d", + "background": "orange", + "clothes": "lab coat", + "fur": "brown", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9545, + "metadata_dict": { + "mouth": "bored pipe", + "eyes": "bloodshot", + "background": "gray", + "fur": "white", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9546, + "metadata_dict": { + "eyes": "x eyes", + "fur": "dmt", + "background": "blue", + "hat": "army hat", + "clothes": "bone necklace", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9547, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "discomfort", + "earring": "gold stud", + "background": "orange", + "hat": "spinner hat", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9548, + "metadata_dict": { + "hat": "sushi chef headband", + "earring": "gold hoop", + "fur": "black", + "background": "gray", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9549, + "metadata_dict": { + "eyes": "closed", + "hat": "irish boho", + "background": "orange", + "fur": "cheetah", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9550, + "metadata_dict": { + "hat": "party hat 2", + "mouth": "phoneme vuh", + "fur": "pink", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9551, + "metadata_dict": { + "fur": "golden brown", + "background": "blue", + "eyes": "3d", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9552, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "hat": "spinner hat", + "earring": "gold stud", + "clothes": "tie dye", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9553, + "metadata_dict": { + "hat": "s&m hat", + "fur": "brown", + "mouth": "rage", + "earring": "silver stud", + "eyes": "bloodshot", + "clothes": "lab coat", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9554, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "clothes": "smoking jacket", + "fur": "dark brown", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9555, + "metadata_dict": { + "hat": "horns", + "eyes": "zombie", + "mouth": "dumbfounded", + "background": "blue", + "clothes": "leather jacket", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9556, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "eyes": "zombie", + "background": "orange", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9557, + "metadata_dict": { + "background": "new punk blue", + "clothes": "puffy vest", + "mouth": "bored unshaven bubblegum", + "fur": "death bot", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9558, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "hat": "ww2 pilot helm", + "eyes": "bored", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9559, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "brown", + "earring": "silver stud", + "eyes": "robot", + "clothes": "tanktop", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9560, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "hat": "fez", + "background": "yellow", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9561, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "white", + "background": "army green", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9562, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "eyes": "robot", + "hat": "army hat", + "background": "gray", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9563, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "eyes": "sleepy", + "fur": "black", + "clothes": "pimp coat", + "hat": "beanie", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9564, + "metadata_dict": { + "mouth": "phoneme l", + "earring": "diamond stud", + "clothes": "black t", + "background": "blue", + "hat": "fisherman's hat", + "fur": "death bot", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9565, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "jovial", + "background": "purple", + "fur": "dark brown", + "earring": "silver hoop", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9566, + "metadata_dict": { + "fur": "cream", + "mouth": "bored party horn", + "background": "orange", + "hat": "ww2 pilot helm", + "clothes": "admirals coat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9567, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "holographic", + "hat": "fez", + "mouth": "jovial", + "background": "blue", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9568, + "metadata_dict": { + "eyes": "crazy", + "hat": "girl's hair pink", + "earring": "silver hoop", + "fur": "brown", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9569, + "metadata_dict": { + "background": "new punk blue", + "eyes": "scumbag", + "clothes": "black t", + "fur": "black", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9570, + "metadata_dict": { + "mouth": "bored cigarette", + "clothes": "work vest", + "fur": "red", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9571, + "metadata_dict": { + "background": "new punk blue", + "eyes": "closed", + "mouth": "bored unshaven", + "clothes": "striped tee", + "hat": "party hat 1", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9572, + "metadata_dict": { + "eyes": "closed", + "hat": "s&m hat", + "fur": "solid gold", + "mouth": "bored unshaven cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9573, + "metadata_dict": { + "fur": "dark brown", + "background": "yellow", + "mouth": "phoneme wah", + "hat": "police motorcycle helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9574, + "metadata_dict": { + "clothes": "space suit", + "fur": "golden brown", + "mouth": "jovial", + "background": "blue", + "earring": "silver hoop", + "hat": "beanie", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9575, + "metadata_dict": { + "fur": "cream", + "hat": "horns", + "eyes": "zombie", + "clothes": "smoking jacket", + "mouth": "tongue out", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9576, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "red", + "clothes": "bayc t black", + "mouth": "bored unshaven cigar", + "background": "gray", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9577, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "stuntman helmet", + "clothes": "toga", + "background": "purple", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9578, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "cowboy hat", + "fur": "brown", + "background": "purple", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9579, + "metadata_dict": { + "mouth": "discomfort", + "fur": "brown", + "background": "gray", + "hat": "commie hat", + "eyes": "sunglasses", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9580, + "metadata_dict": { + "eyes": "hypnotized", + "fur": "gray", + "earring": "silver stud", + "mouth": "phoneme vuh", + "background": "orange", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9581, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "phoneme l", + "fur": "tan", + "background": "orange", + "hat": "fisherman's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9582, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven cigarette", + "background": "blue", + "fur": "brown", + "hat": "bayc hat red" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9583, + "metadata_dict": { + "fur": "tan", + "hat": "laurel wreath", + "eyes": "hypnotized", + "earring": "gold hoop", + "mouth": "rage", + "clothes": "prom dress", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9584, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "lumberjack shirt", + "hat": "irish boho", + "fur": "gray", + "eyes": "bloodshot", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9585, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "zombie", + "hat": "spinner hat", + "clothes": "tanktop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9586, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored cigar", + "hat": "seaman's hat", + "background": "blue", + "fur": "robot", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9587, + "metadata_dict": { + "hat": "irish boho", + "earring": "gold stud", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9588, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t red", + "fur": "dark brown", + "eyes": "bored", + "hat": "bowler", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9589, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "black t", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9590, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "dmt", + "clothes": "black t", + "background": "yellow", + "hat": "vietnam era helmet", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9591, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "orange", + "hat": "beanie", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9592, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "hat": "beanie", + "fur": "black", + "clothes": "sleeveless logo t", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9593, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "pink", + "background": "gray", + "hat": "bayc hat red", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9594, + "metadata_dict": { + "hat": "stuntman helmet", + "clothes": "biker vest", + "background": "orange", + "fur": "brown", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9595, + "metadata_dict": { + "mouth": "discomfort", + "hat": "prussian helmet", + "fur": "dark brown", + "background": "gray", + "clothes": "hip hop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9596, + "metadata_dict": { + "fur": "tan", + "hat": "baby's bonnet", + "mouth": "dumbfounded", + "background": "aquamarine", + "eyes": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9597, + "metadata_dict": { + "hat": "party hat 1", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9598, + "metadata_dict": { + "mouth": "bored party horn", + "fur": "black", + "background": "gray", + "eyes": "crazy", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9599, + "metadata_dict": { + "clothes": "sailor shirt", + "mouth": "jovial", + "fur": "black", + "background": "orange", + "hat": "bayc hat red", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9600, + "metadata_dict": { + "mouth": "phoneme ooo", + "eyes": "robot", + "fur": "cheetah", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9601, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "bored party horn", + "clothes": "prison jumpsuit", + "earring": "silver hoop", + "background": "purple", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9602, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "irish boho", + "background": "orange", + "fur": "dark brown", + "mouth": "small grin", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9603, + "metadata_dict": { + "fur": "brown", + "mouth": "dumbfounded", + "eyes": "bored", + "clothes": "admirals coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9604, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "fez", + "background": "aquamarine", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9605, + "metadata_dict": { + "fur": "tan", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9606, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "fur": "black", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9607, + "metadata_dict": { + "background": "aquamarine", + "mouth": "bored unshaven", + "fur": "brown", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9608, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "cream", + "hat": "spinner hat", + "eyes": "bored", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9609, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "jovial", + "background": "orange", + "earring": "silver hoop", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9610, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "brown", + "clothes": "black t", + "background": "orange", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9611, + "metadata_dict": { + "eyes": "closed", + "mouth": "discomfort", + "background": "blue", + "clothes": "tuxedo tee", + "earring": "silver hoop", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9612, + "metadata_dict": { + "fur": "dmt", + "eyes": "coins", + "background": "blue", + "hat": "spinner hat", + "mouth": "bored pipe" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9613, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "clothes": "lumberjack shirt", + "fur": "cheetah", + "hat": "beanie", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9614, + "metadata_dict": { + "eyes": "heart", + "fur": "cream", + "clothes": "biker vest", + "hat": "faux hawk", + "mouth": "phoneme wah", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9615, + "metadata_dict": { + "eyes": "eyepatch", + "clothes": "leather punk jacket", + "hat": "seaman's hat", + "background": "blue", + "fur": "black", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9616, + "metadata_dict": { + "mouth": "phoneme ooo", + "fur": "red", + "background": "yellow", + "hat": "safari", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9617, + "metadata_dict": { + "hat": "bandana blue", + "fur": "golden brown", + "mouth": "rage", + "background": "blue", + "clothes": "leather jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9618, + "metadata_dict": { + "clothes": "wool turtleneck", + "earring": "gold hoop", + "mouth": "jovial", + "background": "orange", + "fur": "brown", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9619, + "metadata_dict": { + "background": "new punk blue", + "fur": "gray", + "eyes": "bloodshot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9620, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "cream", + "mouth": "grin", + "eyes": "bloodshot", + "clothes": "tuxedo tee", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9621, + "metadata_dict": { + "earring": "diamond stud", + "background": "aquamarine", + "fur": "dark brown", + "hat": "vietnam era helmet", + "mouth": "bored cigar", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9622, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9623, + "metadata_dict": { + "eyes": "closed", + "fur": "cream", + "clothes": "sailor shirt", + "background": "orange", + "mouth": "bored unshaven cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9624, + "metadata_dict": { + "hat": "s&m hat", + "clothes": "sailor shirt", + "mouth": "dumbfounded", + "fur": "black", + "background": "orange", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9625, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "pink", + "eyes": "bored", + "hat": "fisherman's hat", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9626, + "metadata_dict": { + "hat": "stuntman helmet", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9627, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "blindfold", + "fur": "cream", + "clothes": "black holes t", + "hat": "stuntman helmet", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9628, + "metadata_dict": { + "fur": "cream", + "background": "aquamarine", + "eyes": "bored", + "hat": "cowboy hat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9629, + "metadata_dict": { + "hat": "baby's bonnet", + "background": "purple", + "mouth": "bored", + "eyes": "angry", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9630, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "sleeveless t", + "fur": "golden brown", + "mouth": "phoneme vuh", + "hat": "girl's hair short", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9631, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "stuntman helmet", + "eyes": "robot", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9632, + "metadata_dict": { + "fur": "golden brown", + "mouth": "dumbfounded", + "eyes": "3d", + "hat": "short mohawk", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9633, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin diamond grill", + "earring": "silver stud", + "fur": "dark brown", + "hat": "cowboy hat", + "clothes": "guayabera", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9634, + "metadata_dict": { + "earring": "gold hoop", + "fur": "black", + "clothes": "tie dye", + "background": "purple", + "mouth": "bored", + "eyes": "crazy", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9635, + "metadata_dict": { + "mouth": "dumbfounded", + "earring": "silver stud", + "fur": "black", + "clothes": "guayabera", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9636, + "metadata_dict": { + "mouth": "grin", + "eyes": "zombie", + "clothes": "tweed suit", + "fur": "black", + "earring": "gold stud", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9637, + "metadata_dict": { + "fur": "tan", + "hat": "seaman's hat", + "earring": "diamond stud", + "mouth": "bored pipe", + "eyes": "3d", + "clothes": "tuxedo tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9638, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "hat": "army hat", + "mouth": "tongue out", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9639, + "metadata_dict": { + "eyes": "coins", + "fur": "gray", + "clothes": "rainbow suspenders", + "background": "purple", + "mouth": "bored cigarette", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9640, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "wool turtleneck", + "hat": "seaman's hat", + "earring": "gold hoop", + "fur": "dark brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9641, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "pink", + "hat": "cowboy hat", + "clothes": "tanktop", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9642, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "eyes": "3d", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9643, + "metadata_dict": { + "fur": "cream", + "mouth": "grin multicolored", + "background": "blue", + "eyes": "bored", + "earring": "silver hoop", + "hat": "army hat", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9644, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "bloodshot", + "fur": "brown", + "hat": "bowler", + "background": "purple", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9645, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "earring": "gold hoop", + "mouth": "rage", + "hat": "fez", + "fur": "cheetah", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9646, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "tan", + "clothes": "tweed suit", + "eyes": "3d", + "background": "gray", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9647, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "gray", + "eyes": "coins", + "clothes": "black suit", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9648, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "aquamarine", + "clothes": "leather jacket", + "earring": "gold stud", + "eyes": "3d", + "hat": "beanie", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9649, + "metadata_dict": { + "background": "new punk blue", + "eyes": "heart", + "mouth": "grin", + "earring": "gold hoop", + "hat": "safari", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9650, + "metadata_dict": { + "clothes": "work vest", + "background": "aquamarine", + "fur": "black", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9651, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "fur": "cream", + "hat": "short mohawk", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9652, + "metadata_dict": { + "fur": "tan", + "clothes": "leather jacket", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9653, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "phoneme oh", + "eyes": "coins", + "earring": "silver hoop", + "background": "army green", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9654, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "mouth": "grin", + "hat": "girl's hair short", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9655, + "metadata_dict": { + "background": "blue", + "fur": "dark brown", + "clothes": "stunt jacket", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9656, + "metadata_dict": { + "background": "new punk blue", + "hat": "party hat 2", + "fur": "tan", + "mouth": "phoneme vuh", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9657, + "metadata_dict": { + "clothes": "wool turtleneck", + "eyes": "blindfold", + "mouth": "bored unshaven cigarette", + "background": "army green", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9658, + "metadata_dict": { + "eyes": "closed", + "fur": "dmt", + "clothes": "work vest", + "hat": "spinner hat", + "background": "orange", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9659, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "mouth": "bored pipe", + "clothes": "tie dye", + "hat": "cowboy hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9660, + "metadata_dict": { + "mouth": "grin", + "fur": "black", + "eyes": "bored", + "background": "purple", + "hat": "commie hat", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9661, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "earring": "silver stud", + "background": "orange", + "eyes": "bored", + "hat": "bowler" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9662, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "noise", + "background": "gray", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9663, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "background": "blue", + "earring": "gold stud", + "fur": "dark brown", + "hat": "army hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9664, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "closed", + "background": "blue", + "earring": "gold stud", + "clothes": "bayc t black", + "fur": "white", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9665, + "metadata_dict": { + "eyes": "sleepy", + "fur": "pink", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9666, + "metadata_dict": { + "clothes": "prom dress", + "fur": "black", + "hat": "beanie", + "background": "purple", + "mouth": "bored cigarette", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9667, + "metadata_dict": { + "eyes": "zombie", + "mouth": "rage", + "fur": "pink", + "background": "orange", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9668, + "metadata_dict": { + "clothes": "striped tee", + "earring": "silver stud", + "mouth": "bored unshaven pipe", + "background": "orange", + "fur": "dark brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9669, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "black holes t", + "hat": "commie hat", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9670, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "s&m hat", + "clothes": "toga", + "fur": "brown", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9671, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "zombie", + "clothes": "prison jumpsuit", + "fur": "pink", + "background": "purple", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9672, + "metadata_dict": { + "background": "blue", + "mouth": "bored", + "fur": "dark brown", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9673, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "mouth": "bored cigarette", + "fur": "blue", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9674, + "metadata_dict": { + "clothes": "smoking jacket", + "fur": "dark brown", + "mouth": "small grin", + "background": "army green", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9675, + "metadata_dict": { + "hat": "s&m hat", + "mouth": "grin", + "eyes": "coins", + "background": "orange", + "clothes": "bone necklace", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9676, + "metadata_dict": { + "eyes": "zombie", + "clothes": "tweed suit", + "background": "aquamarine", + "mouth": "jovial", + "fur": "black", + "hat": "faux hawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9677, + "metadata_dict": { + "mouth": "bored unshaven party horn", + "clothes": "sailor shirt", + "background": "orange", + "fur": "dark brown", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9678, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "clothes": "sailor shirt", + "background": "blue", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9679, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "hat": "bowler", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9680, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "s&m hat", + "background": "aquamarine", + "fur": "brown", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9681, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "halo", + "mouth": "dumbfounded", + "clothes": "biker vest", + "background": "gray", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9682, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "sailor shirt", + "hat": "king's crown", + "background": "purple", + "mouth": "phoneme wah", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9683, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "hat": "seaman's hat", + "mouth": "dumbfounded", + "clothes": "leather jacket", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9684, + "metadata_dict": { + "background": "new punk blue", + "hat": "sea captain's hat", + "fur": "pink", + "mouth": "bored cigarette", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9685, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "fur": "golden brown", + "background": "yellow", + "eyes": "sleepy", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9686, + "metadata_dict": { + "background": "aquamarine", + "clothes": "leather jacket", + "fur": "dark brown", + "mouth": "phoneme wah", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9687, + "metadata_dict": { + "mouth": "rage", + "fur": "black", + "clothes": "admirals coat", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9688, + "metadata_dict": { + "hat": "bayc hat black", + "earring": "gold stud", + "fur": "dark brown", + "clothes": "bone necklace", + "eyes": "sleepy", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9689, + "metadata_dict": { + "hat": "seaman's hat", + "clothes": "black t", + "background": "blue", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9690, + "metadata_dict": { + "eyes": "closed", + "clothes": "bandolier", + "earring": "gold stud", + "background": "orange", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9691, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "gray", + "hat": "king's crown", + "eyes": "3d" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9692, + "metadata_dict": { + "clothes": "blue dress", + "fur": "golden brown", + "mouth": "phoneme vuh", + "hat": "beanie", + "background": "purple", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9693, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "bored unshaven", + "background": "orange", + "hat": "bayc hat red", + "fur": "blue", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9694, + "metadata_dict": { + "hat": "horns", + "background": "blue", + "fur": "dark brown", + "clothes": "bayc t black", + "eyes": "bored", + "mouth": "small grin" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9695, + "metadata_dict": { + "hat": "s&m hat", + "fur": "cream", + "eyes": "bloodshot", + "background": "gray", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9696, + "metadata_dict": { + "hat": "party hat 2", + "fur": "trippy", + "mouth": "grin", + "clothes": "guayabera", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9697, + "metadata_dict": { + "eyes": "closed", + "fur": "red", + "background": "yellow", + "mouth": "bored", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9698, + "metadata_dict": { + "earring": "silver stud", + "clothes": "work vest", + "fur": "black", + "background": "orange", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9699, + "metadata_dict": { + "fur": "gray", + "clothes": "prison jumpsuit", + "mouth": "bored", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9700, + "metadata_dict": { + "hat": "fez", + "earring": "silver stud", + "clothes": "smoking jacket", + "fur": "death bot", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9701, + "metadata_dict": { + "mouth": "phoneme oh", + "hat": "horns", + "earring": "silver stud", + "clothes": "tuxedo tee", + "background": "yellow", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9702, + "metadata_dict": { + "eyes": "x eyes", + "fur": "gray", + "mouth": "dumbfounded", + "background": "orange", + "hat": "cowboy hat", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9703, + "metadata_dict": { + "mouth": "rage", + "background": "blue", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "navy striped tee", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9704, + "metadata_dict": { + "background": "orange", + "clothes": "biker vest", + "fur": "brown", + "hat": "bowler", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9705, + "metadata_dict": { + "hat": "horns", + "fur": "dark brown", + "clothes": "toga", + "background": "purple", + "mouth": "bored", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9706, + "metadata_dict": { + "hat": "sea captain's hat", + "mouth": "dumbfounded", + "background": "aquamarine", + "fur": "pink", + "clothes": "stunt jacket", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9707, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "bandana blue", + "fur": "golden brown", + "eyes": "coins", + "clothes": "sailor shirt", + "background": "aquamarine" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9708, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "beanie", + "fur": "black", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9709, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "lumberjack shirt", + "mouth": "grin", + "background": "aquamarine", + "fur": "dark brown", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9710, + "metadata_dict": { + "mouth": "bored kazoo", + "background": "orange", + "fur": "dark brown", + "clothes": "tanktop", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9711, + "metadata_dict": { + "fur": "tan", + "background": "purple", + "mouth": "small grin", + "clothes": "sleeveless logo t", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9712, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9713, + "metadata_dict": { + "mouth": "bored unshaven pipe", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9714, + "metadata_dict": { + "clothes": "lumberjack shirt", + "background": "gray", + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9715, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "hawaiian", + "background": "orange", + "eyes": "bored", + "hat": "cowboy hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9716, + "metadata_dict": { + "mouth": "discomfort", + "fur": "red", + "background": "blue", + "eyes": "3d", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9717, + "metadata_dict": { + "clothes": "black holes t", + "earring": "silver stud", + "fur": "pink", + "eyes": "bloodshot", + "mouth": "bored", + "background": "purple", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9718, + "metadata_dict": { + "fur": "tan", + "clothes": "smoking jacket", + "background": "gray", + "eyes": "sleepy", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9719, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "black holes t", + "fur": "black", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9720, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "cowboy shirt", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9721, + "metadata_dict": { + "eyes": "coins", + "earring": "silver hoop", + "hat": "bayc hat red", + "background": "gray", + "clothes": "bone necklace", + "fur": "death bot", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9722, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "fur": "dark brown", + "hat": "bayc flipped brim", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9723, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "hat": "king's crown", + "mouth": "small grin", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9724, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "irish boho", + "background": "blue", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9725, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "prison jumpsuit", + "fur": "black", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9726, + "metadata_dict": { + "background": "gray", + "earring": "silver stud", + "eyes": "bloodshot", + "fur": "brown", + "clothes": "bone necklace", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9727, + "metadata_dict": { + "eyes": "closed", + "clothes": "wool turtleneck", + "fur": "black", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9728, + "metadata_dict": { + "background": "new punk blue", + "fur": "trippy", + "mouth": "bored unshaven pipe", + "hat": "spinner hat", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9729, + "metadata_dict": { + "clothes": "lumberjack shirt", + "eyes": "hypnotized", + "fur": "dark brown", + "background": "gray", + "hat": "bunny ears", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9730, + "metadata_dict": { + "mouth": "dumbfounded", + "background": "purple", + "hat": "safari", + "fur": "white", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9731, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "earring": "silver hoop", + "hat": "fisherman's hat", + "fur": "brown", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9732, + "metadata_dict": { + "clothes": "bayc t red", + "eyes": "scumbag", + "fur": "gray", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9733, + "metadata_dict": { + "clothes": "black holes t", + "mouth": "phoneme ooo", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray", + "fur": "white", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9734, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "golden brown", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9735, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "baby's bonnet", + "eyes": "bored", + "clothes": "bone necklace", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9736, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "smoking jacket", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9737, + "metadata_dict": { + "clothes": "wool turtleneck", + "hat": "horns", + "background": "gray", + "mouth": "dumbfounded", + "eyes": "bored", + "fur": "brown", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9738, + "metadata_dict": { + "background": "new punk blue", + "eyes": "eyepatch", + "fur": "dmt", + "earring": "silver stud", + "mouth": "bored cigarette", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9739, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "background": "blue", + "hat": "ww2 pilot helm", + "clothes": "admirals coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9740, + "metadata_dict": { + "mouth": "bored party horn", + "hat": "fez", + "background": "blue", + "clothes": "leather jacket", + "eyes": "sleepy", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9741, + "metadata_dict": { + "fur": "brown", + "eyes": "bored", + "hat": "bayc hat red", + "mouth": "bored unshaven cigarette", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9742, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "jovial", + "background": "orange", + "earring": "silver hoop", + "fur": "brown", + "hat": "vietnam era helmet", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9743, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "hat": "spinner hat", + "background": "purple", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9744, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "vietnam era helmet", + "fur": "brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9745, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "dmt", + "earring": "gold stud", + "mouth": "bored unshaven cigar", + "background": "gray", + "hat": "vietnam era helmet", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9746, + "metadata_dict": { + "mouth": "grin", + "background": "aquamarine", + "eyes": "3d", + "fur": "dark brown", + "hat": "halo", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9747, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "rage", + "background": "orange", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9748, + "metadata_dict": { + "clothes": "striped tee", + "background": "yellow", + "eyes": "bored", + "hat": "beanie", + "mouth": "bored", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9749, + "metadata_dict": { + "earring": "gold hoop", + "background": "purple", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored", + "hat": "police motorcycle helmet", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9750, + "metadata_dict": { + "mouth": "phoneme l", + "fur": "tan", + "eyes": "holographic", + "background": "aquamarine", + "hat": "cowboy hat", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9751, + "metadata_dict": { + "fur": "cream", + "clothes": "space suit", + "hat": "bunny ears", + "background": "purple", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9752, + "metadata_dict": { + "hat": "seaman's hat", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9753, + "metadata_dict": { + "eyes": "heart", + "hat": "irish boho", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9754, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "pink", + "eyes": "bloodshot", + "background": "purple", + "mouth": "bored cigarette", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9755, + "metadata_dict": { + "clothes": "space suit", + "fur": "dmt", + "eyes": "coins", + "mouth": "rage", + "earring": "silver hoop", + "background": "gray", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9756, + "metadata_dict": { + "eyes": "coins", + "mouth": "bored pipe", + "hat": "bayc flipped brim", + "fur": "brown", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9757, + "metadata_dict": { + "mouth": "phoneme l", + "background": "gray", + "hat": "bunny ears", + "clothes": "navy striped tee", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9758, + "metadata_dict": { + "background": "orange", + "eyes": "crazy", + "fur": "robot", + "mouth": "rage" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9759, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "seaman's hat", + "clothes": "smoking jacket", + "eyes": "bloodshot", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9760, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "clothes": "tuxedo tee", + "mouth": "bored", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9761, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "earring": "gold hoop", + "fur": "noise", + "background": "gray", + "eyes": "crazy", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9762, + "metadata_dict": { + "fur": "cream", + "hat": "king's crown", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9763, + "metadata_dict": { + "mouth": "phoneme l", + "clothes": "striped tee", + "hat": "baby's bonnet", + "fur": "gray", + "background": "orange", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9764, + "metadata_dict": { + "earring": "silver stud", + "background": "blue", + "clothes": "lab coat", + "fur": "brown", + "eyes": "sleepy", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9765, + "metadata_dict": { + "background": "new punk blue", + "hat": "irish boho", + "eyes": "bored", + "fur": "brown", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9766, + "metadata_dict": { + "background": "aquamarine", + "clothes": "work vest", + "fur": "black", + "eyes": "bored", + "hat": "bowler", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9767, + "metadata_dict": { + "hat": "irish boho", + "clothes": "bone tee", + "earring": "gold hoop", + "eyes": "bored", + "background": "purple", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9768, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "rage", + "fur": "dark brown", + "hat": "army hat", + "background": "army green", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9769, + "metadata_dict": { + "hat": "horns", + "eyes": "hypnotized", + "background": "aquamarine", + "fur": "dark brown", + "clothes": "bone necklace", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9770, + "metadata_dict": { + "eyes": "x eyes", + "mouth": "grin multicolored", + "fur": "dark brown", + "hat": "bayc flipped brim", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9771, + "metadata_dict": { + "fur": "cream", + "hat": "horns", + "mouth": "dumbfounded", + "clothes": "tuxedo tee", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9772, + "metadata_dict": { + "eyes": "closed", + "background": "gray", + "fur": "golden brown", + "earring": "silver hoop", + "mouth": "bored unshaven cigarette", + "hat": "bowler", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9773, + "metadata_dict": { + "mouth": "bored unshaven cigarette", + "background": "yellow", + "eyes": "bloodshot", + "fur": "cream" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9774, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "earring": "silver stud", + "fur": "pink", + "clothes": "lab coat", + "background": "gray", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9775, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven pipe", + "background": "orange", + "hat": "bayc flipped brim", + "fur": "cheetah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9776, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "golden brown", + "hat": "bayc flipped brim", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9777, + "metadata_dict": { + "eyes": "laser eyes", + "fur": "cream", + "mouth": "bored unshaven bubblegum", + "clothes": "biker vest", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9778, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9779, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "cream", + "hat": "horns", + "mouth": "grin", + "clothes": "prison jumpsuit", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9780, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "beanie", + "clothes": "toga", + "fur": "brown", + "background": "yellow", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9781, + "metadata_dict": { + "eyes": "x eyes", + "hat": "party hat 2", + "clothes": "space suit", + "mouth": "grin", + "fur": "golden brown", + "earring": "diamond stud", + "background": "orange" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9782, + "metadata_dict": { + "eyes": "coins", + "mouth": "rage", + "earring": "silver stud", + "fur": "brown", + "background": "yellow", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9783, + "metadata_dict": { + "clothes": "sleeveless t", + "fur": "black", + "eyes": "bloodshot", + "hat": "bayc flipped brim", + "background": "purple", + "mouth": "phoneme wah" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9784, + "metadata_dict": { + "eyes": "closed", + "clothes": "black holes t", + "hat": "stuntman helmet", + "mouth": "bored pipe", + "fur": "pink", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9785, + "metadata_dict": { + "eyes": "coins", + "background": "aquamarine", + "clothes": "tie dye", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored cigarette", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9786, + "metadata_dict": { + "eyes": "closed", + "mouth": "grin", + "background": "orange", + "clothes": "guayabera", + "hat": "commie hat", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9787, + "metadata_dict": { + "background": "new punk blue", + "hat": "bayc hat black", + "fur": "tan", + "mouth": "small grin", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9788, + "metadata_dict": { + "clothes": "sailor shirt", + "background": "aquamarine", + "fur": "red", + "eyes": "3d", + "earring": "silver hoop", + "mouth": "bored", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9789, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "black", + "background": "orange", + "clothes": "bone necklace", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9790, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "hat": "s&m hat", + "clothes": "prison jumpsuit", + "fur": "black", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9791, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "earring": "gold hoop", + "clothes": "black t", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9792, + "metadata_dict": { + "fur": "cream", + "eyes": "robot", + "hat": "ww2 pilot helm", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9793, + "metadata_dict": { + "mouth": "grin", + "background": "gray", + "fur": "zombie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9794, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "coins", + "background": "orange", + "clothes": "tanktop", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9795, + "metadata_dict": { + "mouth": "grin", + "fur": "gray", + "clothes": "prison jumpsuit", + "background": "blue", + "hat": "bunny ears", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9796, + "metadata_dict": { + "mouth": "bored unshaven pizza", + "fur": "golden brown", + "earring": "silver stud", + "eyes": "bored", + "hat": "cowboy hat", + "background": "gray", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9797, + "metadata_dict": { + "mouth": "discomfort", + "eyes": "closed", + "fur": "cream", + "earring": "silver stud", + "background": "aquamarine", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9798, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "golden brown", + "clothes": "leather jacket", + "background": "orange", + "earring": "silver hoop", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9799, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "clothes": "biker vest", + "fur": "dark brown", + "hat": "army hat", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9800, + "metadata_dict": { + "eyes": "closed", + "fur": "tan", + "mouth": "phoneme vuh", + "clothes": "leather jacket", + "background": "orange", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9801, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "mouth": "grin", + "hat": "seaman's hat", + "fur": "white", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9802, + "metadata_dict": { + "hat": "bayc hat black", + "background": "blue", + "fur": "pink", + "eyes": "bored", + "mouth": "bored", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9803, + "metadata_dict": { + "background": "aquamarine", + "fur": "brown", + "hat": "beanie", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9804, + "metadata_dict": { + "fur": "cream", + "clothes": "sleeveless t", + "mouth": "phoneme vuh", + "background": "gray", + "eyes": "sleepy", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9805, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "cream", + "earring": "gold hoop", + "clothes": "sailor shirt", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9806, + "metadata_dict": { + "eyes": "heart", + "mouth": "bored kazoo", + "fur": "cream", + "background": "orange", + "clothes": "toga" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9807, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "background": "gray", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9808, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "background": "aquamarine", + "clothes": "leather jacket", + "eyes": "bloodshot", + "hat": "safari" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9809, + "metadata_dict": { + "mouth": "grin diamond grill", + "earring": "silver stud", + "fur": "black", + "background": "orange", + "eyes": "bloodshot", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9810, + "metadata_dict": { + "fur": "black", + "earring": "silver hoop", + "eyes": "bored", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9811, + "metadata_dict": { + "fur": "cream", + "hat": "fez", + "background": "blue", + "eyes": "bloodshot", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9812, + "metadata_dict": { + "eyes": "closed", + "mouth": "rage", + "fur": "black", + "clothes": "biker vest", + "hat": "short mohawk", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9813, + "metadata_dict": { + "mouth": "phoneme l", + "hat": "fez", + "eyes": "bored", + "background": "yellow", + "fur": "robot", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9814, + "metadata_dict": { + "fur": "golden brown", + "clothes": "tweed suit", + "earring": "silver stud", + "eyes": "bored", + "mouth": "bored unshaven cigar", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9815, + "metadata_dict": { + "background": "blue", + "mouth": "bored unshaven kazoo", + "eyes": "bored", + "clothes": "lab coat", + "fur": "cheetah", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9816, + "metadata_dict": { + "fur": "cream", + "mouth": "bored unshaven kazoo", + "hat": "fisherman's hat", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9817, + "metadata_dict": { + "eyes": "closed", + "fur": "golden brown", + "mouth": "grin", + "clothes": "prison jumpsuit", + "hat": "spinner hat", + "earring": "gold stud", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9818, + "metadata_dict": { + "mouth": "bored dagger", + "hat": "short mohawk", + "eyes": "bored", + "fur": "cheetah", + "background": "army green", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9819, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "lumberjack shirt", + "eyes": "hypnotized", + "background": "blue", + "fur": "black", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9820, + "metadata_dict": { + "eyes": "coins", + "fur": "red", + "background": "blue", + "clothes": "lab coat", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9821, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "hypnotized", + "mouth": "bored", + "background": "gray", + "hat": "commie hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9822, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "hat": "sushi chef headband", + "eyes": "hypnotized", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9823, + "metadata_dict": { + "eyes": "x eyes", + "clothes": "prison jumpsuit", + "fur": "red", + "mouth": "small grin", + "background": "yellow", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9824, + "metadata_dict": { + "eyes": "blindfold", + "clothes": "tie dye", + "fur": "brown", + "background": "purple", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9825, + "metadata_dict": { + "background": "new punk blue", + "hat": "horns", + "eyes": "coins", + "clothes": "rainbow suspenders", + "fur": "brown", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9826, + "metadata_dict": { + "fur": "golden brown", + "eyes": "zombie", + "hat": "bowler", + "mouth": "bored", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9827, + "metadata_dict": { + "clothes": "striped tee", + "eyes": "hypnotized", + "mouth": "bored unshaven cigar", + "background": "purple", + "hat": "police motorcycle helmet", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9828, + "metadata_dict": { + "eyes": "closed", + "hat": "army hat", + "mouth": "tongue out", + "background": "purple", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9829, + "metadata_dict": { + "fur": "golden brown", + "eyes": "coins", + "hat": "girl's hair pink", + "mouth": "rage", + "background": "yellow", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9830, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "blue", + "earring": "gold stud", + "clothes": "biker vest", + "hat": "bayc flipped brim", + "eyes": "angry", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9831, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "clothes": "striped tee", + "eyes": "bloodshot", + "hat": "bowler", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9832, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "fur": "black", + "earring": "silver hoop", + "hat": "faux hawk", + "clothes": "stunt jacket", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9833, + "metadata_dict": { + "eyes": "blindfold", + "mouth": "jovial", + "background": "aquamarine", + "hat": "commie hat", + "fur": "zombie", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9834, + "metadata_dict": { + "clothes": "leather punk jacket", + "fur": "gray", + "earring": "gold stud", + "eyes": "bloodshot", + "hat": "faux hawk", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9835, + "metadata_dict": { + "background": "blue", + "eyes": "bored", + "earring": "silver hoop", + "clothes": "tanktop", + "mouth": "bored", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9836, + "metadata_dict": { + "background": "new punk blue", + "mouth": "bored unshaven", + "hat": "spinner hat", + "fur": "pink", + "eyes": "bloodshot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9837, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "bored unshaven", + "hat": "irish boho", + "fur": "black", + "background": "purple", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9838, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "toga", + "eyes": "bored", + "earring": "silver hoop", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9839, + "metadata_dict": { + "fur": "golden brown", + "clothes": "lab coat", + "background": "purple", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9840, + "metadata_dict": { + "fur": "gray", + "mouth": "bored unshaven pipe", + "background": "orange", + "eyes": "bored", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9841, + "metadata_dict": { + "mouth": "phoneme oh", + "fur": "gray", + "eyes": "robot", + "hat": "beanie", + "earring": "cross", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9842, + "metadata_dict": { + "hat": "baby's bonnet", + "fur": "red", + "background": "purple", + "eyes": "bored", + "clothes": "guayabera", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9843, + "metadata_dict": { + "fur": "golden brown", + "mouth": "bored unshaven kazoo", + "clothes": "bayc t black", + "background": "gray", + "hat": "bowler", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9844, + "metadata_dict": { + "clothes": "leather punk jacket", + "background": "blue", + "hat": "short mohawk", + "mouth": "bored", + "eyes": "angry", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9845, + "metadata_dict": { + "mouth": "phoneme l", + "eyes": "coins", + "background": "blue", + "fur": "pink", + "clothes": "tuxedo tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9846, + "metadata_dict": { + "clothes": "striped tee", + "mouth": "grin", + "hat": "seaman's hat", + "background": "aquamarine", + "fur": "black", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9847, + "metadata_dict": { + "background": "new punk blue", + "clothes": "sleeveless t", + "fur": "gray", + "hat": "girl's hair pink", + "mouth": "bored", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9848, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "tan", + "hat": "short mohawk", + "background": "purple", + "mouth": "bored", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9849, + "metadata_dict": { + "hat": "baby's bonnet", + "mouth": "bored unshaven pipe", + "fur": "black", + "eyes": "bloodshot", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9850, + "metadata_dict": { + "mouth": "grin multicolored", + "background": "purple", + "fur": "dark brown", + "hat": "girl's hair short", + "eyes": "sleepy", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9851, + "metadata_dict": { + "eyes": "closed", + "fur": "cheetah", + "background": "aquamarine", + "clothes": "bayc t black", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9852, + "metadata_dict": { + "hat": "baby's bonnet", + "earring": "diamond stud", + "eyes": "sleepy", + "fur": "dark brown", + "mouth": "bored unshaven cigarette", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9853, + "metadata_dict": { + "background": "new punk blue", + "fur": "black", + "hat": "army hat", + "mouth": "bored", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9854, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "laser eyes", + "mouth": "bored bubblegum", + "fur": "pink", + "background": "army green", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9855, + "metadata_dict": { + "eyes": "eyepatch", + "background": "yellow", + "mouth": "bored", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9856, + "metadata_dict": { + "background": "new punk blue", + "clothes": "bandolier", + "hat": "stuntman helmet", + "fur": "dark brown", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9857, + "metadata_dict": { + "clothes": "wool turtleneck", + "mouth": "grin", + "fur": "black", + "background": "gray", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9858, + "metadata_dict": { + "background": "new punk blue", + "hat": "bandana blue", + "eyes": "bored", + "earring": "silver hoop", + "fur": "brown", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9859, + "metadata_dict": { + "background": "purple", + "eyes": "crazy", + "fur": "blue", + "mouth": "grin multicolored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9860, + "metadata_dict": { + "fur": "golden brown", + "hat": "girl's hair pink", + "clothes": "biker vest", + "eyes": "sleepy", + "mouth": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9861, + "metadata_dict": { + "clothes": "tweed suit", + "hat": "fez", + "background": "aquamarine", + "eyes": "blue beams", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9862, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "blue dress", + "eyes": "angry", + "hat": "police motorcycle helmet", + "fur": "blue", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9863, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "dumbfounded", + "background": "blue", + "earring": "gold stud", + "clothes": "smoking jacket", + "fur": "pink", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9864, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "grin", + "clothes": "cowboy shirt", + "eyes": "bored", + "fur": "brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9865, + "metadata_dict": { + "mouth": "rage", + "eyes": "3d", + "fur": "pink", + "earring": "silver hoop", + "hat": "faux hawk", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9866, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "jovial", + "fur": "cheetah", + "hat": "commie hat", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9867, + "metadata_dict": { + "eyes": "heart", + "clothes": "wool turtleneck", + "fur": "tan", + "background": "aquamarine", + "hat": "bowler", + "earring": "cross", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9868, + "metadata_dict": { + "mouth": "phoneme oh", + "clothes": "black holes t", + "background": "orange", + "earring": "silver hoop", + "fur": "brown", + "hat": "safari", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9869, + "metadata_dict": { + "mouth": "phoneme vuh", + "background": "orange", + "clothes": "biker vest", + "eyes": "bored", + "fur": "death bot", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9870, + "metadata_dict": { + "eyes": "holographic", + "fur": "cream", + "hat": "stuntman helmet", + "background": "orange", + "clothes": "prom dress", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9871, + "metadata_dict": { + "clothes": "bone necklace", + "mouth": "phoneme vuh", + "eyes": "bloodshot", + "background": "yellow", + "fur": "death bot", + "hat": "commie hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9872, + "metadata_dict": { + "hat": "seaman's hat", + "mouth": "jovial", + "eyes": "bored", + "fur": "brown", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9873, + "metadata_dict": { + "clothes": "leather punk jacket", + "mouth": "grin", + "eyes": "coins", + "background": "blue", + "fur": "dark brown", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9874, + "metadata_dict": { + "clothes": "sleeveless t", + "background": "gray", + "eyes": "hypnotized", + "mouth": "jovial", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9875, + "metadata_dict": { + "clothes": "lab coat", + "mouth": "phoneme vuh", + "eyes": "robot", + "fur": "noise", + "hat": "fisherman's hat", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9876, + "metadata_dict": { + "background": "new punk blue", + "fur": "noise", + "clothes": "bayc t black", + "hat": "army hat", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9877, + "metadata_dict": { + "eyes": "blindfold", + "fur": "gray", + "clothes": "black t", + "mouth": "phoneme vuh", + "earring": "silver stud", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9878, + "metadata_dict": { + "hat": "horns", + "clothes": "black holes t", + "background": "aquamarine", + "mouth": "jovial", + "fur": "black", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9879, + "metadata_dict": { + "clothes": "black holes t", + "fur": "gray", + "eyes": "coins", + "mouth": "bored", + "hat": "police motorcycle helmet", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9880, + "metadata_dict": { + "clothes": "sleeveless t", + "mouth": "dumbfounded", + "fur": "dark brown", + "hat": "commie hat", + "background": "yellow", + "earring": "cross", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9881, + "metadata_dict": { + "earring": "gold hoop", + "mouth": "phoneme vuh", + "background": "aquamarine", + "clothes": "cowboy shirt", + "hat": "army hat", + "eyes": "bored", + "fur": "death bot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9882, + "metadata_dict": { + "eyes": "heart", + "clothes": "black holes t", + "mouth": "bored unshaven cigar", + "fur": "brown", + "background": "yellow", + "earring": "cross" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9883, + "metadata_dict": { + "fur": "gray", + "clothes": "black t", + "background": "orange", + "eyes": "bored", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9884, + "metadata_dict": { + "fur": "gray", + "clothes": "lab coat", + "background": "gray", + "hat": "bowler", + "mouth": "bored", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9885, + "metadata_dict": { + "eyes": "eyepatch", + "fur": "golden brown", + "background": "blue", + "earring": "gold stud", + "hat": "army hat", + "mouth": "bored unshaven cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9886, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "bloodshot", + "hat": "army hat", + "clothes": "bone necklace", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9887, + "metadata_dict": { + "hat": "bayc hat black", + "eyes": "closed", + "background": "new punk blue", + "fur": "black", + "earring": "cross", + "mouth": "bored", + "clothes": "hip hop" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9888, + "metadata_dict": { + "hat": "fez", + "eyes": "3d", + "fur": "dark brown", + "clothes": "tuxedo tee", + "mouth": "bored unshaven cigar", + "background": "gray" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9889, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "bandolier", + "background": "orange", + "eyes": "3d", + "mouth": "small grin", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9890, + "metadata_dict": { + "fur": "tan", + "clothes": "rainbow suspenders", + "hat": "girl's hair pink", + "background": "purple", + "mouth": "bored cigar", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9891, + "metadata_dict": { + "hat": "bayc hat black", + "mouth": "bored unshaven", + "clothes": "black t", + "fur": "black", + "background": "purple", + "eyes": "angry" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9892, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "party hat 1", + "fur": "red", + "eyes": "bored", + "background": "gray", + "clothes": "stunt jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9893, + "metadata_dict": { + "fur": "gray", + "mouth": "jovial", + "background": "blue", + "eyes": "bored", + "clothes": "sleeveless logo t", + "hat": "police motorcycle helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9894, + "metadata_dict": { + "mouth": "grin", + "fur": "golden brown", + "background": "orange", + "eyes": "bored", + "hat": "commie hat", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9895, + "metadata_dict": { + "fur": "blue", + "hat": "horns", + "mouth": "dumbfounded", + "background": "blue", + "earring": "silver hoop", + "clothes": "hip hop", + "eyes": "cyborg" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9896, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "prussian helmet", + "background": "aquamarine", + "clothes": "pimp coat", + "fur": "brown", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9897, + "metadata_dict": { + "background": "new punk blue", + "eyes": "x eyes", + "fur": "tan", + "hat": "irish boho", + "earring": "silver stud", + "mouth": "bored", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9898, + "metadata_dict": { + "background": "aquamarine", + "fur": "black", + "clothes": "biker vest", + "earring": "silver hoop", + "hat": "fisherman's hat", + "mouth": "bored unshaven cigarette", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9899, + "metadata_dict": { + "mouth": "phoneme ooo", + "background": "aquamarine", + "fur": "dark brown", + "eyes": "angry", + "clothes": "bone tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9900, + "metadata_dict": { + "fur": "dark brown", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "eyes": "bored", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9901, + "metadata_dict": { + "clothes": "tie dye", + "mouth": "bored unshaven kazoo", + "fur": "dark brown", + "hat": "cowboy hat", + "background": "purple", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9902, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "cream", + "clothes": "prison jumpsuit", + "hat": "fez", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9903, + "metadata_dict": { + "clothes": "kings robe", + "fur": "tan", + "mouth": "phoneme ooo", + "hat": "cowboy hat", + "background": "yellow", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9904, + "metadata_dict": { + "eyes": "scumbag", + "clothes": "black t", + "background": "aquamarine", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9905, + "metadata_dict": { + "fur": "brown", + "eyes": "sleepy", + "background": "purple", + "mouth": "phoneme vuh" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9906, + "metadata_dict": { + "earring": "silver stud", + "fur": "black", + "eyes": "bloodshot", + "clothes": "bayc t black", + "background": "purple", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9907, + "metadata_dict": { + "eyes": "x eyes", + "fur": "cream", + "mouth": "grin", + "background": "aquamarine", + "earring": "silver hoop", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9908, + "metadata_dict": { + "mouth": "grin", + "clothes": "work vest", + "earring": "gold stud", + "eyes": "bloodshot", + "fur": "dark brown", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9909, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "hypnotized", + "hat": "baby's bonnet", + "fur": "black", + "clothes": "admirals coat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9910, + "metadata_dict": { + "eyes": "x eyes", + "hat": "seaman's hat", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9911, + "metadata_dict": { + "fur": "brown", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored unshaven cigarette", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9912, + "metadata_dict": { + "background": "orange", + "fur": "dark brown", + "mouth": "bored cigarette", + "clothes": "service", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9913, + "metadata_dict": { + "eyes": "closed", + "hat": "bayc flipped brim", + "earring": "silver hoop", + "background": "gray", + "mouth": "bored", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9914, + "metadata_dict": { + "hat": "sea captain's hat", + "clothes": "cowboy shirt", + "mouth": "bored", + "background": "army green", + "fur": "blue", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9915, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "blindfold", + "earring": "silver stud", + "clothes": "biker vest", + "background": "orange", + "hat": "cowboy hat", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9916, + "metadata_dict": { + "mouth": "grin", + "background": "yellow", + "eyes": "bloodshot", + "fur": "dark brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9917, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "seaman's hat", + "background": "aquamarine", + "eyes": "3d", + "fur": "brown", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9918, + "metadata_dict": { + "hat": "fez", + "background": "orange", + "eyes": "bored", + "mouth": "bored", + "fur": "robot" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9919, + "metadata_dict": { + "fur": "tan", + "eyes": "blindfold", + "mouth": "jovial", + "background": "blue", + "hat": "cowboy hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9920, + "metadata_dict": { + "clothes": "kings robe", + "background": "gray", + "mouth": "jovial", + "eyes": "bored", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9921, + "metadata_dict": { + "eyes": "3d", + "background": "yellow", + "mouth": "bored", + "clothes": "hip hop", + "hat": "halo", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9922, + "metadata_dict": { + "eyes": "heart", + "clothes": "sleeveless t", + "mouth": "bored unshaven pipe", + "background": "army green", + "fur": "blue", + "hat": "sea captain's hat" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9923, + "metadata_dict": { + "fur": "black", + "eyes": "bored", + "hat": "faux hawk", + "clothes": "prom dress", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9924, + "metadata_dict": { + "hat": "s&m hat", + "fur": "golden brown", + "earring": "silver stud", + "clothes": "prom dress", + "mouth": "bored", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9925, + "metadata_dict": { + "background": "new punk blue", + "mouth": "grin", + "eyes": "coins", + "clothes": "smoking jacket", + "fur": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9926, + "metadata_dict": { + "background": "new punk blue", + "mouth": "discomfort", + "fur": "golden brown", + "hat": "fez", + "clothes": "work vest", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9927, + "metadata_dict": { + "eyes": "closed", + "mouth": "phoneme oh", + "fur": "cream", + "clothes": "black holes t", + "background": "aquamarine", + "hat": "ww2 pilot helm" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9928, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "orange", + "fur": "dark brown", + "eyes": "bored", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9929, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "horns", + "clothes": "sailor shirt", + "earring": "silver stud", + "fur": "dark brown", + "eyes": "crazy", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9930, + "metadata_dict": { + "eyes": "zombie", + "background": "blue", + "hat": "spinner hat", + "clothes": "smoking jacket", + "mouth": "small grin", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9931, + "metadata_dict": { + "eyes": "heart", + "background": "aquamarine", + "hat": "bunny ears", + "mouth": "bored", + "fur": "zombie", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9932, + "metadata_dict": { + "fur": "cream", + "mouth": "grin diamond grill", + "clothes": "biker vest", + "eyes": "bored", + "earring": "silver hoop", + "hat": "bowler", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9933, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "mouth": "small grin", + "hat": "cowboy hat", + "clothes": "prom dress", + "fur": "white" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9934, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "golden brown", + "clothes": "rainbow suspenders", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "bloodshot", + "hat": "short mohawk" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9935, + "metadata_dict": { + "mouth": "bored cigarette", + "fur": "black", + "eyes": "bored", + "hat": "fisherman's hat", + "clothes": "navy striped tee", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9936, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "golden brown", + "earring": "silver stud", + "background": "aquamarine", + "eyes": "robot", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9937, + "metadata_dict": { + "hat": "horns", + "mouth": "grin", + "fur": "gray", + "earring": "silver hoop", + "background": "gray", + "clothes": "hawaiian", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9938, + "metadata_dict": { + "mouth": "bored unshaven", + "background": "gray", + "fur": "dark brown", + "clothes": "sleeveless logo t", + "eyes": "crazy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9939, + "metadata_dict": { + "mouth": "bored unshaven", + "earring": "gold hoop", + "eyes": "coins", + "background": "yellow", + "clothes": "cowboy shirt", + "fur": "pink", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9940, + "metadata_dict": { + "hat": "bayc hat black", + "clothes": "space suit", + "mouth": "phoneme ooo", + "fur": "dark brown", + "eyes": "bored", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9941, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "stuntman helmet", + "eyes": "bloodshot", + "mouth": "bored unshaven dagger" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9942, + "metadata_dict": { + "hat": "horns", + "mouth": "bored unshaven party horn", + "fur": "black", + "eyes": "bloodshot", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9943, + "metadata_dict": { + "clothes": "black suit", + "mouth": "rage", + "background": "orange", + "fur": "brown", + "hat": "beanie", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9944, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "fur": "golden brown", + "eyes": "bored", + "background": "yellow", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9945, + "metadata_dict": { + "hat": "laurel wreath", + "mouth": "grin", + "fur": "dark brown", + "background": "yellow", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9946, + "metadata_dict": { + "background": "new punk blue", + "fur": "golden brown", + "hat": "sea captain's hat", + "mouth": "phoneme vuh", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9947, + "metadata_dict": { + "hat": "girl's hair pink", + "earring": "silver stud", + "fur": "red", + "eyes": "3d", + "clothes": "sleeveless logo t", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9948, + "metadata_dict": { + "hat": "trippy captain's hat", + "fur": "cream", + "eyes": "bloodshot", + "mouth": "tongue out", + "background": "purple", + "clothes": "navy striped tee" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9949, + "metadata_dict": { + "mouth": "grin gold grill", + "fur": "tan", + "hat": "seaman's hat", + "eyes": "3d", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9950, + "metadata_dict": { + "background": "new punk blue", + "fur": "dark brown", + "mouth": "bored", + "eyes": "crazy", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9951, + "metadata_dict": { + "mouth": "bored unshaven", + "hat": "s&m hat", + "background": "blue", + "clothes": "biker vest", + "fur": "white", + "eyes": "sunglasses" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9952, + "metadata_dict": { + "clothes": "cowboy shirt", + "fur": "black", + "mouth": "small grin", + "eyes": "bored", + "hat": "bowler", + "background": "purple" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9953, + "metadata_dict": { + "eyes": "eyepatch", + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "fur": "red", + "hat": "fisherman's hat", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9954, + "metadata_dict": { + "mouth": "phoneme ooo", + "clothes": "sleeveless logo t", + "fur": "red", + "eyes": "robot", + "background": "gray", + "hat": "beanie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9955, + "metadata_dict": { + "clothes": "kings robe", + "mouth": "bored cigar", + "fur": "golden brown", + "earring": "silver stud", + "eyes": "bored", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9956, + "metadata_dict": { + "fur": "golden brown", + "earring": "silver stud", + "background": "aquamarine", + "hat": "bayc hat red", + "eyes": "sleepy", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9957, + "metadata_dict": { + "mouth": "grin", + "eyes": "bloodshot", + "fur": "dark brown", + "hat": "beanie", + "background": "purple", + "clothes": "hawaiian" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9958, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "eyes": "blindfold", + "earring": "diamond stud", + "background": "blue", + "hat": "short mohawk", + "clothes": "puffy vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9959, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "small grin", + "hat": "army hat", + "background": "yellow", + "clothes": "stunt jacket", + "fur": "zombie" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9960, + "metadata_dict": { + "background": "new punk blue", + "fur": "tan", + "hat": "fez", + "eyes": "bloodshot", + "clothes": "pimp coat", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9961, + "metadata_dict": { + "eyes": "closed", + "hat": "seaman's hat", + "fur": "gray", + "background": "aquamarine", + "mouth": "bored unshaven cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9962, + "metadata_dict": { + "eyes": "closed", + "hat": "sushi chef headband", + "mouth": "grin multicolored", + "background": "aquamarine", + "earring": "silver hoop", + "fur": "brown", + "clothes": "caveman pelt" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9963, + "metadata_dict": { + "eyes": "closed", + "mouth": "bored unshaven", + "hat": "seaman's hat", + "fur": "gray", + "background": "aquamarine", + "earring": "gold stud", + "clothes": "biker vest" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9964, + "metadata_dict": { + "eyes": "x eyes", + "fur": "golden brown", + "clothes": "sailor shirt", + "background": "blue", + "hat": "fisherman's hat", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9965, + "metadata_dict": { + "fur": "golden brown", + "mouth": "rage", + "eyes": "3d", + "background": "orange", + "clothes": "service" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9966, + "metadata_dict": { + "mouth": "dumbfounded", + "fur": "pink", + "clothes": "bayc t black", + "hat": "army hat", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9967, + "metadata_dict": { + "fur": "golden brown", + "clothes": "toga", + "background": "purple", + "hat": "army hat", + "mouth": "bored pizza", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9968, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "clothes": "rainbow suspenders", + "earring": "silver stud", + "background": "blue", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9969, + "metadata_dict": { + "eyes": "heart", + "hat": "seaman's hat", + "clothes": "black t", + "fur": "dark brown", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9970, + "metadata_dict": { + "fur": "tan", + "mouth": "bored unshaven", + "earring": "silver stud", + "eyes": "bored", + "hat": "girl's hair short", + "background": "gray", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9971, + "metadata_dict": { + "eyes": "closed", + "fur": "dark brown", + "earring": "silver hoop", + "hat": "cowboy hat", + "background": "yellow", + "mouth": "bored cigarette" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9972, + "metadata_dict": { + "eyes": "hypnotized", + "mouth": "rage", + "background": "aquamarine", + "fur": "brown", + "hat": "bunny ears" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9973, + "metadata_dict": { + "fur": "dmt", + "hat": "girl's hair pink", + "eyes": "robot", + "background": "yellow", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9974, + "metadata_dict": { + "eyes": "eyepatch", + "hat": "seaman's hat", + "clothes": "rainbow suspenders", + "background": "aquamarine", + "fur": "dark brown", + "earring": "silver hoop", + "mouth": "tongue out" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9975, + "metadata_dict": { + "eyes": "scumbag", + "mouth": "bored pipe", + "background": "blue", + "hat": "fisherman's hat", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9976, + "metadata_dict": { + "earring": "silver stud", + "hat": "spinner hat", + "fur": "dark brown", + "eyes": "bored", + "background": "gray", + "clothes": "stunt jacket", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9977, + "metadata_dict": { + "background": "new punk blue", + "eyes": "blindfold", + "fur": "golden brown", + "mouth": "jovial", + "clothes": "leather jacket", + "earring": "gold stud" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9978, + "metadata_dict": { + "fur": "tan", + "mouth": "grin multicolored", + "earring": "silver stud", + "hat": "bayc flipped brim", + "eyes": "angry", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9979, + "metadata_dict": { + "mouth": "bored bubblegum", + "hat": "bunny ears", + "fur": "white", + "background": "army green", + "eyes": "wide eyed" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9980, + "metadata_dict": { + "eyes": "heart", + "fur": "golden brown", + "mouth": "bored unshaven party horn", + "earring": "silver stud", + "background": "blue" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9981, + "metadata_dict": { + "mouth": "discomfort", + "clothes": "sleeveless t", + "eyes": "coins", + "earring": "silver stud", + "background": "blue", + "hat": "short mohawk", + "fur": "brown" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9982, + "metadata_dict": { + "mouth": "bored unshaven", + "clothes": "sleeveless t", + "hat": "horns", + "fur": "golden brown", + "background": "yellow", + "eyes": "sleepy" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9983, + "metadata_dict": { + "mouth": "bored unshaven", + "fur": "gray", + "eyes": "bored", + "hat": "beanie", + "clothes": "guayabera", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9984, + "metadata_dict": { + "eyes": "hypnotized", + "background": "aquamarine", + "hat": "bayc flipped brim", + "fur": "cheetah", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9985, + "metadata_dict": { + "hat": "bayc hat black", + "fur": "tan", + "eyes": "blindfold", + "background": "aquamarine", + "earring": "silver hoop", + "mouth": "bored cigar" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9986, + "metadata_dict": { + "background": "new punk blue", + "mouth": "phoneme oh", + "clothes": "bayc t black", + "eyes": "bored", + "fur": "brown", + "hat": "vietnam era helmet" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9987, + "metadata_dict": { + "hat": "horns", + "fur": "dmt", + "background": "aquamarine", + "eyes": "bored", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9988, + "metadata_dict": { + "background": "yellow", + "fur": "black", + "hat": "beanie", + "mouth": "bored", + "clothes": "hip hop", + "eyes": "sad" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9989, + "metadata_dict": { + "background": "new punk blue", + "fur": "red", + "mouth": "bored pizza", + "hat": "faux hawk", + "eyes": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9990, + "metadata_dict": { + "background": "new punk blue", + "eyes": "zombie", + "clothes": "sailor shirt", + "fur": "dark brown", + "earring": "cross", + "mouth": "bored", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9991, + "metadata_dict": { + "hat": "laurel wreath", + "fur": "golden brown", + "eyes": "coins", + "background": "blue", + "mouth": "bored", + "clothes": "vietnam jacket" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9992, + "metadata_dict": { + "hat": "king's crown", + "clothes": "tuxedo tee", + "eyes": "bored", + "fur": "cheetah", + "background": "purple", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9993, + "metadata_dict": { + "background": "gray", + "mouth": "bored", + "fur": "white", + "eyes": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9994, + "metadata_dict": { + "eyes": "closed", + "clothes": "striped tee", + "earring": "silver stud", + "fur": "dark brown", + "hat": "vietnam era helmet", + "mouth": "bored cigarette", + "background": "army green" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9995, + "metadata_dict": { + "eyes": "closed", + "clothes": "smoking jacket", + "fur": "pink", + "background": "gray", + "mouth": "bored" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9996, + "metadata_dict": { + "background": "new punk blue", + "mouth": "dumbfounded", + "eyes": "3d", + "fur": "dark brown", + "earring": "silver hoop", + "clothes": "guayabera" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9997, + "metadata_dict": { + "mouth": "grin multicolored", + "clothes": "sailor shirt", + "fur": "black", + "eyes": "bored", + "background": "purple", + "hat": "halo" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9998, + "metadata_dict": { + "eyes": "heart", + "clothes": "bayc t red", + "mouth": "bored unshaven cigarette", + "fur": "brown", + "background": "yellow" + } + }, + { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9999, + "metadata_dict": { + "mouth": "bored unshaven", + "eyes": "scumbag", + "earring": "gold hoop", + "fur": "gray", + "hat": "army hat", + "background": "purple" + } + } +] From 8567184b2a427d08f40895fa19a3a22383ab3ea2 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Tue, 4 Oct 2022 23:00:45 -0700 Subject: [PATCH 10/17] Small fixes --- .../rarity_providers/external_rarity_provider.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/open_rarity/resolver/rarity_providers/external_rarity_provider.py b/open_rarity/resolver/rarity_providers/external_rarity_provider.py index 1285714..1ac6f4a 100644 --- a/open_rarity/resolver/rarity_providers/external_rarity_provider.py +++ b/open_rarity/resolver/rarity_providers/external_rarity_provider.py @@ -124,7 +124,7 @@ def fetch_rarity_sniffer_rank_for_collection( response.raise_for_status() tokens_to_ranks: dict[int, int] = { - str(nft["id"]): int(rank=nft["positionId"]) + str(nft["id"]): int(nft["positionId"]) for nft in response.json()["data"] } @@ -407,7 +407,9 @@ def _add_rarity_sniffer_rarity_data( logger.exception("Failed to resolve token_ids Rarity Sniffer") raise - token_ids_to_ranks = self._rarity_sniffer_state[contract_address] + token_ids_to_ranks = self._rarity_sniffer_state.get( + contract_address, None + ) or self._get_provider_rank_cache(slug, rank_provider) for token_with_rarity in tokens_with_rarity: token_identifer = token_with_rarity.token.token_identifier assert isinstance(token_identifer, EVMContractTokenIdentifier) @@ -467,6 +469,12 @@ def _add_rarity_sniper_rarity_data( RarityData(provider=rank_provider, rank=rank) ) + # Write to cache + if cache_external_ranks: + self._get_provider_rank_cache(slug, rank_provider)[ + str(token_id) + ] = rank + except Exception: logger.exception("Failed to resolve token_ids Rarity Sniper") From b9d6d3dac6c9443bc9dea8ecdb2f81974a38f85b Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Tue, 4 Oct 2022 23:04:05 -0700 Subject: [PATCH 11/17] Remove print statements --- .../rarity_providers/external_rarity_provider.py | 3 --- open_rarity/resolver/testset_resolver.py | 15 +++++---------- tests/resolver/test_testset_resolver.py | 1 - 3 files changed, 5 insertions(+), 14 deletions(-) diff --git a/open_rarity/resolver/rarity_providers/external_rarity_provider.py b/open_rarity/resolver/rarity_providers/external_rarity_provider.py index 1ac6f4a..95d89e1 100644 --- a/open_rarity/resolver/rarity_providers/external_rarity_provider.py +++ b/open_rarity/resolver/rarity_providers/external_rarity_provider.py @@ -400,9 +400,6 @@ def _add_rarity_sniffer_rarity_data( logger.debug( f"Fetched {num_tokens} token ranks from rarity sniffer" ) - print( - f"Fetched {num_tokens} token ranks from rarity sniffer" - ) except Exception: logger.exception("Failed to resolve token_ids Rarity Sniffer") raise diff --git a/open_rarity/resolver/testset_resolver.py b/open_rarity/resolver/testset_resolver.py index 5f9800e..af29cb5 100644 --- a/open_rarity/resolver/testset_resolver.py +++ b/open_rarity/resolver/testset_resolver.py @@ -27,6 +27,7 @@ ) from open_rarity.resolver.rarity_providers.external_rarity_provider import ( ExternalRarityProvider, + EXTERNAL_RANK_PROVIDERS, ) from open_rarity.scoring.handlers.arithmetic_mean_scoring_handler import ( ArithmeticMeanScoringHandler, @@ -85,7 +86,7 @@ class OpenRarityScores: def get_tokens_with_rarity( collection_with_metadata: CollectionWithMetadata, - external_rank_providers: list[RankProvider], + external_rank_providers: list[RankProvider] = EXTERNAL_RANK_PROVIDERS, resolve_remote_rarity: bool = True, batch_size: int = 300, max_tokens_to_calculate: int = None, @@ -130,14 +131,12 @@ def get_tokens_with_rarity( for batch_id, tokens_batch in enumerate( np.array_split(tokens, num_batches) ): - logger.debug( - f"Starting batch {batch_id} for collection " - f"{slug}: Processing {len(tokens_batch)} tokens" - ) - print( + message = ( f"Starting batch {batch_id} for collection " f"{slug}: Processing {len(tokens_batch)} tokens" ) + logger.debug(message) + print(message) # We will store all rarities calculated across providers in this list tokens_rarity_batch = [ @@ -218,16 +217,12 @@ def resolve_collection_data( opensea_collection_slug=opensea_slug, use_cache=use_cache, ) - print( - f"\t=>Finished fetching collection and token trait data for: {opensea_slug}" - ) print(f"Fetching external rarity ranks for: {opensea_slug}") tokens_with_rarity: list[TokenWithRarityData] = get_tokens_with_rarity( collection_with_metadata=collection_with_metadata, resolve_remote_rarity=resolve_remote_rarity, max_tokens_to_calculate=max_tokens_to_calculate, cache_external_ranks=use_cache, - external_rank_providers=[RankProvider.TRAITS_SNIPER], ) print( f"\t=>Finished fetching external rarity ranks for: {opensea_slug}" diff --git a/tests/resolver/test_testset_resolver.py b/tests/resolver/test_testset_resolver.py index 7ac31bf..4277ca2 100644 --- a/tests/resolver/test_testset_resolver.py +++ b/tests/resolver/test_testset_resolver.py @@ -66,7 +66,6 @@ def test_resolve_collection_data(self): resolver_output_reader = csv.reader(csvfile) for idx, row in enumerate(resolver_output_reader): rows += 1 - print(", ".join(row)) if idx == 0: assert row[0] == "slug" assert row[1] == "token_id" From b604b196de6a642a3dbf239bdc60923b6b982f30 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Tue, 4 Oct 2022 23:05:58 -0700 Subject: [PATCH 12/17] fix --- open_rarity/data/test_collections.json | 264 +++++++++---------------- 1 file changed, 92 insertions(+), 172 deletions(-) diff --git a/open_rarity/data/test_collections.json b/open_rarity/data/test_collections.json index 701598d..e42c1ba 100644 --- a/open_rarity/data/test_collections.json +++ b/open_rarity/data/test_collections.json @@ -1,174 +1,94 @@ [ - { - "collection_name": "Cool Cats", - "collection_slug": "cool-cats-nft" - }, - { - "collection_name": "Azuki", - "collection_slug": "azuki" - }, - { - "collection_name": "Bored Ape Yacht Club", - "collection_slug": "boredapeyachtclub" - }, - { - "collection_name": "Moonbirds", - "collection_slug": "proof-moonbirds" - }, - { - "collection_name": "Invisible Friends", - "collection_slug": "invisiblefriends" - }, - { - "collection_name": "Mutant Ape Yacht Club", - "collection_slug": "mutant-ape-yacht-club" - }, - { - "collection_name": "Doodles", - "collection_slug": "doodles-official" - }, - { - "collection_name": "goblintown.wtf", - "collection_slug": "goblintownwtf" - }, - { - "collection_name": "Mfers", - "collection_slug": "mfers" - }, - { - "collection_name": "Meebits", - "collection_slug": "meebits" - }, - { - "collection_name": "World of Women", - "collection_slug": "world-of-women-nft" - }, - { - "collection_name": "Moonbirds", - "collection_slug": "moonbirds-oddities" - }, - { - "collection_name": "Clonex", - "collection_slug": "clonex" - }, - { - "collection_name": "Beanz", - "collection_slug": "beanzofficial" - }, - { - "collection_name": "PudgyPenguins", - "collection_slug": "pudgypenguins" - }, - { - "collection_name": "Fidenza", - "collection_slug": "fidenza-by-tyler-hobbs" - }, - { - "collection_name": "PXN: Ghost Division", - "collection_slug": "pxnghostdivision" - }, - { - "collection_name": "Karafuru", - "collection_slug": "karafuru" - }, - { - "collection_name": "Hashmasks", - "collection_slug": "hashmasks" - }, - { - "collection_name": "FLUF World", - "collection_slug": "fluf" - }, - { - "collection_name": "Creature World", - "collection_slug": "creatureworld" - }, - { - "collection_name": "Phanta Bear", - "collection_slug": "creatureworld" - }, - { - "collection_name": "3 Landers", - "collection_slug": "3landers" - }, - { - "collection_name": "Lazy Lions", - "collection_slug": "lazy-lions" - }, - { - "collection_name": "Genesis Creepz", - "collection_slug": "genesis-creepz" - }, - { - "collection_name": "Kawmi", - "collection_slug": "kiwami-genesis" - }, - { - "collection_name": "Degentoonz", - "collection_slug": "degentoonz-collection" - }, - { - "collection_name": "Doge Pound", - "collection_slug": "the-doge-pound" - }, - { - "collection_name": "Everai", - "collection_slug": "everai-heroes-duo" - }, - { - "collection_name": "Los Muertos World", - "collection_slug": "los-muertos-world" - }, - { - "collection_name": "Bonji", - "collection_slug": "boonjiproject" - }, - { - "collection_name": "fanggangnft", - "collection_slug": "fanggangnft" - }, - { - "collection_name": "deadheads", - "collection_slug": "deadheads" - }, - { - "collection_name": "wolf-game-farmer", - "collection_slug": "wolf-game-farmer" - }, - { - "collection_name": "yoloholiday", - "collection_slug": "yoloholiday" - }, - { - "collection_name": "the-weirdo-ghost-gang", - "collection_slug": "the-weirdo-ghost-gang" - }, - { - "collection_name": "woodies-generative", - "collection_slug": "woodies-generative" - }, - { - "collection_name": "nostalgia-key", - "collection_slug": "nostalgia-key" - }, - { - "collection_name": "y00ts-yacht-club", - "collection_slug": "y00ts-yacht-club" - }, - { - "collection_name": "50yearsofatari", - "collection_slug": "50yearsofatari" - }, - { - "collection_name": "ctomgkirby", - "collection_slug": "ctomgkirby" - }, - { - "collection_name": "proofofpepe", - "collection_slug": "proofofpepe" - }, - { - "collection_name": "fat-rat-mafia", - "collection_slug": "fat-rat-mafia" - } + { + "collection_name": "Creature World", + "collection_slug": "creatureworld" + }, + { + "collection_name": "Phanta Bear", + "collection_slug": "creatureworld" + }, + { + "collection_name": "3 Landers", + "collection_slug": "3landers" + }, + { + "collection_name": "Lazy Lions", + "collection_slug": "lazy-lions" + }, + { + "collection_name": "Genesis Creepz", + "collection_slug": "genesis-creepz" + }, + { + "collection_name": "Kawmi", + "collection_slug": "kiwami-genesis" + }, + { + "collection_name": "Degentoonz", + "collection_slug": "degentoonz-collection" + }, + { + "collection_name": "Doge Pound", + "collection_slug": "the-doge-pound" + }, + { + "collection_name": "Everai", + "collection_slug": "everai-heroes-duo" + }, + { + "collection_name": "Los Muertos World", + "collection_slug": "los-muertos-world" + }, + { + "collection_name": "Bonji", + "collection_slug": "boonjiproject" + }, + { + "collection_name": "fanggangnft", + "collection_slug": "fanggangnft" + }, + { + "collection_name": "deadheads", + "collection_slug": "deadheads" + }, + { + "collection_name": "wolf-game-farmer", + "collection_slug": "wolf-game-farmer" + }, + { + "collection_name": "yoloholiday", + "collection_slug": "yoloholiday" + }, + { + "collection_name": "the-weirdo-ghost-gang", + "collection_slug": "the-weirdo-ghost-gang" + }, + { + "collection_name": "woodies-generative", + "collection_slug": "woodies-generative" + }, + { + "collection_name": "nostalgia-key", + "collection_slug": "nostalgia-key" + }, + { + "collection_name": "y00ts-yacht-club", + "collection_slug": "y00ts-yacht-club" + }, + { + "collection_name": "50yearsofatari", + "collection_slug": "50yearsofatari" + }, + { + "collection_name": "ctomgkirby", + "collection_slug": "ctomgkirby" + }, + { + "collection_name": "proofofpepe", + "collection_slug": "proofofpepe" + }, + { + "collection_name": "fat-rat-mafia", + "collection_slug": "fat-rat-mafia" + } ] From 3c7ecfb1edfb006d596dae12d862f62dedaa2723 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Tue, 4 Oct 2022 23:29:34 -0700 Subject: [PATCH 13/17] Update .gitignore --- .gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6ab4cfe..8bfc55c 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,9 @@ MANIFEST # Test Coverage report .coverage -# Output files -*.csv -*.json +# Output files from scripts +testset*.csv +score_real_collections_results*.json + +# Local cache files +cached_data/*.json From e90d23276b21bf378cebe430599d55d72e609bf4 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Tue, 4 Oct 2022 23:30:17 -0700 Subject: [PATCH 14/17] to/from dict --- open_rarity/models/token.py | 22 ++++++++++++++ open_rarity/models/token_identifier.py | 32 +++++++++++++++++++++ open_rarity/resolver/opensea_api_helpers.py | 22 +++----------- 3 files changed, 58 insertions(+), 18 deletions(-) diff --git a/open_rarity/models/token.py b/open_rarity/models/token.py index c5cc96f..99a2353 100644 --- a/open_rarity/models/token.py +++ b/open_rarity/models/token.py @@ -3,6 +3,7 @@ from open_rarity.models.token_identifier import ( EVMContractTokenIdentifier, + get_identifier_class_from_dict, TokenIdentifier, ) from open_rarity.models.token_metadata import AttributeName, TokenMetadata @@ -69,5 +70,26 @@ class attribute type metadata=TokenMetadata.from_attributes(metadata_dict), ) + @classmethod + def from_dict(cls, data_dict: dict): + identifier_class = get_identifier_class_from_dict( + data_dict["token_identifier"] + ) + + return cls( + token_identifier=identifier_class.from_dict( + data_dict["token_identifier"] + ), + token_standard=TokenStandard[data_dict["token_standard"]], + metadata=TokenMetadata.from_attributes(data_dict["metadata_dict"]), + ) + + def to_dict(self) -> dict: + return { + "token_identifier": self.token_identifier.to_dict(), + "metadata_dict": self.metadata.to_attributes(), + "token_standard": self.token_standard.name, + } + def __str__(self): return f"Token[{self.token_identifier}]" diff --git a/open_rarity/models/token_identifier.py b/open_rarity/models/token_identifier.py index 101594a..2957d5e 100644 --- a/open_rarity/models/token_identifier.py +++ b/open_rarity/models/token_identifier.py @@ -19,6 +19,19 @@ class EVMContractTokenIdentifier: def __str__(self): return f"Contract({self.contract_address}) #{self.token_id}" + @classmethod + def from_dict(cls, data_dict: dict): + return cls( + contract_address=data_dict["contract_address"], + token_id=data_dict["token_id"], + ) + + def to_dict(self) -> dict: + return { + "contract_address": self.contract_address, + "token_id": self.token_id, + } + @dataclass(frozen=True) class SolanaMintAddressTokenIdentifier: @@ -34,6 +47,17 @@ class SolanaMintAddressTokenIdentifier: def __str__(self): return f"MintAddress({self.mint_address})" + @classmethod + def from_dict(cls, data_dict: dict): + return cls( + mint_address=data_dict["mint_address"], + ) + + def to_dict(self) -> dict: + return { + "mint_address": self.mint_address, + } + # This is used to specifies how the collection is identified and the # logic used to group the NFTs together @@ -41,3 +65,11 @@ def __str__(self): (EVMContractTokenIdentifier | SolanaMintAddressTokenIdentifier), Field(discriminator="identifier_type"), ] + + +def get_identifier_class_from_dict(data_dict: dict) -> TokenIdentifier: + return ( + EVMContractTokenIdentifier + if "token_id" in data_dict["token_identifier"] + else SolanaMintAddressTokenIdentifier + ) diff --git a/open_rarity/resolver/opensea_api_helpers.py b/open_rarity/resolver/opensea_api_helpers.py index 99ca947..72cc29a 100644 --- a/open_rarity/resolver/opensea_api_helpers.py +++ b/open_rarity/resolver/opensea_api_helpers.py @@ -245,7 +245,7 @@ def get_token_ids( # Write to local disk the fetched data for later caching if use_cache: write_collection_data_to_file( - filename=cached_filename, slug=slug, tokens=tokens + filename=cached_filename, tokens=tokens ) return tokens @@ -424,19 +424,11 @@ def get_collection_from_opensea( return Collection(name=collection_obj["name"], tokens=tokens) -def write_collection_data_to_file( - filename: str, slug: str, tokens: list[Token] -): +def write_collection_data_to_file(filename: str, tokens: list[Token]): json_output = [] for token in tokens: # Note: We assume EVM token here - json_output.append( - { - "contract_address": token.token_identifier.contract_address, - "token_id": token.token_identifier.token_id, - "metadata_dict": token.metadata.to_attributes(), - } - ) + json_output.append(token.to_dict()) with open(filename, "w+") as jsonfile: json.dump(json_output, jsonfile, indent=4) logger.info(f"Wrote token data to cache file: {filename}") @@ -460,13 +452,7 @@ def read_collection_data_from_file( if len(tokens_data) > 0: for token_data in tokens_data: assert token_data["metadata_dict"] - tokens.append( - Token.from_erc721( - contract_address=token_data["contract_address"], - token_id=token_data["token_id"], - metadata_dict=token_data["metadata_dict"], - ) - ) + tokens.append(Token.from_dict(token_data)) logger.debug(f"Read {len(tokens)} tokens from cache file: {filename}") except FileNotFoundError: logger.warning(f"No opensea cache file found for {slug}: {filename}") From 2ce1bc1d6449fbd6cdb9cd6a2ff38b4f5903c1ed Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Wed, 5 Oct 2022 10:57:28 -0700 Subject: [PATCH 15/17] small fixes --- ...ached_os_trait_data-boredapeyachtclub.json | 90018 ++++++++++------ open_rarity/models/token_identifier.py | 2 +- .../external_rarity_provider.py | 18 +- open_rarity/resolver/testset_resolver.py | 8 +- 4 files changed, 60027 insertions(+), 30019 deletions(-) diff --git a/cached_data/cached_os_trait_data-boredapeyachtclub.json b/cached_data/cached_os_trait_data-boredapeyachtclub.json index 621ed75..9cbef62 100644 --- a/cached_data/cached_os_trait_data-boredapeyachtclub.json +++ b/cached_data/cached_os_trait_data-boredapeyachtclub.json @@ -1,7 +1,9 @@ [ { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 0, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 0 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -9,44 +11,56 @@ "background": "orange", "earring": "silver hoop", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1 + }, "metadata_dict": { "mouth": "grin", "background": "orange", "eyes": "blue beams", "fur": "robot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2 + }, "metadata_dict": { "background": "aquamarine", "eyes": "3d", "mouth": "bored cigarette", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3 + }, "metadata_dict": { "eyes": "bored", "mouth": "tongue out", "fur": "cheetah", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -54,11 +68,14 @@ "fur": "golden brown", "background": "blue", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "bayc t red", @@ -66,11 +83,14 @@ "hat": "bayc flipped brim", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", @@ -78,11 +98,14 @@ "background": "yellow", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -90,11 +113,14 @@ "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8 + }, "metadata_dict": { "background": "aquamarine", "eyes": "robot", @@ -102,11 +128,14 @@ "hat": "beanie", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver stud", @@ -115,11 +144,14 @@ "mouth": "small grin", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 10, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 10 + }, "metadata_dict": { "clothes": "navy striped tee", "eyes": "eyepatch", @@ -127,11 +159,14 @@ "background": "aquamarine", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 11, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 11 + }, "metadata_dict": { "hat": "laurel wreath", "background": "gray", @@ -139,11 +174,14 @@ "eyes": "bloodshot", "fur": "dark brown", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 12, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 12 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black holes t", @@ -151,11 +189,14 @@ "fur": "brown", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 13, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 13 + }, "metadata_dict": { "eyes": "coins", "fur": "black", @@ -163,11 +204,14 @@ "mouth": "bored", "hat": "police motorcycle helmet", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 14, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 14 + }, "metadata_dict": { "earring": "diamond stud", "clothes": "tanktop", @@ -175,11 +219,14 @@ "background": "orange", "mouth": "small grin", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 15, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 15 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "zombie", @@ -187,11 +234,14 @@ "clothes": "black t", "hat": "girl's hair pink", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 16, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 16 + }, "metadata_dict": { "hat": "horns", "mouth": "dumbfounded", @@ -200,11 +250,14 @@ "eyes": "bored", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 17, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 17 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -213,33 +266,42 @@ "earring": "gold stud", "clothes": "bayc t black", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 18, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 18 + }, "metadata_dict": { "background": "purple", "mouth": "bored cigarette", "fur": "robot", "eyes": "cyborg", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 19, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 19 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "eyepatch", "fur": "tan", "mouth": "rage", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 20, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 20 + }, "metadata_dict": { "clothes": "bandolier", "fur": "gray", @@ -247,22 +309,28 @@ "background": "blue", "eyes": "3d", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 21, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 21 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "phoneme ooo", "fur": "black", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 22, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 22 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -271,22 +339,28 @@ "clothes": "tuxedo tee", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 23, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 23 + }, "metadata_dict": { "fur": "trippy", "background": "aquamarine", "mouth": "bored pipe", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 24, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 24 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "fez", @@ -294,34 +368,43 @@ "background": "aquamarine", "fur": "black", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 25, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 25 + }, "metadata_dict": { "eyes": "closed", "background": "blue", "fur": "brown", "clothes": "guayabera", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 26, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 26 + }, "metadata_dict": { "hat": "stuntman helmet", + "clothes": "stunt jacket", + "mouth": "bored cigarette", "background": "aquamarine", "eyes": "3d", - "fur": "dark brown", - "clothes": "stunt jacket", - "mouth": "bored cigarette" - } + "fur": "dark brown" + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 27, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 27 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "gray", @@ -329,11 +412,14 @@ "hat": "army hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 28, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 28 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", @@ -341,32 +427,41 @@ "hat": "bayc flipped brim", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 29, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 29 + }, "metadata_dict": { "background": "blue", "mouth": "bored unshaven", "fur": "tan", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 30, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 30 + }, "metadata_dict": { "eyes": "holographic", "fur": "gray", "background": "aquamarine", "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 31, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 31 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "party hat 2", @@ -375,11 +470,14 @@ "fur": "dmt", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 32, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 32 + }, "metadata_dict": { "fur": "dark brown", "background": "purple", @@ -387,11 +485,14 @@ "clothes": "hip hop", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 33, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 33 + }, "metadata_dict": { "eyes": "closed", "hat": "girl's hair pink", @@ -399,11 +500,14 @@ "mouth": "small grin", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 34, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 34 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "black", @@ -411,33 +515,42 @@ "hat": "bayc hat red", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 35, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 35 + }, "metadata_dict": { "mouth": "jovial", "background": "blue", "eyes": "3d", "fur": "death bot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 36, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 36 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 37, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 37 + }, "metadata_dict": { "clothes": "striped tee", "background": "blue", @@ -446,11 +559,14 @@ "hat": "bowler", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 38, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 38 + }, "metadata_dict": { "eyes": "closed", "background": "blue", @@ -458,11 +574,14 @@ "earring": "cross", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 39, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 39 + }, "metadata_dict": { "fur": "gray", "hat": "fez", @@ -470,11 +589,14 @@ "background": "aquamarine", "clothes": "leather jacket", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 40, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 40 + }, "metadata_dict": { "background": "new punk blue", "hat": "spinner hat", @@ -482,11 +604,14 @@ "fur": "dark brown", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 41, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 41 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "sad", @@ -494,11 +619,14 @@ "background": "purple", "clothes": "navy striped tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 42, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 42 + }, "metadata_dict": { "hat": "baby's bonnet", "eyes": "coins", @@ -506,11 +634,14 @@ "fur": "dark brown", "mouth": "bored pizza", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 43, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 43 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -518,11 +649,14 @@ "earring": "silver stud", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 44, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 44 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -531,11 +665,14 @@ "eyes": "coins", "clothes": "tweed suit", "earring": "gold stud" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 45, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 45 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "lumberjack shirt", @@ -543,11 +680,14 @@ "fur": "black", "background": "orange", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 46, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 46 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", @@ -555,33 +695,42 @@ "background": "gray", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 47, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 47 + }, "metadata_dict": { "eyes": "3d", "fur": "pink", "mouth": "bored cigarette", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 48, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 48 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "clothes": "prison jumpsuit", "fur": "red", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 49, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 49 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "earring": "silver stud", @@ -590,11 +739,14 @@ "fur": "cheetah", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 50, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 50 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "sailor shirt", @@ -602,11 +754,14 @@ "mouth": "tongue out", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 51, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 51 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -614,11 +769,14 @@ "fur": "dark brown", "hat": "girl's hair short", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 52, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 52 + }, "metadata_dict": { "hat": "king's crown", "clothes": "work vest", @@ -626,33 +784,42 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 53, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 53 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", "fur": "brown", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 54, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 54 + }, "metadata_dict": { "clothes": "leather jacket", "eyes": "sleepy", "fur": "pink", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 55, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 55 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -661,11 +828,14 @@ "fur": "cheetah", "hat": "bunny ears", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 56, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 56 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "brown", @@ -673,11 +843,14 @@ "clothes": "guayabera", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 57, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 57 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "bayc t red", @@ -686,11 +859,14 @@ "fur": "dark brown", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 58, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 58 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "navy striped tee", @@ -698,55 +874,70 @@ "hat": "commie hat", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 59, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 59 + }, "metadata_dict": { "fur": "red", "background": "gray", "mouth": "phoneme wah", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 60, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 60 + }, "metadata_dict": { "eyes": "scumbag", "background": "aquamarine", "fur": "pink", "clothes": "bayc t black", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 61, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 61 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", "background": "aquamarine", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 62, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 62 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", "mouth": "rage", "background": "aquamarine", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 63, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 63 + }, "metadata_dict": { "fur": "zombie", "mouth": "grin", @@ -754,11 +945,14 @@ "background": "blue", "hat": "bunny ears", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 64, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 64 + }, "metadata_dict": { "earring": "gold hoop", "eyes": "3d", @@ -767,22 +961,28 @@ "background": "purple", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 65, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 65 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bored", "clothes": "stunt jacket", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 66, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 66 + }, "metadata_dict": { "clothes": "blue dress", "fur": "pink", @@ -791,22 +991,28 @@ "earring": "cross", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 67, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 67 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin", "fur": "black", "background": "orange", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 68, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 68 + }, "metadata_dict": { "clothes": "black t", "background": "orange", @@ -814,33 +1020,42 @@ "hat": "ww2 pilot helm", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 69, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 69 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "seaman's hat", "background": "orange", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 70, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 70 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "brown", "clothes": "bone necklace", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 71, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 71 + }, "metadata_dict": { "background": "orange", "eyes": "bloodshot", @@ -848,11 +1063,14 @@ "hat": "bowler", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 72, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 72 + }, "metadata_dict": { "hat": "horns", "clothes": "prison jumpsuit", @@ -861,11 +1079,14 @@ "background": "yellow", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 73, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 73 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "rage", @@ -874,11 +1095,14 @@ "fur": "solid gold", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 74, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 74 + }, "metadata_dict": { "mouth": "phoneme vuh", "clothes": "guayabera", @@ -886,11 +1110,14 @@ "hat": "bowler", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 75, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 75 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "bayc t red", @@ -898,11 +1125,14 @@ "hat": "s&m hat", "fur": "golden brown", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 76, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 76 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -910,11 +1140,14 @@ "eyes": "bored", "clothes": "toga", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 77, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 77 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "coins", @@ -922,11 +1155,14 @@ "mouth": "dumbfounded", "fur": "red", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 78, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 78 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -934,22 +1170,28 @@ "eyes": "3d", "clothes": "lab coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 79, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 79 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "clothes": "lab coat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 80, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 80 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -958,22 +1200,28 @@ "background": "orange", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 81, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 81 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", "fur": "red", "clothes": "cowboy shirt", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 82, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 82 + }, "metadata_dict": { "fur": "cream", "mouth": "jovial", @@ -981,11 +1229,14 @@ "background": "army green", "clothes": "service", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 83, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 83 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -993,11 +1244,14 @@ "clothes": "tweed suit", "background": "blue", "hat": "ww2 pilot helm" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 84, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 84 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -1005,11 +1259,14 @@ "hat": "ww2 pilot helm", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 85, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 85 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -1017,11 +1274,14 @@ "eyes": "bloodshot", "clothes": "admirals coat", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 86, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 86 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -1029,11 +1289,14 @@ "eyes": "bored", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 87, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 87 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -1041,11 +1304,14 @@ "fur": "cheetah", "clothes": "guayabera", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 88, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 88 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -1054,22 +1320,28 @@ "fur": "black", "clothes": "pimp coat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 89, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 89 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "black", "eyes": "3d", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 90, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 90 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "golden brown", @@ -1078,11 +1350,14 @@ "clothes": "tweed suit", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 91, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 91 + }, "metadata_dict": { "clothes": "black holes t", "fur": "brown", @@ -1090,22 +1365,28 @@ "eyes": "sleepy", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 92, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 92 + }, "metadata_dict": { "eyes": "heart", "mouth": "jovial", "background": "blue", "fur": "pink", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 93, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 93 + }, "metadata_dict": { "hat": "fez", "eyes": "bored", @@ -1113,11 +1394,14 @@ "background": "purple", "fur": "white", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 94, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 94 + }, "metadata_dict": { "eyes": "closed", "clothes": "black holes t", @@ -1125,11 +1409,14 @@ "mouth": "bored unshaven kazoo", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 95, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 95 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -1137,11 +1424,14 @@ "clothes": "lumberjack shirt", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 96, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 96 + }, "metadata_dict": { "clothes": "stunt jacket", "hat": "girl's hair short", @@ -1149,22 +1439,28 @@ "background": "yellow", "eyes": "sleepy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 97, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 97 + }, "metadata_dict": { "eyes": "heart", "background": "blue", "fur": "dark brown", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 98, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 98 + }, "metadata_dict": { "mouth": "rage", "hat": "spinner hat", @@ -1172,11 +1468,14 @@ "fur": "death bot", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 99, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 99 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -1185,22 +1484,28 @@ "fur": "dark brown", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 100 + }, "metadata_dict": { "hat": "party hat 2", "fur": "dark brown", "background": "yellow", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 101 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "gray", @@ -1208,11 +1513,14 @@ "mouth": "bored", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 102 + }, "metadata_dict": { "hat": "irish boho", "fur": "gray", @@ -1220,11 +1528,14 @@ "clothes": "biker vest", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 103 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "leather jacket", @@ -1232,11 +1543,14 @@ "eyes": "sleepy", "hat": "short mohawk", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 104 + }, "metadata_dict": { "eyes": "holographic", "hat": "laurel wreath", @@ -1244,11 +1558,14 @@ "mouth": "bored pipe", "clothes": "bayc t black", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 105 + }, "metadata_dict": { "clothes": "striped tee", "hat": "seaman's hat", @@ -1257,11 +1574,14 @@ "background": "aquamarine", "fur": "black", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 106 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tuxedo tee", @@ -1269,11 +1589,14 @@ "hat": "bunny ears", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 107 + }, "metadata_dict": { "clothes": "space suit", "eyes": "zombie", @@ -1281,11 +1604,14 @@ "background": "blue", "hat": "short mohawk", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 108 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -1293,11 +1619,14 @@ "fur": "dark brown", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 109 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "silver stud", @@ -1305,11 +1634,14 @@ "fur": "dark brown", "clothes": "bayc t black", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 110 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -1318,11 +1650,14 @@ "eyes": "bloodshot", "background": "yellow", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 111 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather jacket", @@ -1330,22 +1665,28 @@ "hat": "bayc flipped brim", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 112 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "fur": "cream", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 113 + }, "metadata_dict": { "hat": "horns", "eyes": "zombie", @@ -1353,11 +1694,14 @@ "background": "gray", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 114 + }, "metadata_dict": { "eyes": "holographic", "hat": "seaman's hat", @@ -1366,11 +1710,14 @@ "background": "yellow", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 115 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "cream", @@ -1378,22 +1725,28 @@ "eyes": "bloodshot", "background": "purple", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 116 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "coins", "background": "aquamarine", "fur": "black", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 117 + }, "metadata_dict": { "fur": "tan", "eyes": "cyborg", @@ -1401,22 +1754,28 @@ "hat": "beanie", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 118 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "bored kazoo", "eyes": "blue beams", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 119 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "gray", @@ -1425,11 +1784,14 @@ "hat": "beanie", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 120 + }, "metadata_dict": { "eyes": "heart", "clothes": "work vest", @@ -1438,11 +1800,14 @@ "earring": "silver hoop", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 121 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -1450,11 +1815,14 @@ "earring": "gold stud", "fur": "brown", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 122 + }, "metadata_dict": { "eyes": "heart", "earring": "silver stud", @@ -1462,11 +1830,14 @@ "fur": "pink", "mouth": "bored cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 123 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -1474,11 +1845,14 @@ "hat": "spinner hat", "fur": "white", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 124 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "short mohawk", @@ -1486,22 +1860,28 @@ "fur": "white", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 125 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", "background": "orange", "hat": "army hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 126 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", @@ -1510,22 +1890,28 @@ "clothes": "navy striped tee", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 127 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", "mouth": "grin", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 128 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "leather punk jacket", @@ -1533,11 +1919,14 @@ "fur": "gray", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 129 + }, "metadata_dict": { "background": "new punk blue", "hat": "baby's bonnet", @@ -1545,33 +1934,42 @@ "fur": "pink", "eyes": "bored", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 130 + }, "metadata_dict": { "background": "aquamarine", "fur": "pink", "eyes": "bored", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 131 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "background": "gray", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 132 + }, "metadata_dict": { "clothes": "black holes t", "hat": "girl's hair pink", @@ -1580,22 +1978,28 @@ "mouth": "bored unshaven kazoo", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 133 + }, "metadata_dict": { "background": "aquamarine", "eyes": "bored", "fur": "brown", "mouth": "bored unshaven", "clothes": "black holes t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 134 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -1603,11 +2007,14 @@ "fur": "dark brown", "clothes": "sleeveless logo t", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 135 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "lumberjack shirt", @@ -1616,22 +2023,28 @@ "fur": "pink", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 136 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", "mouth": "phoneme vuh", "background": "blue", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 137 + }, "metadata_dict": { "background": "new punk blue", "hat": "short mohawk", @@ -1639,11 +2052,14 @@ "fur": "death bot", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 138 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "orange", @@ -1652,11 +2068,14 @@ "fur": "dark brown", "earring": "cross", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 139 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -1664,22 +2083,28 @@ "background": "army green", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 140 + }, "metadata_dict": { "background": "yellow", "eyes": "eyepatch", "mouth": "bored unshaven", "clothes": "sailor shirt", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 141 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -1687,11 +2112,14 @@ "background": "aquamarine", "earring": "silver hoop", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 142 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "gold hoop", @@ -1700,11 +2128,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 143 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -1712,11 +2143,14 @@ "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 144 + }, "metadata_dict": { "clothes": "toga", "mouth": "phoneme vuh", @@ -1724,11 +2158,14 @@ "hat": "fisherman's hat", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 145 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "prussian helmet", @@ -1736,11 +2173,14 @@ "background": "orange", "eyes": "3d", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 146 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "laser eyes", @@ -1748,11 +2188,14 @@ "hat": "faux hawk", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 147 + }, "metadata_dict": { "clothes": "black holes t", "background": "orange", @@ -1760,11 +2203,14 @@ "earring": "silver hoop", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 148 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -1772,22 +2218,28 @@ "fur": "black", "earring": "gold stud", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 149 + }, "metadata_dict": { "background": "orange", "eyes": "3d", "earring": "silver hoop", "fur": "white", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 150 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "cowboy shirt", @@ -1795,11 +2247,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 151 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "bone tee", @@ -1807,11 +2262,14 @@ "hat": "seaman's hat", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 152 + }, "metadata_dict": { "hat": "girl's hair pink", "earring": "silver stud", @@ -1820,22 +2278,28 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 153 + }, "metadata_dict": { "mouth": "grin", "background": "orange", "eyes": "bored", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 154 + }, "metadata_dict": { "hat": "girl's hair short", "fur": "golden brown", @@ -1843,11 +2307,14 @@ "clothes": "toga", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 155 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -1856,11 +2323,14 @@ "earring": "silver hoop", "hat": "vietnam era helmet", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 156 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -1868,11 +2338,14 @@ "fur": "golden brown", "background": "orange", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 157 + }, "metadata_dict": { "earring": "silver stud", "fur": "dark brown", @@ -1880,11 +2353,14 @@ "mouth": "bored", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 158 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -1892,43 +2368,55 @@ "earring": "silver hoop", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 159 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 160 + }, "metadata_dict": { "eyes": "x eyes", "background": "blue", "fur": "dark brown", "hat": "short mohawk", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 161 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "background": "yellow", "hat": "commie hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 162 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "jovial", @@ -1936,11 +2424,14 @@ "hat": "spinner hat", "fur": "noise", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 163 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -1948,11 +2439,14 @@ "background": "aquamarine", "hat": "bayc flipped brim", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 164 + }, "metadata_dict": { "hat": "fez", "background": "yellow", @@ -1960,11 +2454,14 @@ "fur": "white", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 165 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -1972,11 +2469,14 @@ "clothes": "tuxedo tee", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 166 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "black t", @@ -1985,11 +2485,14 @@ "mouth": "phoneme wah", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 167 + }, "metadata_dict": { "hat": "irish boho", "eyes": "coins", @@ -1998,11 +2501,14 @@ "background": "yellow", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 168 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "black", @@ -2011,11 +2517,14 @@ "clothes": "tanktop", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 169 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "blue", @@ -2023,11 +2532,14 @@ "eyes": "bored", "hat": "faux hawk", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 170 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", @@ -2035,33 +2547,42 @@ "clothes": "guayabera", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 171 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "brown", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 172 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "eyes": "bloodshot", "hat": "bayc flipped brim", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 173 + }, "metadata_dict": { "hat": "bayc flipped brim", "eyes": "bored", @@ -2069,11 +2590,14 @@ "clothes": "guayabera", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 174 + }, "metadata_dict": { "clothes": "black holes t", "earring": "gold hoop", @@ -2082,11 +2606,14 @@ "fur": "pink", "eyes": "bloodshot", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 175 + }, "metadata_dict": { "eyes": "scumbag", "background": "aquamarine", @@ -2094,11 +2621,14 @@ "earring": "silver hoop", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 176 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "coins", @@ -2106,11 +2636,14 @@ "fur": "black", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 177 + }, "metadata_dict": { "eyes": "heart", "hat": "sushi chef headband", @@ -2118,11 +2651,14 @@ "mouth": "grin", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 178 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -2131,11 +2667,14 @@ "earring": "silver hoop", "eyes": "sleepy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 179 + }, "metadata_dict": { "clothes": "bayc t black", "hat": "bowler", @@ -2143,11 +2682,14 @@ "background": "army green", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 180 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -2155,11 +2697,14 @@ "clothes": "biker vest", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 181 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "dmt", @@ -2167,11 +2712,14 @@ "background": "aquamarine", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 182 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "seaman's hat", @@ -2179,11 +2727,14 @@ "eyes": "bloodshot", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 183 + }, "metadata_dict": { "earring": "gold stud", "fur": "brown", @@ -2191,11 +2742,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 184 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -2203,11 +2757,14 @@ "clothes": "rainbow suspenders", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 185 + }, "metadata_dict": { "hat": "fez", "clothes": "cowboy shirt", @@ -2215,11 +2772,14 @@ "eyes": "blue beams", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 186 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -2227,11 +2787,14 @@ "hat": "army hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 187 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", @@ -2240,11 +2803,14 @@ "earring": "silver hoop", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 188 + }, "metadata_dict": { "earring": "silver hoop", "hat": "fisherman's hat", @@ -2253,11 +2819,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 189 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -2265,65 +2834,83 @@ "earring": "cross", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 190 + }, "metadata_dict": { "eyes": "bored", "hat": "girl's hair short", "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 191 + }, "metadata_dict": { "background": "new punk blue", "eyes": "3d", "fur": "dark brown", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 192 + }, "metadata_dict": { "background": "yellow", "fur": "dark brown", "eyes": "bored", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 193 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "cream", "mouth": "rage", "background": "gray", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 194 + }, "metadata_dict": { "clothes": "black t", "mouth": "dumbfounded", "eyes": "bloodshot", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 195 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "work vest", @@ -2331,11 +2918,14 @@ "eyes": "bored", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 196 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver hoop", @@ -2343,11 +2933,14 @@ "background": "gray", "fur": "death bot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 197 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -2355,11 +2948,14 @@ "fur": "solid gold", "hat": "bayc hat red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 198 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -2367,11 +2963,14 @@ "earring": "gold stud", "eyes": "crazy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 199 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -2379,11 +2978,14 @@ "hat": "girl's hair short", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 200 + }, "metadata_dict": { "eyes": "heart", "clothes": "leather jacket", @@ -2391,33 +2993,42 @@ "fur": "death bot", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 201 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", "mouth": "bored unshaven", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 202 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "noise", "eyes": "bored", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 203 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -2425,21 +3036,27 @@ "mouth": "jovial", "clothes": "tuxedo tee", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 204 + }, "metadata_dict": { "fur": "noise", "mouth": "phoneme vuh", "background": "new punk blue", "eyes": "eyepatch" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 205 + }, "metadata_dict": { "background": "new punk blue", "hat": "fez", @@ -2447,11 +3064,14 @@ "fur": "black", "clothes": "guayabera", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 206 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -2459,22 +3079,28 @@ "mouth": "jovial", "fur": "dark brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 207 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "dmt", "clothes": "black t", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 208 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "eyes": "coins", @@ -2483,33 +3109,42 @@ "fur": "pink", "clothes": "prom dress", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 209 + }, "metadata_dict": { "fur": "golden brown", "clothes": "prison jumpsuit", "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 210 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "mouth": "grin", "fur": "red", "clothes": "smoking jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 211 + }, "metadata_dict": { "fur": "trippy", "hat": "baby's bonnet", @@ -2517,11 +3152,14 @@ "clothes": "work vest", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 212 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -2530,22 +3168,28 @@ "hat": "army hat", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 213 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "brown", "earring": "silver stud", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 214 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -2554,33 +3198,42 @@ "earring": "silver stud", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 215 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "hat": "cowboy hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 216 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", "earring": "silver stud", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 217 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", @@ -2588,11 +3241,14 @@ "fur": "pink", "eyes": "bloodshot", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 218 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -2600,11 +3256,14 @@ "hat": "army hat", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 219 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", @@ -2612,11 +3271,14 @@ "background": "orange", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 220 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "black holes t", @@ -2624,11 +3286,14 @@ "hat": "short mohawk", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 221 + }, "metadata_dict": { "mouth": "phoneme wah", "clothes": "sailor shirt", @@ -2636,11 +3301,14 @@ "hat": "cowboy hat", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 222 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "bayc t red", @@ -2649,11 +3317,14 @@ "background": "aquamarine", "mouth": "bored pipe", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 223 + }, "metadata_dict": { "background": "purple", "clothes": "leather punk jacket", @@ -2662,22 +3333,28 @@ "earring": "silver stud", "eyes": "3d", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 224 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", "eyes": "3d", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 225 + }, "metadata_dict": { "clothes": "leather jacket", "fur": "cheetah", @@ -2685,22 +3362,28 @@ "mouth": "bored", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 226 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", "mouth": "bored party horn", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 227 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -2708,11 +3391,14 @@ "background": "aquamarine", "mouth": "bored bubblegum", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 228 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -2720,11 +3406,14 @@ "mouth": "bored", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 229 + }, "metadata_dict": { "mouth": "grin", "earring": "silver stud", @@ -2733,11 +3422,14 @@ "hat": "vietnam era helmet", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 230 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -2745,11 +3437,14 @@ "hat": "beanie", "eyes": "sleepy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 231 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "rage", @@ -2757,11 +3452,14 @@ "fur": "pink", "hat": "beanie", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 232 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "smoking jacket", @@ -2769,22 +3467,28 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 233 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", "mouth": "bored unshaven", "hat": "girl's hair pink", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 234 + }, "metadata_dict": { "earring": "silver stud", "fur": "pink", @@ -2792,32 +3496,41 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 235 + }, "metadata_dict": { "mouth": "grin", "eyes": "3d", "fur": "dark brown", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 236 + }, "metadata_dict": { "fur": "pink", "background": "orange", "mouth": "bored", "eyes": "blue beams" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 237 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "sushi chef headband", @@ -2826,22 +3539,28 @@ "eyes": "bloodshot", "mouth": "small grin", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 238 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", "clothes": "guayabera", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 239 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless t", @@ -2850,11 +3569,14 @@ "mouth": "bored", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 240 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "tweed suit", @@ -2862,11 +3584,14 @@ "mouth": "rage", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 241 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -2874,11 +3599,14 @@ "mouth": "dumbfounded", "background": "aquamarine", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 242 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -2887,11 +3615,14 @@ "clothes": "bone necklace", "earring": "cross", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 243 + }, "metadata_dict": { "clothes": "bayc t red", "background": "blue", @@ -2899,11 +3630,14 @@ "hat": "army hat", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 244 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "prussian helmet", @@ -2911,11 +3645,14 @@ "fur": "dark brown", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 245 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "cheetah", @@ -2924,11 +3661,14 @@ "earring": "gold stud", "hat": "girl's hair short", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 246 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -2936,11 +3676,14 @@ "background": "gray", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 247 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold stud", @@ -2949,11 +3692,14 @@ "mouth": "bored unshaven cigar", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 248 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", @@ -2961,11 +3707,14 @@ "earring": "silver stud", "fur": "dark brown", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 249 + }, "metadata_dict": { "mouth": "bored party horn", "clothes": "cowboy shirt", @@ -2973,33 +3722,42 @@ "fur": "brown", "hat": "safari", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 250 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", "hat": "stuntman helmet", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 251 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "blindfold", "fur": "dark brown", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 252 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -3008,11 +3766,14 @@ "hat": "army hat", "earring": "cross", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 253 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -3020,43 +3781,55 @@ "hat": "stuntman helmet", "clothes": "bayc t black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 254 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "earring": "silver hoop", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 255 + }, "metadata_dict": { "fur": "golden brown", "eyes": "bored", "mouth": "bored cigarette", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 256 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "aquamarine", "fur": "brown", "eyes": "crazy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 257 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "tan", @@ -3064,11 +3837,14 @@ "eyes": "bloodshot", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 258 + }, "metadata_dict": { "background": "blue", "hat": "bayc flipped brim", @@ -3076,11 +3852,14 @@ "clothes": "bone necklace", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 259 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", @@ -3088,22 +3867,28 @@ "clothes": "tweed suit", "background": "aquamarine", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 260 + }, "metadata_dict": { "clothes": "work vest", "background": "aquamarine", "mouth": "tongue out", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 261 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -3111,22 +3896,28 @@ "hat": "s&m hat", "clothes": "sailor shirt", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 262 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", "fur": "golden brown", "mouth": "phoneme vuh", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 263 + }, "metadata_dict": { "earring": "silver hoop", "mouth": "bored cigarette", @@ -3135,11 +3926,14 @@ "fur": "black", "clothes": "smoking jacket", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 264 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "rage", @@ -3148,11 +3942,14 @@ "background": "yellow", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 265 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "space suit", @@ -3161,22 +3958,28 @@ "fur": "dark brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 266 + }, "metadata_dict": { "hat": "fez", "mouth": "bored bubblegum", "background": "yellow", "fur": "robot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 267 + }, "metadata_dict": { "eyes": "zombie", "clothes": "sailor shirt", @@ -3184,11 +3987,14 @@ "fur": "black", "background": "orange", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 268 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "biker vest", @@ -3196,22 +4002,28 @@ "background": "yellow", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 269 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "3d", "fur": "brown", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 270 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -3219,33 +4031,42 @@ "clothes": "toga", "fur": "brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 271 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "mouth": "phoneme vuh", "fur": "cheetah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 272 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "leather punk jacket", "eyes": "coins", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 273 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -3253,11 +4074,14 @@ "clothes": "leather jacket", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 274 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -3266,33 +4090,42 @@ "hat": "stuntman helmet", "earring": "silver hoop", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 275 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "hat": "stuntman helmet", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 276 + }, "metadata_dict": { "eyes": "closed", "hat": "king's crown", "mouth": "phoneme vuh", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 277 + }, "metadata_dict": { "eyes": "blindfold", "background": "blue", @@ -3301,11 +4134,14 @@ "hat": "fisherman's hat", "clothes": "sleeveless logo t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 278 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", @@ -3314,11 +4150,14 @@ "hat": "cowboy hat", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 279 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -3326,22 +4165,28 @@ "fur": "black", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 280 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "dumbfounded", "eyes": "robot", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 281 + }, "metadata_dict": { "eyes": "closed", "clothes": "cowboy shirt", @@ -3350,11 +4195,14 @@ "earring": "cross", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 282 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "black", @@ -3362,11 +4210,14 @@ "hat": "fisherman's hat", "clothes": "sleeveless logo t", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 283 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -3374,11 +4225,14 @@ "fur": "dark brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 284 + }, "metadata_dict": { "eyes": "coins", "hat": "bayc flipped brim", @@ -3386,11 +4240,14 @@ "clothes": "guayabera", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 285 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "bored unshaven pipe", @@ -3399,11 +4256,14 @@ "clothes": "biker vest", "earring": "silver hoop", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 286 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "blindfold", @@ -3411,11 +4271,14 @@ "background": "aquamarine", "mouth": "small grin", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 287 + }, "metadata_dict": { "eyes": "closed", "fur": "dmt", @@ -3424,11 +4287,14 @@ "hat": "short mohawk", "earring": "silver hoop", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 288 + }, "metadata_dict": { "earring": "diamond stud", "fur": "black", @@ -3437,11 +4303,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 289 + }, "metadata_dict": { "eyes": "x eyes", "hat": "prussian helmet", @@ -3449,11 +4318,14 @@ "fur": "black", "mouth": "small grin", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 290 + }, "metadata_dict": { "fur": "gray", "background": "purple", @@ -3461,11 +4333,14 @@ "hat": "safari", "eyes": "angry", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 291 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin", @@ -3473,22 +4348,28 @@ "eyes": "bloodshot", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 292 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "stuntman helmet", "fur": "red", "background": "blue", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 293 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "phoneme oh", @@ -3496,11 +4377,14 @@ "hat": "horns", "background": "blue", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 294 + }, "metadata_dict": { "eyes": "sad", "background": "new punk blue", @@ -3508,11 +4392,14 @@ "clothes": "vietnam jacket", "hat": "fisherman's hat", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 295 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", @@ -3520,11 +4407,14 @@ "mouth": "bored", "fur": "white", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 296 + }, "metadata_dict": { "mouth": "discomfort", "earring": "diamond stud", @@ -3533,11 +4423,14 @@ "hat": "bowler", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 297 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin", @@ -3545,22 +4438,28 @@ "fur": "red", "eyes": "bored", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 298 + }, "metadata_dict": { "fur": "dmt", "mouth": "bored unshaven pipe", "clothes": "cowboy shirt", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 299 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "rage", @@ -3568,22 +4467,28 @@ "eyes": "bored", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 300 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 301 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "pink", @@ -3591,11 +4496,14 @@ "hat": "commie hat", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 302 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "fez", @@ -3603,44 +4511,56 @@ "clothes": "stunt jacket", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 303 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "golden brown", "background": "gray", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 304 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "fur": "gray", "clothes": "black t", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 305 + }, "metadata_dict": { "hat": "horns", "fur": "black", "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 306 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "golden brown", @@ -3648,11 +4568,14 @@ "background": "blue", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 307 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "pink", @@ -3660,11 +4583,14 @@ "hat": "army hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 308 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -3672,21 +4598,27 @@ "earring": "silver hoop", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 309 + }, "metadata_dict": { "background": "gray", "eyes": "blindfold", "mouth": "bored", "fur": "cream" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 310 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless logo t", @@ -3694,22 +4626,28 @@ "mouth": "bored cigar", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 311 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", "eyes": "bored", "mouth": "bored unshaven cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 312 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", @@ -3717,11 +4655,14 @@ "eyes": "3d", "hat": "bayc flipped brim", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 313 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -3729,11 +4670,14 @@ "clothes": "tie dye", "fur": "pink", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 314 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -3742,11 +4686,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 315 + }, "metadata_dict": { "mouth": "grin", "earring": "silver stud", @@ -3754,11 +4701,14 @@ "hat": "vietnam era helmet", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 316 + }, "metadata_dict": { "clothes": "bone necklace", "fur": "noise", @@ -3767,11 +4717,14 @@ "hat": "bowler", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 317 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -3779,22 +4732,28 @@ "fur": "golden brown", "mouth": "dumbfounded", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 318 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "dumbfounded", "background": "purple", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 319 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "party hat 2", @@ -3802,11 +4761,14 @@ "fur": "pink", "eyes": "bored", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 320 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -3815,11 +4777,14 @@ "background": "purple", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 321 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -3827,11 +4792,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 322 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "tie dye", @@ -3839,11 +4807,14 @@ "eyes": "bloodshot", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 323 + }, "metadata_dict": { "fur": "golden brown", "eyes": "zombie", @@ -3851,21 +4822,27 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 324 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven cigarette", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 325 + }, "metadata_dict": { "eyes": "blindfold", "fur": "gray", @@ -3873,11 +4850,14 @@ "hat": "cowboy hat", "clothes": "sleeveless logo t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 326 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -3885,22 +4865,28 @@ "clothes": "blue dress", "fur": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 327 + }, "metadata_dict": { "fur": "red", "earring": "silver hoop", "background": "yellow", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 328 + }, "metadata_dict": { "fur": "brown", "earring": "silver stud", @@ -3909,11 +4895,14 @@ "eyes": "bored", "clothes": "tanktop", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 329 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", @@ -3921,22 +4910,28 @@ "clothes": "sailor shirt", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 330 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", "fur": "black", "clothes": "service", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 331 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin", @@ -3944,22 +4939,28 @@ "background": "aquamarine", "clothes": "toga", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 332 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", "eyes": "3d", "clothes": "tuxedo tee", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 333 + }, "metadata_dict": { "eyes": "closed", "hat": "baby's bonnet", @@ -3967,11 +4968,14 @@ "mouth": "tongue out", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 334 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "yellow", @@ -3980,11 +4984,14 @@ "earring": "cross", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 335 + }, "metadata_dict": { "clothes": "black holes t", "background": "orange", @@ -3992,11 +4999,14 @@ "eyes": "bloodshot", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 336 + }, "metadata_dict": { "mouth": "grin", "fur": "dmt", @@ -4004,11 +5014,14 @@ "background": "aquamarine", "clothes": "biker vest", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 337 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -4017,11 +5030,14 @@ "hat": "bowler", "earring": "cross", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 338 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -4030,22 +5046,28 @@ "mouth": "phoneme vuh", "eyes": "3d", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 339 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme ooo", "fur": "dark brown", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 340 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -4054,11 +5076,14 @@ "background": "blue", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 341 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "commie hat", @@ -4066,11 +5091,14 @@ "background": "army green", "fur": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 342 + }, "metadata_dict": { "clothes": "work vest", "mouth": "bored pipe", @@ -4078,11 +5106,14 @@ "background": "orange", "eyes": "bloodshot", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 343 + }, "metadata_dict": { "hat": "party hat 2", "earring": "diamond stud", @@ -4090,11 +5121,14 @@ "fur": "dark brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 344 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -4102,11 +5136,14 @@ "clothes": "tuxedo tee", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 345 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -4114,11 +5151,14 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 346 + }, "metadata_dict": { "fur": "cream", "clothes": "sleeveless t", @@ -4126,22 +5166,28 @@ "mouth": "bored bubblegum", "eyes": "bored", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 347 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "cream", "eyes": "bored", "background": "gray", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 348 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin gold grill", @@ -4149,22 +5195,28 @@ "clothes": "sailor shirt", "fur": "red", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 349 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven pipe", "clothes": "leather jacket", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 350 + }, "metadata_dict": { "hat": "baby's bonnet", "earring": "gold hoop", @@ -4173,11 +5225,14 @@ "background": "aquamarine", "fur": "pink", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 351 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "s&m hat", @@ -4185,11 +5240,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 352 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme ooo", @@ -4198,11 +5256,14 @@ "fur": "brown", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 353 + }, "metadata_dict": { "fur": "tan", "hat": "bandana blue", @@ -4210,11 +5271,14 @@ "background": "aquamarine", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 354 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "blue dress", @@ -4223,33 +5287,42 @@ "background": "aquamarine", "earring": "gold stud", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 355 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "pink", "eyes": "bored", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 356 + }, "metadata_dict": { "fur": "gray", "eyes": "sleepy", "clothes": "bone necklace", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 357 + }, "metadata_dict": { "eyes": "zombie", "fur": "dark brown", @@ -4257,11 +5330,14 @@ "clothes": "stunt jacket", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 358 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", @@ -4269,22 +5345,28 @@ "earring": "silver stud", "fur": "noise", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 359 + }, "metadata_dict": { "eyes": "coins", "background": "blue", "clothes": "hawaiian", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 360 + }, "metadata_dict": { "eyes": "zombie", "mouth": "bored unshaven bubblegum", @@ -4292,11 +5374,14 @@ "clothes": "toga", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 361 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -4304,11 +5389,14 @@ "fur": "pink", "clothes": "pimp coat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 362 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin", @@ -4316,11 +5404,14 @@ "fur": "black", "background": "gray", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 363 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "grin", @@ -4328,11 +5419,14 @@ "background": "orange", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 364 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -4340,11 +5434,14 @@ "mouth": "grin", "earring": "gold stud", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 365 + }, "metadata_dict": { "eyes": "coins", "background": "aquamarine", @@ -4352,11 +5449,14 @@ "clothes": "tie dye", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 366 + }, "metadata_dict": { "fur": "cream", "clothes": "caveman pelt", @@ -4364,11 +5464,14 @@ "eyes": "bored", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 367 + }, "metadata_dict": { "hat": "horns", "clothes": "black t", @@ -4376,11 +5479,14 @@ "mouth": "jovial", "fur": "red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 368 + }, "metadata_dict": { "hat": "sea captain's hat", "background": "orange", @@ -4388,11 +5494,14 @@ "mouth": "bored", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 369 + }, "metadata_dict": { "eyes": "sleepy", "fur": "dark brown", @@ -4400,11 +5509,14 @@ "background": "purple", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 370 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -4412,22 +5524,28 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 371 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", "clothes": "rainbow suspenders", "mouth": "dumbfounded", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 372 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -4435,22 +5553,28 @@ "earring": "silver hoop", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 373 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "fur": "dark brown", "clothes": "bayc t black", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 374 + }, "metadata_dict": { "fur": "golden brown", "hat": "baby's bonnet", @@ -4459,22 +5583,28 @@ "clothes": "guayabera", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 375 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "earring": "silver stud", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 376 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -4483,11 +5613,14 @@ "background": "yellow", "earring": "cross", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 377 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -4495,11 +5628,14 @@ "mouth": "grin", "fur": "dark brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 378 + }, "metadata_dict": { "hat": "irish boho", "fur": "dmt", @@ -4508,22 +5644,28 @@ "clothes": "tuxedo tee", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 379 + }, "metadata_dict": { "clothes": "striped tee", "background": "aquamarine", "mouth": "bored cigarette", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 380 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "jovial", @@ -4531,22 +5673,28 @@ "clothes": "bayc t black", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 381 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "eyes": "bored", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 382 + }, "metadata_dict": { "eyes": "coins", "mouth": "phoneme vuh", @@ -4554,22 +5702,28 @@ "clothes": "prom dress", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 383 + }, "metadata_dict": { "mouth": "rage", "background": "blue", "fur": "noise", "hat": "fisherman's hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 384 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -4578,22 +5732,28 @@ "clothes": "prom dress", "eyes": "sleepy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 385 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", "eyes": "bloodshot", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 386 + }, "metadata_dict": { "mouth": "bored dagger", "background": "yellow", @@ -4601,11 +5761,14 @@ "hat": "bowler", "eyes": "sleepy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 387 + }, "metadata_dict": { "fur": "tan", "clothes": "bayc t red", @@ -4613,11 +5776,14 @@ "background": "blue", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 388 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "black", @@ -4625,11 +5791,14 @@ "mouth": "tongue out", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 389 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", @@ -4637,11 +5806,14 @@ "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 390 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -4649,11 +5821,14 @@ "fur": "brown", "hat": "vietnam era helmet", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 391 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "golden brown", @@ -4661,11 +5836,14 @@ "background": "yellow", "clothes": "stunt jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 392 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "brown", @@ -4673,11 +5851,14 @@ "mouth": "bored", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 393 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -4686,11 +5867,14 @@ "earring": "silver stud", "clothes": "caveman pelt", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 394 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -4698,11 +5882,14 @@ "clothes": "leather jacket", "eyes": "3d", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 395 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -4710,11 +5897,14 @@ "eyes": "3d", "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 396 + }, "metadata_dict": { "clothes": "sailor shirt", "earring": "silver stud", @@ -4722,21 +5912,27 @@ "mouth": "tongue out", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 397 + }, "metadata_dict": { "fur": "brown", "background": "yellow", "mouth": "bored cigarette", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 398 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -4744,22 +5940,28 @@ "mouth": "phoneme ooo", "hat": "baby's bonnet", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 399 + }, "metadata_dict": { "hat": "irish boho", "background": "orange", "eyes": "bored", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 400 + }, "metadata_dict": { "clothes": "tie dye", "fur": "dark brown", @@ -4767,11 +5969,14 @@ "mouth": "phoneme wah", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 401 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -4779,22 +5984,28 @@ "fur": "red", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 402 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", "fur": "pink", "mouth": "bored cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 403 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme vuh", @@ -4802,11 +6013,14 @@ "background": "orange", "clothes": "sleeveless logo t", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 404 + }, "metadata_dict": { "eyes": "closed", "mouth": "discomfort", @@ -4814,11 +6028,14 @@ "clothes": "black t", "fur": "noise", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 405 + }, "metadata_dict": { "eyes": "heart", "hat": "bandana blue", @@ -4826,11 +6043,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 406 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin gold grill", @@ -4838,11 +6058,14 @@ "fur": "gray", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 407 + }, "metadata_dict": { "background": "gray", "mouth": "dumbfounded", @@ -4851,11 +6074,14 @@ "earring": "silver hoop", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 408 + }, "metadata_dict": { "fur": "black", "eyes": "bloodshot", @@ -4863,33 +6089,42 @@ "clothes": "navy striped tee", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 409 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "girl's hair pink", "fur": "pink", "eyes": "3d", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 410 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "mouth": "bored pipe", "clothes": "bayc t black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 411 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -4897,11 +6132,14 @@ "hat": "fez", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 412 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme oh", @@ -4909,11 +6147,14 @@ "clothes": "sleeveless logo t", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 413 + }, "metadata_dict": { "earring": "diamond stud", "background": "yellow", @@ -4922,11 +6163,14 @@ "eyes": "bloodshot", "hat": "beanie", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 414 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", @@ -4934,11 +6178,14 @@ "background": "aquamarine", "earring": "gold stud", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 415 + }, "metadata_dict": { "clothes": "black t", "background": "blue", @@ -4946,11 +6193,14 @@ "mouth": "bored", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 416 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -4959,44 +6209,56 @@ "hat": "bowler", "clothes": "guayabera", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 417 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", "fur": "pink", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 418 + }, "metadata_dict": { "mouth": "jovial", "background": "blue", "earring": "gold stud", "fur": "pink", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 419 + }, "metadata_dict": { "background": "new punk blue", "hat": "sushi chef headband", "eyes": "hypnotized", "fur": "golden brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 420 + }, "metadata_dict": { "eyes": "3d", "fur": "noise", @@ -5005,11 +6267,14 @@ "hat": "cowboy hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 421 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "heart", @@ -5017,21 +6282,27 @@ "mouth": "dumbfounded", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 422 + }, "metadata_dict": { "fur": "cheetah", "mouth": "bored unshaven", "eyes": "crazy", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 423 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "bored", @@ -5039,11 +6310,14 @@ "background": "purple", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 424 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "golden brown", @@ -5052,11 +6326,14 @@ "background": "yellow", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 425 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -5064,11 +6341,14 @@ "clothes": "tanktop", "fur": "death bot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 426 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -5076,11 +6356,14 @@ "mouth": "bored pipe", "background": "orange", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 427 + }, "metadata_dict": { "mouth": "grin gold grill", "earring": "gold hoop", @@ -5088,11 +6371,14 @@ "eyes": "bored", "fur": "brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 428 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -5100,22 +6386,28 @@ "background": "orange", "clothes": "guayabera", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 429 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bloodshot", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 430 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", @@ -5123,11 +6415,14 @@ "eyes": "coins", "hat": "bayc flipped brim", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 431 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -5136,11 +6431,14 @@ "fur": "dark brown", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 432 + }, "metadata_dict": { "mouth": "phoneme wah", "clothes": "biker vest", @@ -5148,11 +6446,14 @@ "hat": "vietnam era helmet", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 433 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -5160,11 +6461,14 @@ "clothes": "lumberjack shirt", "hat": "party hat 1", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 434 + }, "metadata_dict": { "background": "blue", "earring": "silver hoop", @@ -5172,11 +6476,14 @@ "fur": "white", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 435 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven bubblegum", @@ -5184,11 +6491,14 @@ "hat": "fisherman's hat", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 436 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bone necklace", @@ -5196,11 +6506,14 @@ "hat": "bowler", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 437 + }, "metadata_dict": { "fur": "gray", "earring": "silver stud", @@ -5209,11 +6522,14 @@ "hat": "short mohawk", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 438 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "3d", @@ -5221,11 +6537,14 @@ "hat": "bayc flipped brim", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 439 + }, "metadata_dict": { "clothes": "prison jumpsuit", "earring": "gold stud", @@ -5234,11 +6553,14 @@ "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 440 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -5246,11 +6568,14 @@ "hat": "girl's hair pink", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 441 + }, "metadata_dict": { "clothes": "bandolier", "background": "blue", @@ -5258,11 +6583,14 @@ "eyes": "blue beams", "fur": "death bot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 442 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -5270,22 +6598,28 @@ "hat": "fisherman's hat", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 443 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "eyes": "holographic", "hat": "fez", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 444 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "lumberjack shirt", @@ -5294,11 +6628,14 @@ "hat": "bunny ears", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 445 + }, "metadata_dict": { "eyes": "blindfold", "earring": "gold hoop", @@ -5307,11 +6644,14 @@ "clothes": "smoking jacket", "hat": "safari", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 446 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "zombie", @@ -5320,11 +6660,14 @@ "background": "gray", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 447 + }, "metadata_dict": { "fur": "tan", "earring": "silver hoop", @@ -5332,11 +6675,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 448 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -5344,11 +6690,14 @@ "earring": "gold stud", "background": "orange", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 449 + }, "metadata_dict": { "fur": "tan", "clothes": "bandolier", @@ -5356,11 +6705,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 450 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -5368,11 +6720,14 @@ "hat": "army hat", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 451 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "background": "orange", @@ -5380,22 +6735,28 @@ "clothes": "tuxedo tee", "hat": "ww2 pilot helm", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 452 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "brown", "background": "purple", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 453 + }, "metadata_dict": { "fur": "cream", "hat": "sushi chef headband", @@ -5404,11 +6765,14 @@ "mouth": "bored pipe", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 454 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "blue dress", @@ -5417,11 +6781,14 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 455 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", @@ -5429,11 +6796,14 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 456 + }, "metadata_dict": { "background": "new punk blue", "hat": "baby's bonnet", @@ -5442,11 +6812,14 @@ "mouth": "bored unshaven kazoo", "fur": "dark brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 457 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -5455,11 +6828,14 @@ "earring": "cross", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 458 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "black t", @@ -5467,11 +6843,14 @@ "fur": "red", "mouth": "tongue out", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 459 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -5480,22 +6859,28 @@ "earring": "gold stud", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 460 + }, "metadata_dict": { "fur": "gray", "mouth": "phoneme vuh", "background": "orange", "eyes": "bloodshot", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 461 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "dmt", @@ -5503,11 +6888,14 @@ "background": "yellow", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 462 + }, "metadata_dict": { "mouth": "bored cigarette", "eyes": "blindfold", @@ -5515,22 +6903,28 @@ "fur": "dark brown", "clothes": "navy striped tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 463 + }, "metadata_dict": { "eyes": "laser eyes", "background": "aquamarine", "mouth": "bored cigarette", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 464 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -5539,11 +6933,14 @@ "background": "orange", "mouth": "bored cigar", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 465 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", @@ -5551,54 +6948,69 @@ "background": "blue", "clothes": "biker vest", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 466 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "black", "background": "purple", "clothes": "hip hop", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 467 + }, "metadata_dict": { "hat": "s&m hat", "fur": "gray", "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 468 + }, "metadata_dict": { "fur": "golden brown", "clothes": "work vest", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 469 + }, "metadata_dict": { "background": "gray", "eyes": "coins", "mouth": "bored", "fur": "noise" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 470 + }, "metadata_dict": { "fur": "tan", "clothes": "black t", @@ -5607,11 +7019,14 @@ "eyes": "bored", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 471 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -5619,11 +7034,14 @@ "background": "blue", "fur": "dark brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 472 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", @@ -5631,11 +7049,14 @@ "clothes": "tie dye", "hat": "short mohawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 473 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "discomfort", @@ -5644,11 +7065,14 @@ "fur": "brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 474 + }, "metadata_dict": { "background": "gray", "clothes": "toga", @@ -5657,33 +7081,42 @@ "hat": "fisherman's hat", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 475 + }, "metadata_dict": { "hat": "bayc hat black", "background": "gray", "eyes": "3d", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 476 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "pink", "eyes": "bored", "background": "gray", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 477 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -5691,11 +7124,14 @@ "clothes": "stunt jacket", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 478 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -5703,33 +7139,42 @@ "background": "aquamarine", "hat": "commie hat", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 479 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", "eyes": "bloodshot", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 480 + }, "metadata_dict": { "fur": "tan", "clothes": "tweed suit", "mouth": "bored pipe", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 481 + }, "metadata_dict": { "mouth": "bored unshaven dagger", "earring": "gold stud", @@ -5737,11 +7182,14 @@ "clothes": "bayc t black", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 482 + }, "metadata_dict": { "clothes": "bandolier", "hat": "seaman's hat", @@ -5749,11 +7197,14 @@ "fur": "brown", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 483 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -5762,11 +7213,14 @@ "clothes": "navy striped tee", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 484 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "jovial", @@ -5774,21 +7228,27 @@ "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 485 + }, "metadata_dict": { "fur": "brown", "background": "yellow", "mouth": "bored", "eyes": "eyepatch" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 486 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bloodshot", @@ -5796,11 +7256,14 @@ "fur": "dark brown", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 487 + }, "metadata_dict": { "fur": "tan", "clothes": "wool turtleneck", @@ -5808,22 +7271,28 @@ "background": "blue", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 488 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "hat": "prussian helmet", "background": "blue", "mouth": "bored pizza" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 489 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -5831,11 +7300,14 @@ "eyes": "bored", "clothes": "tanktop", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 490 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -5844,11 +7316,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 491 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "baby's bonnet", @@ -5857,11 +7332,14 @@ "earring": "silver hoop", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 492 + }, "metadata_dict": { "mouth": "grin", "clothes": "sailor shirt", @@ -5869,11 +7347,14 @@ "fur": "dark brown", "hat": "army hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 493 + }, "metadata_dict": { "earring": "gold hoop", "fur": "black", @@ -5882,11 +7363,14 @@ "hat": "beanie", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 494 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -5894,22 +7378,28 @@ "eyes": "bored", "hat": "vietnam era helmet", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 495 + }, "metadata_dict": { "fur": "pink", "eyes": "bored", "hat": "bowler", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 496 + }, "metadata_dict": { "fur": "tan", "eyes": "3d", @@ -5917,11 +7407,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 497 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "sailor shirt", @@ -5929,22 +7422,28 @@ "background": "orange", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 498 + }, "metadata_dict": { "fur": "brown", "eyes": "bloodshot", "background": "gray", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 499 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -5952,22 +7451,28 @@ "eyes": "robot", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 500 + }, "metadata_dict": { "eyes": "coins", "background": "blue", "hat": "army hat", "fur": "cheetah", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 501 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -5975,22 +7480,28 @@ "mouth": "bored bubblegum", "clothes": "smoking jacket", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 502 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "clothes": "work vest", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 503 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -5998,33 +7509,42 @@ "eyes": "bloodshot", "hat": "ww2 pilot helm", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 504 + }, "metadata_dict": { "mouth": "bored party horn", "background": "aquamarine", "fur": "black", "hat": "beanie", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 505 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", "hat": "vietnam era helmet", "fur": "robot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 506 + }, "metadata_dict": { "fur": "cream", "hat": "stuntman helmet", @@ -6032,11 +7552,14 @@ "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 507 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven cigarette", @@ -6044,11 +7567,14 @@ "hat": "girl's hair pink", "background": "gray", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 508 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "bandolier", @@ -6056,11 +7582,14 @@ "hat": "fisherman's hat", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 509 + }, "metadata_dict": { "mouth": "grin diamond grill", "background": "aquamarine", @@ -6068,11 +7597,14 @@ "hat": "beanie", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 510 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored cigar", @@ -6080,11 +7612,14 @@ "eyes": "sad", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 511 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -6092,22 +7627,28 @@ "background": "blue", "hat": "faux hawk", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 512 + }, "metadata_dict": { "clothes": "space suit", "mouth": "grin", "eyes": "coins", "background": "aquamarine", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 513 + }, "metadata_dict": { "mouth": "discomfort", "hat": "short mohawk", @@ -6115,11 +7656,14 @@ "background": "army green", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 514 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "tweed suit", @@ -6127,11 +7671,14 @@ "fur": "dark brown", "hat": "ww2 pilot helm", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 515 + }, "metadata_dict": { "clothes": "blue dress", "hat": "seaman's hat", @@ -6139,33 +7686,42 @@ "fur": "cheetah", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 516 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", "background": "blue", "clothes": "biker vest", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 517 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored party horn", "hat": "beanie", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 518 + }, "metadata_dict": { "background": "aquamarine", "eyes": "bored", @@ -6173,11 +7729,14 @@ "clothes": "navy striped tee", "hat": "police motorcycle helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 519 + }, "metadata_dict": { "clothes": "striped tee", "fur": "gray", @@ -6185,11 +7744,14 @@ "eyes": "bloodshot", "background": "yellow", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 520 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -6198,11 +7760,14 @@ "background": "blue", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 521 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", @@ -6211,22 +7776,28 @@ "clothes": "tuxedo tee", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 522 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", "fur": "brown", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 523 + }, "metadata_dict": { "eyes": "zombie", "mouth": "jovial", @@ -6234,11 +7805,14 @@ "background": "yellow", "clothes": "hip hop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 524 + }, "metadata_dict": { "mouth": "grin", "clothes": "tweed suit", @@ -6246,11 +7820,14 @@ "background": "gray", "eyes": "sleepy", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 525 + }, "metadata_dict": { "eyes": "coins", "hat": "stuntman helmet", @@ -6259,22 +7836,28 @@ "background": "yellow", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 526 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "phoneme vuh", "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 527 + }, "metadata_dict": { "hat": "horns", "eyes": "bloodshot", @@ -6282,11 +7865,14 @@ "fur": "brown", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 528 + }, "metadata_dict": { "clothes": "black holes t", "earring": "gold stud", @@ -6295,11 +7881,14 @@ "mouth": "small grin", "fur": "solid gold", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 529 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -6308,55 +7897,70 @@ "background": "blue", "hat": "spinner hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 530 + }, "metadata_dict": { "eyes": "closed", "earring": "diamond stud", "mouth": "dumbfounded", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 531 + }, "metadata_dict": { "clothes": "prison jumpsuit", "eyes": "3d", "background": "yellow", "fur": "white", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 532 + }, "metadata_dict": { "background": "new punk blue", "mouth": "small grin", "fur": "brown", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 533 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "eyes": "bloodshot", "mouth": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 534 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "dumbfounded", @@ -6365,11 +7969,14 @@ "background": "gray", "hat": "vietnam era helmet", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 535 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -6377,11 +7984,14 @@ "fur": "black", "clothes": "lab coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 536 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "biker vest", @@ -6389,11 +7999,14 @@ "background": "purple", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 537 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "sunglasses", @@ -6401,11 +8014,14 @@ "background": "blue", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 538 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "bored unshaven pipe", @@ -6413,11 +8029,14 @@ "fur": "dark brown", "hat": "bayc flipped brim", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 539 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -6426,11 +8045,14 @@ "clothes": "tuxedo tee", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 540 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -6439,11 +8061,14 @@ "background": "blue", "eyes": "3d", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 541 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -6451,11 +8076,14 @@ "clothes": "tanktop", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 542 + }, "metadata_dict": { "clothes": "kings robe", "fur": "gray", @@ -6463,11 +8091,14 @@ "background": "gray", "mouth": "bored cigar", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 543 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -6475,11 +8106,14 @@ "earring": "gold hoop", "background": "blue", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 544 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "eyepatch", @@ -6488,11 +8122,14 @@ "clothes": "tuxedo tee", "fur": "solid gold", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 545 + }, "metadata_dict": { "mouth": "grin", "fur": "dark brown", @@ -6500,11 +8137,14 @@ "background": "yellow", "hat": "bunny ears", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 546 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "sushi chef headband", @@ -6513,11 +8153,14 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 547 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -6525,11 +8168,14 @@ "fur": "black", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 548 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "phoneme ooo", @@ -6538,22 +8184,28 @@ "eyes": "bloodshot", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 549 + }, "metadata_dict": { "background": "blue", "fur": "dark brown", "eyes": "bored", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 550 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin diamond grill", @@ -6562,11 +8214,14 @@ "background": "gray", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 551 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -6574,11 +8229,14 @@ "background": "aquamarine", "clothes": "work vest", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 552 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -6586,11 +8244,14 @@ "hat": "girl's hair short", "background": "gray", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 553 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "discomfort", @@ -6598,11 +8259,14 @@ "hat": "safari", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 554 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -6610,11 +8274,14 @@ "clothes": "sailor shirt", "mouth": "dumbfounded", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 555 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -6622,11 +8289,14 @@ "fur": "robot", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 556 + }, "metadata_dict": { "hat": "irish boho", "fur": "gray", @@ -6634,11 +8304,14 @@ "background": "yellow", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 557 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "prussian helmet", @@ -6647,22 +8320,28 @@ "background": "purple", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 558 + }, "metadata_dict": { "eyes": "scumbag", "fur": "dark brown", "hat": "vietnam era helmet", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 559 + }, "metadata_dict": { "clothes": "black t", "mouth": "dumbfounded", @@ -6670,33 +8349,42 @@ "hat": "bayc flipped brim", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 560 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", "background": "orange", "eyes": "bloodshot", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 561 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "gray", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 562 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -6704,21 +8392,27 @@ "earring": "gold stud", "eyes": "bloodshot", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 563 + }, "metadata_dict": { "background": "yellow", "fur": "tan", "eyes": "blindfold", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 564 + }, "metadata_dict": { "hat": "horns", "background": "gray", @@ -6727,11 +8421,14 @@ "clothes": "biker vest", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 565 + }, "metadata_dict": { "clothes": "striped tee", "background": "aquamarine", @@ -6739,11 +8436,14 @@ "eyes": "bored", "hat": "cowboy hat", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 566 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -6751,11 +8451,14 @@ "clothes": "work vest", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 567 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "3d", @@ -6764,22 +8467,28 @@ "clothes": "sleeveless logo t", "earring": "cross", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 568 + }, "metadata_dict": { "eyes": "bloodshot", "mouth": "bored", "fur": "death bot", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 569 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -6787,11 +8496,14 @@ "background": "orange", "clothes": "sleeveless logo t", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 570 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -6799,22 +8511,28 @@ "mouth": "jovial", "background": "orange", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 571 + }, "metadata_dict": { "clothes": "vietnam jacket", "fur": "brown", "background": "purple", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 572 + }, "metadata_dict": { "fur": "robot", "clothes": "black t", @@ -6823,11 +8541,14 @@ "hat": "commie hat", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 573 + }, "metadata_dict": { "fur": "tan", "background": "blue", @@ -6835,11 +8556,14 @@ "earring": "silver hoop", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 574 + }, "metadata_dict": { "eyes": "holographic", "clothes": "sleeveless t", @@ -6847,11 +8571,14 @@ "background": "blue", "fur": "black", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 575 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -6860,22 +8587,28 @@ "fur": "dark brown", "earring": "silver hoop", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 576 + }, "metadata_dict": { "fur": "brown", "background": "gray", "eyes": "sleepy", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 577 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -6884,11 +8617,14 @@ "eyes": "bored", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 578 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "diamond stud", @@ -6896,11 +8632,14 @@ "hat": "short mohawk", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 579 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -6908,11 +8647,14 @@ "hat": "bayc flipped brim", "eyes": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 580 + }, "metadata_dict": { "eyes": "zombie", "background": "orange", @@ -6920,11 +8662,14 @@ "mouth": "bored unshaven cigarette", "hat": "halo", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 581 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -6932,21 +8677,27 @@ "earring": "gold hoop", "mouth": "phoneme vuh", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 582 + }, "metadata_dict": { "fur": "cheetah", "background": "purple", "mouth": "bored", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 583 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -6954,22 +8705,28 @@ "fur": "black", "clothes": "tuxedo tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 584 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", "hat": "fisherman's hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 585 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -6977,22 +8734,28 @@ "clothes": "leather punk jacket", "background": "orange", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 586 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "phoneme oh", "background": "aquamarine", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 587 + }, "metadata_dict": { "eyes": "closed", "fur": "black", @@ -7001,11 +8764,14 @@ "hat": "fisherman's hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 588 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -7013,11 +8779,14 @@ "hat": "army hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 589 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -7025,33 +8794,42 @@ "hat": "commie hat", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 590 + }, "metadata_dict": { "eyes": "scumbag", "background": "gray", "fur": "brown", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 591 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", "clothes": "leather jacket", "eyes": "blue beams", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 592 + }, "metadata_dict": { "fur": "tan", "mouth": "jovial", @@ -7059,11 +8837,14 @@ "hat": "ww2 pilot helm", "eyes": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 593 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", @@ -7071,11 +8852,14 @@ "eyes": "3d", "hat": "cowboy hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 594 + }, "metadata_dict": { "mouth": "grin", "clothes": "prison jumpsuit", @@ -7084,11 +8868,14 @@ "hat": "bunny ears", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 595 + }, "metadata_dict": { "fur": "tan", "clothes": "wool turtleneck", @@ -7096,11 +8883,14 @@ "mouth": "bored", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 596 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "work vest", @@ -7108,33 +8898,42 @@ "fur": "cheetah", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 597 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme vuh", "background": "gray", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 598 + }, "metadata_dict": { "background": "gray", "fur": "brown", "mouth": "bored", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 599 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", @@ -7142,11 +8941,14 @@ "mouth": "bored", "clothes": "navy striped tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 600 + }, "metadata_dict": { "earring": "gold hoop", "fur": "pink", @@ -7154,22 +8956,28 @@ "mouth": "bored cigarette", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 601 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "mouth": "rage", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 602 + }, "metadata_dict": { "eyes": "heart", "background": "gray", @@ -7177,11 +8985,14 @@ "fur": "brown", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 603 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -7189,22 +9000,28 @@ "fur": "dark brown", "hat": "beanie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 604 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "fur": "dark brown", "hat": "bayc flipped brim", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 605 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -7212,22 +9029,28 @@ "hat": "king's crown", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 606 + }, "metadata_dict": { "eyes": "closed", "hat": "spinner hat", "fur": "dark brown", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 607 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "irish boho", @@ -7235,11 +9058,14 @@ "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 608 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "striped tee", @@ -7247,33 +9073,42 @@ "fur": "dark brown", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 609 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme oh", "fur": "dark brown", "background": "yellow", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 610 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored bubblegum", "fur": "pink", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 611 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "wool turtleneck", @@ -7281,11 +9116,14 @@ "mouth": "grin", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 612 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "clothes": "tweed suit", @@ -7294,11 +9132,14 @@ "hat": "army hat", "earring": "silver hoop", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 613 + }, "metadata_dict": { "eyes": "scumbag", "fur": "gray", @@ -7307,11 +9148,14 @@ "background": "aquamarine", "earring": "gold stud", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 614 + }, "metadata_dict": { "hat": "horns", "clothes": "space suit", @@ -7320,11 +9164,14 @@ "background": "orange", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 615 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold stud", @@ -7333,11 +9180,14 @@ "fur": "brown", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 616 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "discomfort", @@ -7345,11 +9195,14 @@ "fur": "brown", "hat": "fez", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 617 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -7357,11 +9210,14 @@ "eyes": "bloodshot", "mouth": "phoneme wah", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 618 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", @@ -7369,11 +9225,14 @@ "mouth": "tongue out", "hat": "police motorcycle helmet", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 619 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "bored party horn", @@ -7381,11 +9240,14 @@ "background": "orange", "eyes": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 620 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -7393,22 +9255,28 @@ "fur": "dark brown", "hat": "ww2 pilot helm", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 621 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "coins", "background": "orange", "fur": "dark brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 622 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin", @@ -7417,11 +9285,14 @@ "background": "purple", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 623 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", @@ -7430,11 +9301,14 @@ "background": "orange", "eyes": "bored", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 624 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -7442,22 +9316,28 @@ "clothes": "tie dye", "hat": "bayc hat red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 625 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "rage", "eyes": "bloodshot", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 626 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "dumbfounded", @@ -7465,11 +9345,14 @@ "fur": "noise", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 627 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -7478,11 +9361,14 @@ "clothes": "stunt jacket", "hat": "girl's hair short", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 628 + }, "metadata_dict": { "clothes": "striped tee", "background": "gray", @@ -7490,11 +9376,14 @@ "fur": "brown", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 629 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black holes t", @@ -7503,11 +9392,14 @@ "fur": "dark brown", "hat": "army hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 630 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "holographic", @@ -7515,11 +9407,14 @@ "fur": "black", "background": "orange", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 631 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "leather jacket", @@ -7527,22 +9422,28 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 632 + }, "metadata_dict": { "eyes": "heart", "background": "aquamarine", "fur": "noise", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 633 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -7550,33 +9451,42 @@ "earring": "silver stud", "mouth": "tongue out", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 634 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", "clothes": "sailor shirt", "background": "orange", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 635 + }, "metadata_dict": { "eyes": "x eyes", "hat": "horns", "fur": "dark brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 636 + }, "metadata_dict": { "fur": "dmt", "eyes": "zombie", @@ -7584,11 +9494,14 @@ "clothes": "cowboy shirt", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 637 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -7596,11 +9509,14 @@ "eyes": "bored", "fur": "brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 638 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -7608,11 +9524,14 @@ "mouth": "small grin", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 639 + }, "metadata_dict": { "fur": "cream", "clothes": "blue dress", @@ -7620,11 +9539,14 @@ "mouth": "jovial", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 640 + }, "metadata_dict": { "clothes": "tweed suit", "earring": "silver stud", @@ -7632,11 +9554,14 @@ "mouth": "bored", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 641 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "hat": "beanie", @@ -7644,11 +9569,14 @@ "clothes": "bone necklace", "fur": "death bot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 642 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -7656,11 +9584,14 @@ "fur": "black", "earring": "silver hoop", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 643 + }, "metadata_dict": { "hat": "bayc flipped brim", "clothes": "bayc t black", @@ -7668,11 +9599,14 @@ "background": "yellow", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 644 + }, "metadata_dict": { "background": "new punk blue", "hat": "bandana blue", @@ -7680,11 +9614,14 @@ "fur": "black", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 645 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", @@ -7692,11 +9629,14 @@ "fur": "brown", "hat": "vietnam era helmet", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 646 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin multicolored", @@ -7704,22 +9644,28 @@ "fur": "pink", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 647 + }, "metadata_dict": { "mouth": "discomfort", "fur": "golden brown", "eyes": "coins", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 648 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -7727,11 +9673,14 @@ "background": "aquamarine", "clothes": "hip hop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 649 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven party horn", @@ -7739,21 +9688,27 @@ "clothes": "tuxedo tee", "eyes": "bored", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 650 + }, "metadata_dict": { "fur": "red", "mouth": "bored kazoo", "eyes": "3d", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 651 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black suit", @@ -7761,22 +9716,28 @@ "mouth": "tongue out", "eyes": "sleepy", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 652 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "grin multicolored", "background": "yellow", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 653 + }, "metadata_dict": { "fur": "black", "eyes": "bored", @@ -7784,11 +9745,14 @@ "background": "gray", "mouth": "bored", "clothes": "rainbow suspenders" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 654 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "aquamarine", @@ -7796,11 +9760,14 @@ "hat": "beanie", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 655 + }, "metadata_dict": { "clothes": "black t", "earring": "silver stud", @@ -7809,22 +9776,28 @@ "eyes": "sleepy", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 656 + }, "metadata_dict": { "fur": "trippy", "mouth": "grin", "eyes": "3d", "clothes": "toga", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 657 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "hypnotized", @@ -7833,11 +9806,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 658 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "spinner hat", @@ -7845,11 +9821,14 @@ "background": "yellow", "eyes": "sleepy", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 659 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "spinner hat", @@ -7857,21 +9836,27 @@ "earring": "silver hoop", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 660 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored unshaven", "fur": "cream", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 661 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "blindfold", @@ -7879,11 +9864,14 @@ "background": "blue", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 662 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -7891,11 +9879,14 @@ "earring": "silver hoop", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 663 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", @@ -7903,22 +9894,28 @@ "eyes": "bored", "clothes": "toga", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 664 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "golden brown", "hat": "fez", "background": "orange", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 665 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -7926,11 +9923,14 @@ "mouth": "bored unshaven kazoo", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 666 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "holographic", @@ -7939,22 +9939,28 @@ "earring": "silver hoop", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 667 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "scumbag", "earring": "diamond stud", "background": "blue", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 668 + }, "metadata_dict": { "background": "aquamarine", "hat": "vietnam era helmet", @@ -7962,11 +9968,14 @@ "fur": "brown", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 669 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "coins", @@ -7974,11 +9983,14 @@ "fur": "brown", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 670 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -7986,11 +9998,14 @@ "hat": "cowboy hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 671 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "eyepatch", @@ -7998,22 +10013,28 @@ "clothes": "prison jumpsuit", "hat": "bayc flipped brim", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 672 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", "fur": "gray", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 673 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "pink", @@ -8021,11 +10042,14 @@ "eyes": "bored", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 674 + }, "metadata_dict": { "mouth": "dumbfounded", "earring": "silver stud", @@ -8033,22 +10057,28 @@ "background": "army green", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 675 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", "fur": "black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 676 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "fur": "dark brown", @@ -8056,11 +10086,14 @@ "background": "yellow", "clothes": "stunt jacket", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 677 + }, "metadata_dict": { "background": "blue", "earring": "silver hoop", @@ -8068,11 +10101,14 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 678 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -8080,44 +10116,56 @@ "eyes": "crazy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 679 + }, "metadata_dict": { "fur": "tan", "hat": "cowboy hat", "background": "gray", "eyes": "crazy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 680 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", "clothes": "biker vest", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 681 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", "background": "blue", "mouth": "bored bubblegum", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 682 + }, "metadata_dict": { "fur": "golden brown", "hat": "king's crown", @@ -8126,32 +10174,41 @@ "mouth": "bored pizza", "clothes": "lab coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 683 + }, "metadata_dict": { "mouth": "discomfort", "fur": "dark brown", "background": "blue", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 684 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "phoneme vuh", "fur": "red", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 685 + }, "metadata_dict": { "eyes": "blindfold", "hat": "seaman's hat", @@ -8160,22 +10217,28 @@ "fur": "pink", "background": "gray", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 686 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", "clothes": "tuxedo tee", "fur": "death bot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 687 + }, "metadata_dict": { "hat": "party hat 2", "fur": "cream", @@ -8183,11 +10246,14 @@ "background": "aquamarine", "clothes": "leather jacket", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 688 + }, "metadata_dict": { "hat": "party hat 2", "earring": "gold hoop", @@ -8196,33 +10262,42 @@ "clothes": "lab coat", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 689 + }, "metadata_dict": { "mouth": "phoneme wah", "eyes": "closed", "clothes": "sleeveless logo t", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 690 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", "fur": "pink", "background": "orange", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 691 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -8230,33 +10305,42 @@ "background": "aquamarine", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 692 + }, "metadata_dict": { "hat": "bayc hat black", "background": "purple", "mouth": "bored cigarette", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 693 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored pipe", "background": "blue", "fur": "cheetah", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 694 + }, "metadata_dict": { "eyes": "zombie", "earring": "gold stud", @@ -8264,22 +10348,28 @@ "mouth": "small grin", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 695 + }, "metadata_dict": { "mouth": "phoneme vuh", "earring": "gold stud", "eyes": "3d", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 696 + }, "metadata_dict": { "clothes": "kings robe", "hat": "laurel wreath", @@ -8287,11 +10377,14 @@ "eyes": "bored", "mouth": "bored unshaven cigar", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 697 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "tan", @@ -8299,11 +10392,14 @@ "background": "aquamarine", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 698 + }, "metadata_dict": { "clothes": "puffy vest", "background": "aquamarine", @@ -8311,11 +10407,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 699 + }, "metadata_dict": { "fur": "gray", "eyes": "bloodshot", @@ -8323,33 +10422,42 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 700 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", "fur": "black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 701 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "eyes": "zombie", "clothes": "tweed suit", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 702 + }, "metadata_dict": { "clothes": "admirals coat", "fur": "gray", @@ -8357,22 +10465,28 @@ "hat": "beanie", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 703 + }, "metadata_dict": { "background": "aquamarine", "hat": "bayc flipped brim", "eyes": "bored", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 704 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven pipe", @@ -8380,11 +10494,14 @@ "hat": "bunny ears", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 705 + }, "metadata_dict": { "background": "new punk blue", "clothes": "prison jumpsuit", @@ -8393,11 +10510,14 @@ "earring": "silver hoop", "hat": "bowler", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 706 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -8406,33 +10526,42 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 707 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", "fur": "black", "earring": "silver hoop", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 708 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", "fur": "cheetah", "mouth": "phoneme wah", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 709 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "seaman's hat", @@ -8440,11 +10569,14 @@ "background": "aquamarine", "clothes": "bayc t black", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 710 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "smoking jacket", @@ -8452,11 +10584,14 @@ "background": "purple", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 711 + }, "metadata_dict": { "mouth": "bored party horn", "fur": "black", @@ -8464,11 +10599,14 @@ "clothes": "toga", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 712 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "phoneme ooo", @@ -8476,11 +10614,14 @@ "clothes": "prison jumpsuit", "fur": "red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 713 + }, "metadata_dict": { "mouth": "discomfort", "hat": "seaman's hat", @@ -8488,11 +10629,14 @@ "fur": "noise", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 714 + }, "metadata_dict": { "eyes": "holographic", "clothes": "puffy vest", @@ -8500,22 +10644,28 @@ "fur": "black", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 715 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", "background": "orange", "eyes": "bored", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 716 + }, "metadata_dict": { "hat": "prussian helmet", "eyes": "bored", @@ -8523,11 +10673,14 @@ "fur": "cheetah", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 717 + }, "metadata_dict": { "clothes": "bandolier", "hat": "s&m hat", @@ -8535,11 +10688,14 @@ "fur": "black", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 718 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "prussian helmet", @@ -8548,11 +10704,14 @@ "fur": "dark brown", "earring": "silver hoop", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 719 + }, "metadata_dict": { "mouth": "grin", "background": "purple", @@ -8560,11 +10719,14 @@ "fur": "cheetah", "eyes": "sleepy", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 720 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -8573,11 +10735,14 @@ "hat": "girl's hair short", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 721 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "silver stud", @@ -8586,11 +10751,14 @@ "fur": "brown", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 722 + }, "metadata_dict": { "fur": "tan", "clothes": "bone tee", @@ -8598,11 +10766,14 @@ "background": "purple", "mouth": "phoneme wah", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 723 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -8610,11 +10781,14 @@ "mouth": "bored", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 724 + }, "metadata_dict": { "hat": "fez", "background": "aquamarine", @@ -8622,33 +10796,42 @@ "fur": "black", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 725 + }, "metadata_dict": { "eyes": "holographic", "clothes": "rainbow suspenders", "background": "aquamarine", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 726 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "phoneme vuh", "background": "blue", "fur": "black", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 727 + }, "metadata_dict": { "mouth": "bored party horn", "earring": "silver stud", @@ -8656,11 +10839,14 @@ "clothes": "toga", "fur": "brown", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 728 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -8669,11 +10855,14 @@ "hat": "short mohawk", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 729 + }, "metadata_dict": { "eyes": "x eyes", "fur": "dark brown", @@ -8682,33 +10871,42 @@ "background": "purple", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 730 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme ooo", "clothes": "tweed suit", "background": "blue", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 731 + }, "metadata_dict": { "mouth": "jovial", "fur": "red", "eyes": "crazy", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 732 + }, "metadata_dict": { "clothes": "wool turtleneck", "earring": "diamond stud", @@ -8717,11 +10915,14 @@ "mouth": "bored unshaven cigarette", "hat": "bunny ears", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 733 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", @@ -8729,11 +10930,14 @@ "background": "orange", "hat": "faux hawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 734 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", @@ -8741,21 +10945,27 @@ "hat": "prussian helmet", "eyes": "3d", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 735 + }, "metadata_dict": { "background": "purple", "fur": "black", "eyes": "sleepy", "mouth": "rage" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 736 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -8763,22 +10973,28 @@ "background": "purple", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 737 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "eyes": "bored", "clothes": "prom dress", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 738 + }, "metadata_dict": { "mouth": "bored", "fur": "white", @@ -8787,11 +11003,14 @@ "earring": "silver hoop", "clothes": "lab coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 739 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "tan", @@ -8800,33 +11019,42 @@ "earring": "silver hoop", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 740 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "dumbfounded", "fur": "black", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 741 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", "eyes": "bored", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 742 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "tanktop", @@ -8834,11 +11062,14 @@ "background": "purple", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 743 + }, "metadata_dict": { "fur": "dmt", "mouth": "bored unshaven bubblegum", @@ -8847,11 +11078,14 @@ "eyes": "bored", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 744 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -8860,22 +11094,28 @@ "fur": "black", "clothes": "bone necklace", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 745 + }, "metadata_dict": { "fur": "golden brown", "eyes": "bloodshot", "hat": "short mohawk", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 746 + }, "metadata_dict": { "hat": "party hat 1", "background": "aquamarine", @@ -8883,11 +11123,14 @@ "clothes": "tanktop", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 747 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "gray", @@ -8895,22 +11138,28 @@ "clothes": "leather jacket", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 748 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "orange", "eyes": "bloodshot", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 749 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "scumbag", @@ -8918,11 +11167,14 @@ "background": "orange", "earring": "silver hoop", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 750 + }, "metadata_dict": { "background": "new punk blue", "hat": "bandana blue", @@ -8930,11 +11182,14 @@ "mouth": "bored unshaven cigarette", "clothes": "prom dress", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 751 + }, "metadata_dict": { "fur": "black", "eyes": "x eyes", @@ -8942,22 +11197,28 @@ "clothes": "sailor shirt", "mouth": "jovial", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 752 + }, "metadata_dict": { "fur": "brown", "background": "gray", "mouth": "bored", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 753 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "blindfold", @@ -8965,11 +11226,14 @@ "mouth": "bored unshaven cigar", "fur": "brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 754 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -8977,22 +11241,28 @@ "fur": "brown", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 755 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", "fur": "dmt", "clothes": "tie dye", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 756 + }, "metadata_dict": { "fur": "tan", "background": "aquamarine", @@ -9000,22 +11270,28 @@ "hat": "beanie", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 757 + }, "metadata_dict": { "fur": "tan", "background": "orange", "mouth": "bored", "eyes": "angry", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 758 + }, "metadata_dict": { "fur": "cream", "background": "orange", @@ -9023,22 +11299,28 @@ "hat": "bayc hat red", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 759 + }, "metadata_dict": { "fur": "red", "background": "blue", "clothes": "tanktop", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 760 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -9046,11 +11328,14 @@ "background": "orange", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 761 + }, "metadata_dict": { "fur": "cream", "eyes": "zombie", @@ -9058,11 +11343,14 @@ "clothes": "tanktop", "background": "gray", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 762 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "coins", @@ -9070,11 +11358,14 @@ "fur": "dark brown", "clothes": "lab coat", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 763 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -9082,11 +11373,14 @@ "eyes": "3d", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 764 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -9094,44 +11388,56 @@ "background": "blue", "fur": "black", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 765 + }, "metadata_dict": { "clothes": "service", "mouth": "phoneme vuh", "background": "gray", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 766 + }, "metadata_dict": { "fur": "cream", "clothes": "black holes t", "mouth": "dumbfounded", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 767 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "background": "blue", "hat": "faux hawk", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 768 + }, "metadata_dict": { "hat": "baby's bonnet", "mouth": "bored unshaven party horn", @@ -9140,33 +11446,42 @@ "background": "yellow", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 769 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "mouth": "bored kazoo", "fur": "cheetah", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 770 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "bored", "background": "yellow", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 771 + }, "metadata_dict": { "earring": "diamond stud", "eyes": "coins", @@ -9175,11 +11490,14 @@ "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 772 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bloodshot", @@ -9187,11 +11505,14 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 773 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -9200,22 +11521,28 @@ "background": "gray", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 774 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "aquamarine", "fur": "cheetah", "hat": "safari", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 775 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", @@ -9223,11 +11550,14 @@ "eyes": "bored", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 776 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", @@ -9236,11 +11566,14 @@ "earring": "gold hoop", "fur": "brown", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 777 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -9248,11 +11581,14 @@ "earring": "silver stud", "fur": "cheetah", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 778 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -9261,11 +11597,14 @@ "background": "gray", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 779 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -9273,11 +11612,14 @@ "background": "yellow", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 780 + }, "metadata_dict": { "mouth": "bored kazoo", "hat": "irish boho", @@ -9285,11 +11627,14 @@ "eyes": "3d", "background": "orange", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 781 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored kazoo", @@ -9298,11 +11643,14 @@ "eyes": "bored", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 782 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bandolier", @@ -9311,11 +11659,14 @@ "eyes": "bloodshot", "fur": "pink", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 783 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored pipe", @@ -9323,11 +11674,14 @@ "earring": "gold stud", "eyes": "bloodshot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 784 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -9336,11 +11690,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 785 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -9348,11 +11705,14 @@ "background": "orange", "hat": "army hat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 786 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "cowboy shirt", @@ -9360,11 +11720,14 @@ "fur": "dark brown", "eyes": "bloodshot", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 787 + }, "metadata_dict": { "hat": "bowler", "mouth": "bored pipe", @@ -9372,11 +11735,14 @@ "eyes": "bored", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 788 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -9384,11 +11750,14 @@ "hat": "bowler", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 789 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -9396,32 +11765,41 @@ "mouth": "phoneme vuh", "eyes": "bloodshot", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 790 + }, "metadata_dict": { "fur": "golden brown", "background": "yellow", "eyes": "heart", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 791 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", "eyes": "bloodshot", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 792 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "holographic", @@ -9429,11 +11807,14 @@ "fur": "pink", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 793 + }, "metadata_dict": { "hat": "stuntman helmet", "mouth": "bored pipe", @@ -9441,11 +11822,14 @@ "background": "yellow", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 794 + }, "metadata_dict": { "hat": "bayc hat black", "background": "blue", @@ -9454,11 +11838,14 @@ "mouth": "bored cigarette", "clothes": "caveman pelt", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 795 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -9466,11 +11853,14 @@ "hat": "spinner hat", "clothes": "tanktop", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 796 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "striped tee", @@ -9479,11 +11869,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 797 + }, "metadata_dict": { "clothes": "bandolier", "background": "orange", @@ -9491,22 +11884,28 @@ "eyes": "bored", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 798 + }, "metadata_dict": { "clothes": "service", "background": "purple", "mouth": "bored", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 799 + }, "metadata_dict": { "hat": "king's crown", "mouth": "phoneme vuh", @@ -9514,11 +11913,14 @@ "background": "yellow", "clothes": "stunt jacket", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 800 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -9526,22 +11928,28 @@ "background": "orange", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 801 + }, "metadata_dict": { "fur": "gray", "hat": "bunny ears", "background": "purple", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 802 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "zombie", @@ -9549,11 +11957,14 @@ "background": "purple", "earring": "cross", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 803 + }, "metadata_dict": { "mouth": "phoneme l", "background": "blue", @@ -9561,11 +11972,14 @@ "fur": "cheetah", "hat": "bunny ears", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 804 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -9573,11 +11987,14 @@ "mouth": "bored", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 805 + }, "metadata_dict": { "fur": "cream", "background": "blue", @@ -9585,11 +12002,14 @@ "clothes": "toga", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 806 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "yellow", @@ -9597,33 +12017,42 @@ "hat": "beanie", "clothes": "hip hop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 807 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", "clothes": "cowboy shirt", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 808 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "red", "mouth": "bored", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 809 + }, "metadata_dict": { "eyes": "heart", "hat": "bandana blue", @@ -9632,11 +12061,14 @@ "clothes": "tuxedo tee", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 810 + }, "metadata_dict": { "fur": "cream", "hat": "fez", @@ -9645,11 +12077,14 @@ "background": "gray", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 811 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "rage", @@ -9657,11 +12092,14 @@ "fur": "solid gold", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 812 + }, "metadata_dict": { "eyes": "x eyes", "fur": "dmt", @@ -9669,11 +12107,14 @@ "background": "yellow", "mouth": "bored cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 813 + }, "metadata_dict": { "eyes": "closed", "hat": "horns", @@ -9681,11 +12122,14 @@ "fur": "brown", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 814 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -9693,11 +12137,14 @@ "background": "orange", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 815 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "dmt", @@ -9705,22 +12152,28 @@ "eyes": "bored", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 816 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "3d", "fur": "dark brown", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 817 + }, "metadata_dict": { "fur": "tan", "hat": "s&m hat", @@ -9728,11 +12181,14 @@ "background": "blue", "eyes": "bloodshot", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 818 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "phoneme ooo", @@ -9740,22 +12196,28 @@ "fur": "dark brown", "hat": "faux hawk", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 819 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "background": "orange", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 820 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "trippy", @@ -9764,21 +12226,27 @@ "eyes": "bored", "hat": "vietnam era helmet", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 821 + }, "metadata_dict": { "fur": "cheetah", "mouth": "bored", "eyes": "bored", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 822 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -9786,11 +12254,14 @@ "eyes": "sleepy", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 823 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -9798,11 +12269,14 @@ "fur": "brown", "clothes": "stunt jacket", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 824 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "pimp coat", @@ -9811,22 +12285,28 @@ "background": "purple", "mouth": "phoneme wah", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 825 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "gray", "mouth": "bored", "fur": "robot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 826 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "tuxedo tee", @@ -9835,11 +12315,14 @@ "fur": "brown", "background": "yellow", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 827 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "dumbfounded", @@ -9847,11 +12330,14 @@ "eyes": "3d", "hat": "cowboy hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 828 + }, "metadata_dict": { "eyes": "coins", "earring": "silver stud", @@ -9859,11 +12345,14 @@ "background": "blue", "fur": "brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 829 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "seaman's hat", @@ -9871,22 +12360,28 @@ "background": "orange", "fur": "noise", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 830 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "bored", "fur": "solid gold", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 831 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", @@ -9894,11 +12389,14 @@ "hat": "girl's hair short", "eyes": "crazy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 832 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "bandana blue", @@ -9906,11 +12404,14 @@ "background": "blue", "clothes": "caveman pelt", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 833 + }, "metadata_dict": { "eyes": "scumbag", "fur": "black", @@ -9918,11 +12419,14 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 834 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -9931,33 +12435,42 @@ "hat": "fisherman's hat", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 835 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", "clothes": "leather jacket", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 836 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "grin", "hat": "seaman's hat", "fur": "golden brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 837 + }, "metadata_dict": { "background": "new punk blue", "eyes": "3d", @@ -9965,11 +12478,14 @@ "mouth": "bored", "fur": "white", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 838 + }, "metadata_dict": { "fur": "dmt", "background": "yellow", @@ -9977,22 +12493,28 @@ "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 839 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", "background": "purple", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 840 + }, "metadata_dict": { "background": "orange", "clothes": "biker vest", @@ -10000,11 +12522,14 @@ "hat": "beanie", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 841 + }, "metadata_dict": { "background": "blue", "fur": "dark brown", @@ -10012,11 +12537,14 @@ "mouth": "bored", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 842 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin multicolored", @@ -10024,11 +12552,14 @@ "fur": "dark brown", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 843 + }, "metadata_dict": { "clothes": "striped tee", "hat": "seaman's hat", @@ -10036,22 +12567,28 @@ "background": "aquamarine", "eyes": "3d", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 844 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 845 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -10059,22 +12596,28 @@ "mouth": "phoneme l", "clothes": "prison jumpsuit", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 846 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "hat": "short mohawk", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 847 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -10082,33 +12625,42 @@ "background": "blue", "fur": "dark brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 848 + }, "metadata_dict": { "fur": "golden brown", "clothes": "leather jacket", "eyes": "robot", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 849 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "zombie", "mouth": "jovial", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 850 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -10116,22 +12668,28 @@ "clothes": "sleeveless logo t", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 851 + }, "metadata_dict": { "hat": "bandana blue", "fur": "cream", "mouth": "bored unshaven kazoo", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 852 + }, "metadata_dict": { "clothes": "bandolier", "background": "blue", @@ -10139,33 +12697,42 @@ "eyes": "bored", "hat": "safari", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 853 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "hat": "girl's hair pink", "background": "blue", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 854 + }, "metadata_dict": { "eyes": "closed", "mouth": "discomfort", "fur": "red", "hat": "fisherman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 855 + }, "metadata_dict": { "hat": "horns", "fur": "black", @@ -10173,11 +12740,14 @@ "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 856 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin multicolored", @@ -10185,11 +12755,14 @@ "background": "aquamarine", "fur": "white", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 857 + }, "metadata_dict": { "fur": "tan", "hat": "fez", @@ -10197,11 +12770,14 @@ "mouth": "bored cigarette", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 858 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -10209,11 +12785,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 859 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -10221,32 +12800,41 @@ "earring": "gold hoop", "fur": "death bot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 860 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven", "eyes": "scumbag", "fur": "tan" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 861 + }, "metadata_dict": { "eyes": "scumbag", "fur": "pink", "mouth": "small grin", "background": "gray", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 862 + }, "metadata_dict": { "fur": "golden brown", "eyes": "robot", @@ -10254,11 +12842,14 @@ "background": "orange", "mouth": "small grin", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 863 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "blindfold", @@ -10267,11 +12858,14 @@ "earring": "silver hoop", "fur": "brown", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 864 + }, "metadata_dict": { "clothes": "black holes t", "earring": "silver stud", @@ -10279,33 +12873,42 @@ "eyes": "bored", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 865 + }, "metadata_dict": { "fur": "red", "eyes": "bored", "background": "gray", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 866 + }, "metadata_dict": { "fur": "tan", "mouth": "grin multicolored", "hat": "bayc hat red", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 867 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "wide eyed", @@ -10314,22 +12917,28 @@ "fur": "dark brown", "clothes": "caveman pelt", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 868 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "hat": "girl's hair pink", "background": "orange", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 869 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "party hat 2", @@ -10337,11 +12946,14 @@ "fur": "pink", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 870 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "holographic", @@ -10349,11 +12961,14 @@ "earring": "gold hoop", "fur": "red", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 871 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "black", @@ -10361,21 +12976,27 @@ "mouth": "tongue out", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 872 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "heart", "background": "purple", "fur": "cream" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 873 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "zombie", @@ -10383,22 +13004,28 @@ "hat": "spinner hat", "clothes": "admirals coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 874 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "bayc t red", "fur": "black", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 875 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "phoneme vuh", @@ -10406,11 +13033,14 @@ "background": "orange", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 876 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", @@ -10418,11 +13048,14 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 877 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -10430,11 +13063,14 @@ "background": "orange", "eyes": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 878 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -10442,44 +13078,56 @@ "background": "orange", "fur": "dark brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 879 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", "clothes": "tie dye", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 880 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", "hat": "army hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 881 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "jovial", "fur": "dark brown", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 882 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -10488,11 +13136,14 @@ "background": "blue", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 883 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "black", @@ -10500,11 +13151,14 @@ "background": "purple", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 884 + }, "metadata_dict": { "hat": "party hat 2", "fur": "cream", @@ -10512,33 +13166,42 @@ "clothes": "bayc t black", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 885 + }, "metadata_dict": { "clothes": "bayc t black", "background": "purple", "mouth": "bored", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 886 + }, "metadata_dict": { "mouth": "phoneme vuh", "earring": "gold stud", "eyes": "bored", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 887 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -10546,11 +13209,14 @@ "clothes": "tuxedo tee", "mouth": "tongue out", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 888 + }, "metadata_dict": { "eyes": "hypnotized", "earring": "gold hoop", @@ -10559,11 +13225,14 @@ "background": "orange", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 889 + }, "metadata_dict": { "clothes": "striped tee", "earring": "diamond stud", @@ -10572,11 +13241,14 @@ "eyes": "bloodshot", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 890 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "blue beams", @@ -10584,11 +13256,14 @@ "clothes": "bone necklace", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 891 + }, "metadata_dict": { "fur": "tan", "hat": "stuntman helmet", @@ -10596,22 +13271,28 @@ "background": "gray", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 892 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "tan", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 893 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "fisherman's hat", @@ -10620,11 +13301,14 @@ "background": "purple", "clothes": "toga", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 894 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "rainbow suspenders", @@ -10632,44 +13316,56 @@ "hat": "ww2 pilot helm", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 895 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", "background": "aquamarine", "fur": "red", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 896 + }, "metadata_dict": { "hat": "fez", "background": "blue", "fur": "black", "eyes": "bored", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 897 + }, "metadata_dict": { "fur": "red", "eyes": "3d", "hat": "bayc hat red", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 898 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "blindfold", @@ -10678,11 +13374,14 @@ "hat": "stuntman helmet", "earring": "silver stud", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 899 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "gray", @@ -10690,33 +13389,42 @@ "mouth": "small grin", "hat": "faux hawk", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 900 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", "clothes": "hawaiian", "mouth": "small grin", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 901 + }, "metadata_dict": { "fur": "trippy", "eyes": "hypnotized", "hat": "ww2 pilot helm", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 902 + }, "metadata_dict": { "fur": "black", "eyes": "3d", @@ -10724,11 +13432,14 @@ "mouth": "bored unshaven cigarette", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 903 + }, "metadata_dict": { "earring": "gold hoop", "background": "aquamarine", @@ -10736,22 +13447,28 @@ "hat": "bowler", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 904 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "bored", "background": "yellow", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 905 + }, "metadata_dict": { "eyes": "wide eyed", "mouth": "phoneme vuh", @@ -10759,11 +13476,14 @@ "fur": "white", "hat": "police motorcycle helmet", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 906 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "coins", @@ -10771,11 +13491,14 @@ "fur": "pink", "earring": "silver hoop", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 907 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", @@ -10783,22 +13506,28 @@ "clothes": "stunt jacket", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 908 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "dumbfounded", "clothes": "cowboy shirt", "background": "blue", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 909 + }, "metadata_dict": { "earring": "diamond stud", "mouth": "dumbfounded", @@ -10806,22 +13535,28 @@ "eyes": "3d", "clothes": "toga", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 910 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "clothes": "lumberjack shirt", "fur": "golden brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 911 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -10829,11 +13564,14 @@ "fur": "pink", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 912 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "lumberjack shirt", @@ -10841,11 +13579,14 @@ "background": "blue", "fur": "pink", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 913 + }, "metadata_dict": { "fur": "tan", "clothes": "bandolier", @@ -10854,11 +13595,14 @@ "earring": "gold stud", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 914 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -10866,11 +13610,14 @@ "clothes": "black t", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 915 + }, "metadata_dict": { "eyes": "heart", "clothes": "lumberjack shirt", @@ -10878,11 +13625,14 @@ "fur": "dark brown", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 916 + }, "metadata_dict": { "mouth": "rage", "earring": "silver stud", @@ -10891,33 +13641,42 @@ "eyes": "bloodshot", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 917 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "clothes": "black t", "mouth": "dumbfounded", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 918 + }, "metadata_dict": { "eyes": "eyepatch", "background": "aquamarine", "hat": "army hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 919 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -10926,33 +13685,42 @@ "hat": "fisherman's hat", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 920 + }, "metadata_dict": { "eyes": "closed", "background": "blue", "fur": "dark brown", "clothes": "lab coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 921 + }, "metadata_dict": { "eyes": "coins", "fur": "brown", "background": "gray", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 922 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "sailor shirt", @@ -10960,11 +13728,14 @@ "mouth": "phoneme vuh", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 923 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme vuh", @@ -10972,11 +13743,14 @@ "clothes": "toga", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 924 + }, "metadata_dict": { "mouth": "bored cigarette", "clothes": "sleeveless t", @@ -10984,44 +13758,56 @@ "hat": "army hat", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 925 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bored", "mouth": "bored unshaven cigar", "fur": "brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 926 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "background": "gray", "hat": "beanie", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 927 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "cream", "mouth": "dumbfounded", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 928 + }, "metadata_dict": { "eyes": "coins", "mouth": "rage", @@ -11029,22 +13815,28 @@ "fur": "black", "clothes": "tuxedo tee", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 929 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "clothes": "blue dress", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 930 + }, "metadata_dict": { "hat": "fez", "background": "aquamarine", @@ -11052,11 +13844,14 @@ "fur": "brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 931 + }, "metadata_dict": { "background": "orange", "hat": "short mohawk", @@ -11064,11 +13859,14 @@ "eyes": "bored", "clothes": "pimp coat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 932 + }, "metadata_dict": { "fur": "cream", "background": "orange", @@ -11076,11 +13874,14 @@ "mouth": "bored", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 933 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", @@ -11088,11 +13889,14 @@ "hat": "fisherman's hat", "fur": "brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 934 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -11100,22 +13904,28 @@ "hat": "baby's bonnet", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 935 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "biker vest", "eyes": "bloodshot", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 936 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "black holes t", @@ -11124,11 +13934,14 @@ "mouth": "bored", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 937 + }, "metadata_dict": { "clothes": "black t", "mouth": "phoneme vuh", @@ -11136,21 +13949,27 @@ "hat": "bowler", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 938 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "mouth": "bored", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 939 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -11158,11 +13977,14 @@ "clothes": "sailor shirt", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 940 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin multicolored", @@ -11170,11 +13992,14 @@ "fur": "black", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 941 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -11182,11 +14007,14 @@ "clothes": "stunt jacket", "hat": "girl's hair short", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 942 + }, "metadata_dict": { "mouth": "discomfort", "hat": "seaman's hat", @@ -11194,11 +14022,14 @@ "background": "aquamarine", "eyes": "bored", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 943 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -11206,11 +14037,14 @@ "fur": "black", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 944 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -11218,11 +14052,14 @@ "fur": "black", "clothes": "tie dye", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 945 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -11231,32 +14068,41 @@ "eyes": "bloodshot", "earring": "silver hoop", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 946 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", "background": "blue", "fur": "dark brown", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 947 + }, "metadata_dict": { "background": "gray", "fur": "black", "mouth": "bored", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 948 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -11265,32 +14111,41 @@ "earring": "silver hoop", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 949 + }, "metadata_dict": { "eyes": "heart", "background": "blue", "fur": "black", "mouth": "bored unshaven party horn" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 950 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", "eyes": "blue beams", "fur": "cheetah", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 951 + }, "metadata_dict": { "earring": "silver stud", "clothes": "leather jacket", @@ -11299,11 +14154,14 @@ "background": "yellow", "eyes": "sleepy", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 952 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "grin multicolored", @@ -11311,22 +14169,28 @@ "hat": "girl's hair short", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 953 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", "fur": "black", "hat": "bayc flipped brim", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 954 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -11334,11 +14198,14 @@ "mouth": "bored", "clothes": "bone tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 955 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", @@ -11346,11 +14213,14 @@ "hat": "bayc flipped brim", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 956 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -11358,11 +14228,14 @@ "hat": "vietnam era helmet", "fur": "white", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 957 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -11370,11 +14243,14 @@ "eyes": "bloodshot", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 958 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -11382,11 +14258,14 @@ "eyes": "3d", "clothes": "guayabera", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 959 + }, "metadata_dict": { "eyes": "closed", "hat": "spinner hat", @@ -11394,11 +14273,14 @@ "fur": "dark brown", "mouth": "tongue out", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 960 + }, "metadata_dict": { "hat": "horns", "fur": "dmt", @@ -11406,11 +14288,14 @@ "mouth": "bored", "eyes": "crazy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 961 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -11418,22 +14303,28 @@ "hat": "cowboy hat", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 962 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", "background": "orange", "hat": "bayc hat red", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 963 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -11442,11 +14333,14 @@ "clothes": "biker vest", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 964 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -11454,11 +14348,14 @@ "background": "orange", "fur": "dark brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 965 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "dmt", @@ -11466,11 +14363,14 @@ "eyes": "bored", "hat": "cowboy hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 966 + }, "metadata_dict": { "mouth": "grin", "clothes": "sleeveless logo t", @@ -11478,11 +14378,14 @@ "fur": "brown", "background": "yellow", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 967 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", @@ -11490,22 +14393,28 @@ "clothes": "leather jacket", "hat": "spinner hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 968 + }, "metadata_dict": { "eyes": "coins", "fur": "red", "background": "gray", "clothes": "admirals coat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 969 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -11514,33 +14423,42 @@ "earring": "silver hoop", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 970 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", "fur": "brown", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 971 + }, "metadata_dict": { "hat": "baby's bonnet", "background": "blue", "fur": "dark brown", "eyes": "bored", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 972 + }, "metadata_dict": { "hat": "irish boho", "mouth": "rage", @@ -11548,11 +14466,14 @@ "background": "gray", "fur": "death bot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 973 + }, "metadata_dict": { "clothes": "work vest", "background": "orange", @@ -11560,22 +14481,28 @@ "hat": "cowboy hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 974 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "red", "eyes": "robot", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 975 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", @@ -11584,22 +14511,28 @@ "hat": "cowboy hat", "mouth": "bored unshaven cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 976 + }, "metadata_dict": { "fur": "pink", "eyes": "bored", "background": "purple", "hat": "halo", "mouth": "rage" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 977 + }, "metadata_dict": { "hat": "irish boho", "background": "aquamarine", @@ -11607,11 +14540,14 @@ "clothes": "prom dress", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 978 + }, "metadata_dict": { "eyes": "holographic", "background": "orange", @@ -11619,11 +14555,14 @@ "clothes": "bone necklace", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 979 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "scumbag", @@ -11631,11 +14570,14 @@ "hat": "beanie", "fur": "death bot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 980 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -11643,11 +14585,14 @@ "hat": "girl's hair pink", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 981 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -11655,11 +14600,14 @@ "fur": "red", "hat": "army hat", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 982 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -11668,11 +14616,14 @@ "mouth": "dumbfounded", "eyes": "robot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 983 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "rage", @@ -11680,11 +14631,14 @@ "background": "blue", "clothes": "bayc t black", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 984 + }, "metadata_dict": { "hat": "halo", "background": "purple", @@ -11692,22 +14646,28 @@ "fur": "brown", "clothes": "guayabera", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 985 + }, "metadata_dict": { "fur": "red", "background": "blue", "eyes": "bored", "hat": "ww2 pilot helm", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 986 + }, "metadata_dict": { "earring": "gold hoop", "eyes": "bloodshot", @@ -11716,11 +14676,14 @@ "mouth": "bored", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 987 + }, "metadata_dict": { "background": "new punk blue", "hat": "irish boho", @@ -11729,22 +14692,28 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 988 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "noise", "eyes": "bored", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 989 + }, "metadata_dict": { "fur": "black", "earring": "silver hoop", @@ -11752,11 +14721,14 @@ "background": "yellow", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 990 + }, "metadata_dict": { "eyes": "holographic", "hat": "seaman's hat", @@ -11764,11 +14736,14 @@ "fur": "dark brown", "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 991 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "coins", @@ -11777,11 +14752,14 @@ "background": "purple", "hat": "police motorcycle helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 992 + }, "metadata_dict": { "eyes": "wide eyed", "background": "aquamarine", @@ -11789,11 +14767,14 @@ "hat": "fisherman's hat", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 993 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "phoneme ooo", @@ -11801,11 +14782,14 @@ "fur": "black", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 994 + }, "metadata_dict": { "background": "new punk blue", "hat": "fez", @@ -11813,11 +14797,14 @@ "fur": "pink", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 995 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -11825,22 +14812,28 @@ "clothes": "biker vest", "eyes": "bloodshot", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 996 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", "eyes": "bloodshot", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 997 + }, "metadata_dict": { "mouth": "bored cigarette", "earring": "silver hoop", @@ -11848,33 +14841,42 @@ "background": "purple", "eyes": "crazy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 998 + }, "metadata_dict": { "mouth": "bored pipe", "fur": "pink", "eyes": "sleepy", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 999 + }, "metadata_dict": { "clothes": "bandolier", "background": "blue", "fur": "black", "mouth": "tongue out", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1000 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "phoneme ooo", @@ -11882,44 +14884,56 @@ "background": "aquamarine", "clothes": "toga", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1001 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", "eyes": "robot", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1002 + }, "metadata_dict": { "eyes": "coins", "clothes": "prison jumpsuit", "background": "orange", "fur": "dark brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1003 + }, "metadata_dict": { "eyes": "eyepatch", "background": "gray", "clothes": "tweed suit", "mouth": "small grin", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1004 + }, "metadata_dict": { "clothes": "sailor shirt", "earring": "silver stud", @@ -11928,21 +14942,27 @@ "background": "purple", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1005 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored", "fur": "cream", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1006 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -11950,22 +14970,28 @@ "background": "orange", "hat": "cowboy hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1007 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", "fur": "red", "mouth": "bored unshaven cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1008 + }, "metadata_dict": { "fur": "gray", "mouth": "grin diamond grill", @@ -11973,11 +14999,14 @@ "eyes": "bored", "hat": "army hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1009 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "robot", @@ -11985,11 +15014,14 @@ "clothes": "smoking jacket", "hat": "commie hat", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1010 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -11997,22 +15029,28 @@ "eyes": "crazy", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1011 + }, "metadata_dict": { "clothes": "sailor shirt", "eyes": "bored", "background": "yellow", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1012 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "pink", @@ -12020,22 +15058,28 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1013 + }, "metadata_dict": { "fur": "gray", "clothes": "tuxedo tee", "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1014 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -12043,11 +15087,14 @@ "hat": "army hat", "eyes": "crazy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1015 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -12055,11 +15102,14 @@ "fur": "black", "mouth": "bored bubblegum", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1016 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", @@ -12067,11 +15117,14 @@ "background": "blue", "hat": "faux hawk", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1017 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -12079,11 +15132,14 @@ "clothes": "bayc t black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1018 + }, "metadata_dict": { "fur": "cream", "hat": "irish boho", @@ -12092,11 +15148,14 @@ "earring": "diamond stud", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1019 + }, "metadata_dict": { "mouth": "bored party horn", "clothes": "bayc t black", @@ -12104,22 +15163,28 @@ "fur": "death bot", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1020 + }, "metadata_dict": { "fur": "brown", "background": "yellow", "mouth": "bored", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1021 + }, "metadata_dict": { "eyes": "scumbag", "fur": "black", @@ -12127,33 +15192,42 @@ "background": "gray", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1022 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "orange", "eyes": "bored", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1023 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "coins", "clothes": "smoking jacket", "background": "orange", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1024 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "golden brown", @@ -12162,33 +15236,42 @@ "mouth": "rage", "eyes": "3d", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1025 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "earring": "gold stud", "eyes": "bloodshot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1026 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "golden brown", "background": "orange", "eyes": "bored", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1027 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "silver stud", @@ -12196,11 +15279,14 @@ "background": "gray", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1028 + }, "metadata_dict": { "eyes": "coins", "hat": "party hat 1", @@ -12209,11 +15295,14 @@ "fur": "brown", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1029 + }, "metadata_dict": { "mouth": "rage", "hat": "fez", @@ -12222,11 +15311,14 @@ "earring": "silver hoop", "clothes": "lab coat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1030 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "biker vest", @@ -12234,33 +15326,42 @@ "eyes": "bored", "hat": "fisherman's hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1031 + }, "metadata_dict": { "mouth": "bored dagger", "eyes": "zombie", "hat": "fez", "background": "blue", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1032 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "black t", "fur": "black", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1033 + }, "metadata_dict": { "clothes": "work vest", "background": "orange", @@ -12268,11 +15369,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1034 + }, "metadata_dict": { "eyes": "wide eyed", "mouth": "phoneme vuh", @@ -12281,11 +15385,14 @@ "earring": "silver hoop", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1035 + }, "metadata_dict": { "eyes": "closed", "hat": "baby's bonnet", @@ -12293,22 +15400,28 @@ "earring": "gold stud", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1036 + }, "metadata_dict": { "fur": "golden brown", "background": "aquamarine", "mouth": "bored bubblegum", "eyes": "bloodshot", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1037 + }, "metadata_dict": { "earring": "gold hoop", "background": "blue", @@ -12317,11 +15430,14 @@ "mouth": "bored", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1038 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -12329,11 +15445,14 @@ "fur": "golden brown", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1039 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "phoneme vuh", @@ -12341,11 +15460,14 @@ "fur": "dark brown", "hat": "bayc flipped brim", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1040 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "silver stud", @@ -12353,11 +15475,14 @@ "mouth": "tongue out", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1041 + }, "metadata_dict": { "fur": "brown", "background": "yellow", @@ -12365,11 +15490,14 @@ "clothes": "bayc t red", "mouth": "grin", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1042 + }, "metadata_dict": { "eyes": "x eyes", "background": "blue", @@ -12378,11 +15506,14 @@ "mouth": "bored", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1043 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -12391,11 +15522,14 @@ "background": "yellow", "clothes": "guayabera", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1044 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -12403,11 +15537,14 @@ "fur": "brown", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1045 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "vietnam jacket", @@ -12415,22 +15552,28 @@ "background": "orange", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1046 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", "fur": "pink", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1047 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "aquamarine", @@ -12438,11 +15581,14 @@ "hat": "ww2 pilot helm", "clothes": "navy striped tee", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1048 + }, "metadata_dict": { "hat": "baby's bonnet", "mouth": "bored unshaven party horn", @@ -12450,11 +15596,14 @@ "fur": "black", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1049 + }, "metadata_dict": { "mouth": "jovial", "fur": "black", @@ -12462,22 +15611,28 @@ "hat": "army hat", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1050 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "pink", "clothes": "stunt jacket", "background": "orange", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1051 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -12485,11 +15640,14 @@ "hat": "party hat 1", "background": "yellow", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1052 + }, "metadata_dict": { "eyes": "bloodshot", "hat": "beanie", @@ -12497,22 +15655,28 @@ "mouth": "bored", "fur": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1053 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "hat": "fez", "background": "aquamarine", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1054 + }, "metadata_dict": { "mouth": "grin", "fur": "dmt", @@ -12520,11 +15684,14 @@ "hat": "short mohawk", "clothes": "tuxedo tee", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1055 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -12532,11 +15699,14 @@ "hat": "seaman's hat", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1056 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -12545,11 +15715,14 @@ "clothes": "navy striped tee", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1057 + }, "metadata_dict": { "clothes": "striped tee", "hat": "bandana blue", @@ -12557,11 +15730,14 @@ "eyes": "robot", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1058 + }, "metadata_dict": { "eyes": "zombie", "mouth": "phoneme vuh", @@ -12569,11 +15745,14 @@ "earring": "gold stud", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1059 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -12581,11 +15760,14 @@ "eyes": "3d", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1060 + }, "metadata_dict": { "eyes": "closed", "mouth": "jovial", @@ -12593,11 +15775,14 @@ "hat": "commie hat", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1061 + }, "metadata_dict": { "mouth": "rage", "hat": "spinner hat", @@ -12605,33 +15790,42 @@ "background": "yellow", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1062 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "eyes": "sleepy", "background": "yellow", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1063 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "prison jumpsuit", "fur": "dark brown", "eyes": "blue beams" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1064 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -12640,22 +15834,28 @@ "hat": "bunny ears", "mouth": "phoneme wah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1065 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "fur": "dark brown", "clothes": "toga", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1066 + }, "metadata_dict": { "earring": "diamond stud", "clothes": "sailor shirt", @@ -12663,11 +15863,14 @@ "mouth": "bored unshaven cigarette", "fur": "robot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1067 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "blindfold", @@ -12675,11 +15878,14 @@ "background": "aquamarine", "clothes": "biker vest", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1068 + }, "metadata_dict": { "eyes": "coins", "fur": "brown", @@ -12687,11 +15893,14 @@ "hat": "bayc flipped brim", "clothes": "bayc t black", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1069 + }, "metadata_dict": { "eyes": "heart", "clothes": "black holes t", @@ -12700,11 +15909,14 @@ "fur": "dark brown", "earring": "silver hoop", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1070 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "black t", @@ -12713,11 +15925,14 @@ "fur": "dark brown", "hat": "fisherman's hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1071 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "space suit", @@ -12725,33 +15940,42 @@ "mouth": "small grin", "fur": "brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1072 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "cream", "background": "orange", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1073 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "yellow", "fur": "white", "eyes": "angry", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1074 + }, "metadata_dict": { "earring": "silver stud", "clothes": "work vest", @@ -12759,33 +15983,42 @@ "mouth": "dumbfounded", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1075 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "blue", "clothes": "guayabera", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1076 + }, "metadata_dict": { "fur": "gray", "hat": "prussian helmet", "eyes": "robot", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1077 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t red", @@ -12794,11 +16027,14 @@ "earring": "silver hoop", "fur": "brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1078 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -12806,22 +16042,28 @@ "hat": "beanie", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1079 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "clothes": "cowboy shirt", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1080 + }, "metadata_dict": { "fur": "brown", "mouth": "dumbfounded", @@ -12829,11 +16071,14 @@ "hat": "cowboy hat", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1081 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "dark brown", @@ -12841,22 +16086,28 @@ "background": "gray", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1082 + }, "metadata_dict": { "eyes": "closed", "clothes": "bayc t red", "fur": "cream", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1083 + }, "metadata_dict": { "hat": "prussian helmet", "earring": "gold stud", @@ -12865,11 +16116,14 @@ "mouth": "bored", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1084 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -12878,11 +16132,14 @@ "hat": "short mohawk", "earring": "cross", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1085 + }, "metadata_dict": { "eyes": "scumbag", "hat": "stuntman helmet", @@ -12890,11 +16147,14 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1086 + }, "metadata_dict": { "eyes": "blindfold", "fur": "dark brown", @@ -12902,11 +16162,14 @@ "clothes": "prom dress", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1087 + }, "metadata_dict": { "eyes": "heart", "clothes": "leather punk jacket", @@ -12915,11 +16178,14 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1088 + }, "metadata_dict": { "eyes": "holographic", "clothes": "tie dye", @@ -12927,11 +16193,14 @@ "hat": "beanie", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1089 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -12940,11 +16209,14 @@ "hat": "beanie", "clothes": "guayabera", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1090 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "black t", @@ -12953,11 +16225,14 @@ "fur": "cheetah", "mouth": "bored cigar", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1091 + }, "metadata_dict": { "background": "new punk blue", "hat": "bandana blue", @@ -12966,11 +16241,14 @@ "eyes": "bloodshot", "fur": "dark brown", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1092 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -12978,22 +16256,28 @@ "hat": "short mohawk", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1093 + }, "metadata_dict": { "fur": "golden brown", "eyes": "robot", "earring": "gold stud", "mouth": "tongue out", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1094 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -13001,11 +16285,14 @@ "background": "aquamarine", "fur": "pink", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1095 + }, "metadata_dict": { "clothes": "black holes t", "earring": "gold hoop", @@ -13014,11 +16301,14 @@ "background": "gray", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1096 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", @@ -13026,11 +16316,14 @@ "clothes": "tuxedo tee", "hat": "cowboy hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1097 + }, "metadata_dict": { "eyes": "hypnotized", "background": "orange", @@ -13038,22 +16331,28 @@ "hat": "ww2 pilot helm", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1098 + }, "metadata_dict": { "fur": "golden brown", "background": "orange", "eyes": "bored", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1099 + }, "metadata_dict": { "eyes": "holographic", "clothes": "space suit", @@ -13061,11 +16360,14 @@ "background": "orange", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1100 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -13073,11 +16375,14 @@ "background": "aquamarine", "earring": "cross", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1101 + }, "metadata_dict": { "eyes": "scumbag", "fur": "red", @@ -13085,11 +16390,14 @@ "clothes": "smoking jacket", "background": "gray", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1102 + }, "metadata_dict": { "clothes": "rainbow suspenders", "fur": "dark brown", @@ -13097,11 +16405,14 @@ "eyes": "bored", "hat": "ww2 pilot helm", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1103 + }, "metadata_dict": { "fur": "golden brown", "hat": "sea captain's hat", @@ -13110,22 +16421,28 @@ "mouth": "tongue out", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1104 + }, "metadata_dict": { "eyes": "x eyes", "fur": "red", "hat": "vietnam era helmet", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1105 + }, "metadata_dict": { "fur": "cream", "clothes": "black holes t", @@ -13134,11 +16451,14 @@ "earring": "silver stud", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1106 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "sailor shirt", @@ -13147,11 +16467,14 @@ "earring": "silver hoop", "eyes": "crazy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1107 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "gold hoop", @@ -13159,11 +16482,14 @@ "eyes": "3d", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1108 + }, "metadata_dict": { "earring": "gold stud", "background": "orange", @@ -13172,11 +16498,14 @@ "fur": "brown", "hat": "beanie", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1109 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -13184,11 +16513,14 @@ "earring": "silver stud", "background": "orange", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1110 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "bayc t red", @@ -13196,11 +16528,14 @@ "fur": "dark brown", "hat": "short mohawk", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1111 + }, "metadata_dict": { "eyes": "zombie", "clothes": "sleeveless logo t", @@ -13208,11 +16543,14 @@ "background": "orange", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1112 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", @@ -13221,33 +16559,42 @@ "earring": "silver hoop", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1113 + }, "metadata_dict": { "fur": "tan", "mouth": "dumbfounded", "eyes": "3d", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1114 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "bored", "background": "gray", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1115 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -13256,11 +16603,14 @@ "clothes": "black t", "earring": "silver stud", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1116 + }, "metadata_dict": { "eyes": "holographic", "hat": "irish boho", @@ -13268,33 +16618,42 @@ "clothes": "tanktop", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1117 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "black", "background": "orange", "eyes": "bloodshot", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1118 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "clothes": "navy striped tee", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1119 + }, "metadata_dict": { "fur": "trippy", "clothes": "leather jacket", @@ -13302,11 +16661,14 @@ "eyes": "bored", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1120 + }, "metadata_dict": { "earring": "silver stud", "clothes": "biker vest", @@ -13314,22 +16676,28 @@ "background": "orange", "eyes": "blue beams", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1121 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", "background": "aquamarine", "fur": "dark brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1122 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -13337,43 +16705,55 @@ "eyes": "bloodshot", "clothes": "admirals coat", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1123 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "clothes": "lab coat", "mouth": "bored unshaven cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1124 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "zombie", "background": "purple", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1125 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "prison jumpsuit", "background": "orange", "fur": "dark brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1126 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -13381,11 +16761,14 @@ "hat": "vietnam era helmet", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1127 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -13393,33 +16776,42 @@ "hat": "party hat 2", "mouth": "grin", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1128 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "orange", "fur": "dark brown", "eyes": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1129 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "dark brown", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1130 + }, "metadata_dict": { "earring": "gold hoop", "background": "orange", @@ -13428,11 +16820,14 @@ "clothes": "sleeveless logo t", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1131 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -13440,22 +16835,28 @@ "background": "blue", "hat": "bayc flipped brim", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1132 + }, "metadata_dict": { "eyes": "heart", "mouth": "jovial", "background": "orange", "fur": "brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1133 + }, "metadata_dict": { "mouth": "rage", "clothes": "tie dye", @@ -13463,22 +16864,28 @@ "eyes": "bored", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1134 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "background": "purple", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1135 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "holographic", @@ -13486,11 +16893,14 @@ "clothes": "sailor shirt", "background": "blue", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1136 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "jovial", @@ -13498,11 +16908,14 @@ "background": "orange", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1137 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -13510,22 +16923,28 @@ "clothes": "sleeveless t", "hat": "girl's hair pink", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1138 + }, "metadata_dict": { "mouth": "grin", "hat": "baby's bonnet", "eyes": "zombie", "fur": "gray", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1139 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", @@ -13533,11 +16952,14 @@ "eyes": "bloodshot", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1140 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "laurel wreath", @@ -13546,11 +16968,14 @@ "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1141 + }, "metadata_dict": { "clothes": "kings robe", "background": "blue", @@ -13559,11 +16984,14 @@ "hat": "beanie", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1142 + }, "metadata_dict": { "eyes": "closed", "hat": "stuntman helmet", @@ -13571,11 +16999,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1143 + }, "metadata_dict": { "clothes": "caveman pelt", "hat": "short mohawk", @@ -13583,11 +17014,14 @@ "eyes": "angry", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1144 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -13595,22 +17029,28 @@ "eyes": "bored", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1145 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black t", "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1146 + }, "metadata_dict": { "hat": "horns", "mouth": "grin diamond grill", @@ -13619,11 +17059,14 @@ "eyes": "crazy", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1147 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "black", @@ -13631,22 +17074,28 @@ "clothes": "lab coat", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1148 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", "mouth": "jovial", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1149 + }, "metadata_dict": { "eyes": "closed", "clothes": "bayc t red", @@ -13655,11 +17104,14 @@ "background": "blue", "earring": "silver hoop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1150 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -13667,11 +17119,14 @@ "fur": "dark brown", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1151 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "dmt", @@ -13679,22 +17134,28 @@ "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1152 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "fur": "dark brown", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1153 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -13702,11 +17163,14 @@ "mouth": "jovial", "clothes": "cowboy shirt", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1154 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", @@ -13714,11 +17178,14 @@ "fur": "red", "hat": "fisherman's hat", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1155 + }, "metadata_dict": { "hat": "irish boho", "clothes": "bone tee", @@ -13727,33 +17194,42 @@ "background": "purple", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1156 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "background": "orange", "fur": "dark brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1157 + }, "metadata_dict": { "background": "aquamarine", "mouth": "small grin", "hat": "girl's hair short", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1158 + }, "metadata_dict": { "hat": "party hat 2", "fur": "tan", @@ -13761,21 +17237,27 @@ "background": "orange", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1159 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven", "background": "orange", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1160 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "stuntman helmet", @@ -13783,11 +17265,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1161 + }, "metadata_dict": { "eyes": "wide eyed", "background": "aquamarine", @@ -13795,11 +17280,14 @@ "hat": "cowboy hat", "mouth": "bored unshaven cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1162 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "baby's bonnet", @@ -13807,22 +17295,28 @@ "clothes": "tuxedo tee", "fur": "death bot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1163 + }, "metadata_dict": { "eyes": "zombie", "clothes": "work vest", "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1164 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven", @@ -13831,11 +17325,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1165 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "black holes t", @@ -13843,11 +17340,14 @@ "fur": "pink", "mouth": "small grin", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1166 + }, "metadata_dict": { "earring": "silver stud", "background": "orange", @@ -13855,11 +17355,14 @@ "clothes": "bone necklace", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1167 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -13867,22 +17370,28 @@ "clothes": "guayabera", "background": "purple", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1168 + }, "metadata_dict": { "fur": "golden brown", "background": "orange", "eyes": "bored", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1169 + }, "metadata_dict": { "clothes": "black t", "background": "purple", @@ -13891,33 +17400,42 @@ "hat": "bowler", "eyes": "sleepy", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1170 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "hat": "sushi chef headband", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1171 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "clothes": "black holes t", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1172 + }, "metadata_dict": { "fur": "tan", "clothes": "blue dress", @@ -13925,11 +17443,14 @@ "eyes": "bored", "hat": "faux hawk", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1173 + }, "metadata_dict": { "hat": "fez", "eyes": "3d", @@ -13937,22 +17458,28 @@ "background": "purple", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1174 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin gold grill", "fur": "golden brown", "hat": "army hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1175 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "aquamarine", @@ -13961,11 +17488,14 @@ "mouth": "jovial", "fur": "black", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1176 + }, "metadata_dict": { "fur": "tan", "mouth": "bored kazoo", @@ -13973,11 +17503,14 @@ "hat": "sea captain's hat", "background": "orange", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1177 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -13985,33 +17518,42 @@ "hat": "ww2 pilot helm", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1178 + }, "metadata_dict": { "fur": "red", "background": "orange", "mouth": "tongue out", "hat": "bayc hat red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1179 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", "fur": "red", "eyes": "robot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1180 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -14020,33 +17562,42 @@ "fur": "red", "clothes": "pimp coat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1181 + }, "metadata_dict": { "mouth": "grin", "fur": "brown", "clothes": "tuxedo tee", "background": "gray", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1182 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", "background": "orange", "eyes": "bloodshot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1183 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -14054,11 +17605,14 @@ "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1184 + }, "metadata_dict": { "background": "blue", "fur": "pink", @@ -14066,11 +17620,14 @@ "hat": "cowboy hat", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1185 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin", @@ -14079,11 +17636,14 @@ "fur": "dark brown", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1186 + }, "metadata_dict": { "mouth": "grin multicolored", "eyes": "coins", @@ -14091,11 +17651,14 @@ "earring": "silver hoop", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1187 + }, "metadata_dict": { "eyes": "heart", "fur": "brown", @@ -14103,11 +17666,14 @@ "clothes": "tuxedo tee", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1188 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "seaman's hat", @@ -14115,11 +17681,14 @@ "background": "yellow", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1189 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "heart", @@ -14127,11 +17696,14 @@ "hat": "fez", "background": "orange", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1190 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -14139,11 +17711,14 @@ "earring": "gold stud", "fur": "brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1191 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -14151,11 +17726,14 @@ "hat": "bowler", "clothes": "guayabera", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1192 + }, "metadata_dict": { "eyes": "coins", "earring": "diamond stud", @@ -14163,22 +17741,28 @@ "background": "purple", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1193 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "gray", "fur": "brown", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1194 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin", @@ -14186,11 +17770,14 @@ "earring": "silver stud", "fur": "dark brown", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1195 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "dmt", @@ -14198,11 +17785,14 @@ "background": "gray", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1196 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -14210,11 +17800,14 @@ "background": "purple", "clothes": "navy striped tee", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1197 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "blue dress", @@ -14222,11 +17815,14 @@ "fur": "dark brown", "hat": "army hat", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1198 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sailor shirt", @@ -14235,11 +17831,14 @@ "hat": "commie hat", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1199 + }, "metadata_dict": { "background": "yellow", "fur": "dark brown", @@ -14247,11 +17846,14 @@ "mouth": "bored unshaven dagger", "eyes": "angry", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1200 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "purple", @@ -14259,11 +17861,14 @@ "fur": "cheetah", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1201 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -14271,11 +17876,14 @@ "background": "gray", "hat": "bayc hat red", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1202 + }, "metadata_dict": { "mouth": "jovial", "background": "purple", @@ -14283,11 +17891,14 @@ "hat": "bunny ears", "eyes": "cyborg", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1203 + }, "metadata_dict": { "eyes": "closed", "fur": "dmt", @@ -14296,11 +17907,14 @@ "background": "purple", "hat": "commie hat", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1204 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven party horn", @@ -14308,11 +17922,14 @@ "hat": "beanie", "clothes": "stunt jacket", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1205 + }, "metadata_dict": { "fur": "tan", "mouth": "grin diamond grill", @@ -14320,11 +17937,14 @@ "earring": "silver hoop", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1206 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "dark brown", @@ -14332,11 +17952,14 @@ "hat": "commie hat", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1207 + }, "metadata_dict": { "mouth": "grin", "clothes": "blue dress", @@ -14345,11 +17968,14 @@ "earring": "gold stud", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1208 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -14357,11 +17983,14 @@ "clothes": "bone necklace", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1209 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -14369,33 +17998,42 @@ "clothes": "bayc t black", "eyes": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1210 + }, "metadata_dict": { "eyes": "heart", "clothes": "service", "mouth": "bored", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1211 + }, "metadata_dict": { "eyes": "blindfold", "fur": "gray", "background": "orange", "mouth": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1212 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", @@ -14404,11 +18042,14 @@ "eyes": "sleepy", "earring": "cross", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1213 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "seaman's hat", @@ -14417,11 +18058,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1214 + }, "metadata_dict": { "mouth": "bored kazoo", "hat": "prussian helmet", @@ -14429,22 +18073,28 @@ "fur": "pink", "eyes": "3d", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1215 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bored", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1216 + }, "metadata_dict": { "eyes": "scumbag", "earring": "diamond stud", @@ -14453,11 +18103,14 @@ "hat": "army hat", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1217 + }, "metadata_dict": { "earring": "silver stud", "background": "orange", @@ -14466,11 +18119,14 @@ "mouth": "bored", "clothes": "admirals coat", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1218 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "scumbag", @@ -14478,11 +18134,14 @@ "hat": "beanie", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1219 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -14490,11 +18149,14 @@ "background": "aquamarine", "fur": "noise", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1220 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -14502,11 +18164,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1221 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "zombie", @@ -14515,11 +18180,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1222 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -14528,22 +18196,28 @@ "mouth": "bored", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1223 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "robot", "background": "orange", "fur": "dark brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1224 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", @@ -14552,11 +18226,14 @@ "fur": "brown", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1225 + }, "metadata_dict": { "eyes": "blindfold", "hat": "sushi chef headband", @@ -14564,11 +18241,14 @@ "clothes": "hawaiian", "background": "orange", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1226 + }, "metadata_dict": { "fur": "dmt", "clothes": "prison jumpsuit", @@ -14576,11 +18256,14 @@ "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1227 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -14589,11 +18272,14 @@ "fur": "brown", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1228 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "aquamarine", @@ -14601,11 +18287,14 @@ "fur": "cheetah", "hat": "commie hat", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1229 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tweed suit", @@ -14614,11 +18303,14 @@ "hat": "beanie", "earring": "cross", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1230 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "bored unshaven party horn", @@ -14626,22 +18318,28 @@ "background": "gray", "clothes": "guayabera", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1231 + }, "metadata_dict": { "eyes": "scumbag", "fur": "black", "background": "orange", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1232 + }, "metadata_dict": { "hat": "s&m hat", "fur": "dmt", @@ -14649,11 +18347,14 @@ "clothes": "prom dress", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1233 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "aquamarine", @@ -14661,11 +18362,14 @@ "fur": "cheetah", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1234 + }, "metadata_dict": { "clothes": "leather jacket", "mouth": "bored bubblegum", @@ -14673,11 +18377,14 @@ "eyes": "sleepy", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1235 + }, "metadata_dict": { "eyes": "heart", "hat": "baby's bonnet", @@ -14686,33 +18393,42 @@ "mouth": "bored", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1236 + }, "metadata_dict": { "mouth": "discomfort", "fur": "black", "clothes": "guayabera", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1237 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "fur": "black", "hat": "short mohawk", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1238 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -14721,11 +18437,14 @@ "hat": "commie hat", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1239 + }, "metadata_dict": { "background": "new punk blue", "eyes": "sunglasses", @@ -14733,24 +18452,30 @@ "hat": "beanie", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1240 + }, "metadata_dict": { + "hat": "bayc hat black", + "clothes": "lumberjack shirt", "mouth": "bored pipe", "earring": "gold stud", "fur": "black", "background": "yellow", - "eyes": "sunglasses", - "hat": "bayc hat black", - "clothes": "lumberjack shirt" - } + "eyes": "sunglasses" + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1241 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven cigarette", @@ -14758,11 +18483,14 @@ "eyes": "bored", "hat": "ww2 pilot helm", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1242 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -14770,11 +18498,14 @@ "background": "aquamarine", "earring": "silver hoop", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1243 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "phoneme oh", @@ -14783,11 +18514,14 @@ "hat": "army hat", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1244 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "lumberjack shirt", @@ -14796,11 +18530,14 @@ "hat": "bayc flipped brim", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1245 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -14808,11 +18545,14 @@ "eyes": "bored", "hat": "vietnam era helmet", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1246 + }, "metadata_dict": { "mouth": "bored dagger", "background": "gray", @@ -14820,11 +18560,14 @@ "fur": "brown", "hat": "bayc hat red", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1247 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -14832,11 +18575,14 @@ "earring": "gold stud", "eyes": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1248 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -14844,11 +18590,14 @@ "earring": "silver stud", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1249 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -14856,11 +18605,14 @@ "hat": "seaman's hat", "mouth": "dumbfounded", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1250 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", @@ -14868,11 +18620,14 @@ "clothes": "lab coat", "fur": "cheetah", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1251 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "dmt", @@ -14880,11 +18635,14 @@ "hat": "cowboy hat", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1252 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -14893,33 +18651,42 @@ "eyes": "bored", "clothes": "admirals coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1253 + }, "metadata_dict": { "eyes": "zombie", "mouth": "bored unshaven bubblegum", "background": "orange", "fur": "dark brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1254 + }, "metadata_dict": { "fur": "tan", "eyes": "blindfold", "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1255 + }, "metadata_dict": { "background": "blue", "clothes": "leather jacket", @@ -14928,11 +18695,14 @@ "eyes": "bored", "hat": "safari", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1256 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "dmt", @@ -14940,33 +18710,42 @@ "background": "blue", "eyes": "bored", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1257 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", "clothes": "toga", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1258 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "dark brown", "eyes": "bored", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1259 + }, "metadata_dict": { "fur": "red", "hat": "beanie", @@ -14974,11 +18753,14 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1260 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", @@ -14987,11 +18769,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1261 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -14999,11 +18784,14 @@ "eyes": "bloodshot", "fur": "noise", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1262 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven party horn", @@ -15011,11 +18799,14 @@ "eyes": "bloodshot", "hat": "short mohawk", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1263 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -15023,11 +18814,14 @@ "background": "aquamarine", "clothes": "toga", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1264 + }, "metadata_dict": { "fur": "red", "background": "blue", @@ -15035,33 +18829,42 @@ "hat": "bowler", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1265 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "mouth": "bored", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1266 + }, "metadata_dict": { - "hat": "prussian helmet", - "eyes": "bloodshot", "fur": "brown", "background": "purple", - "mouth": "bored" - } + "mouth": "bored", + "hat": "prussian helmet", + "eyes": "bloodshot" + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1267 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "coins", @@ -15069,11 +18872,14 @@ "fur": "dark brown", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1268 + }, "metadata_dict": { "fur": "brown", "background": "orange", @@ -15081,11 +18887,14 @@ "hat": "girl's hair short", "mouth": "bored unshaven cigarette", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1269 + }, "metadata_dict": { "eyes": "closed", "hat": "fez", @@ -15093,11 +18902,14 @@ "fur": "pink", "mouth": "small grin", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1270 + }, "metadata_dict": { "hat": "beanie", "eyes": "bloodshot", @@ -15106,11 +18918,14 @@ "fur": "brown", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1271 + }, "metadata_dict": { "eyes": "blindfold", "fur": "golden brown", @@ -15119,22 +18934,28 @@ "background": "orange", "mouth": "bored unshaven cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1272 + }, "metadata_dict": { "eyes": "heart", "fur": "black", "mouth": "bored bubblegum", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1273 + }, "metadata_dict": { "mouth": "grin multicolored", "eyes": "hypnotized", @@ -15142,22 +18963,28 @@ "hat": "spinner hat", "clothes": "tuxedo tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1274 + }, "metadata_dict": { "fur": "cream", "mouth": "dumbfounded", "eyes": "3d", "hat": "girl's hair short", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1275 + }, "metadata_dict": { "fur": "cream", "earring": "gold hoop", @@ -15165,11 +18992,14 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1276 + }, "metadata_dict": { "eyes": "holographic", "mouth": "grin", @@ -15178,11 +19008,14 @@ "background": "blue", "earring": "cross", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1277 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "gold hoop", @@ -15191,33 +19024,42 @@ "clothes": "tanktop", "hat": "vietnam era helmet", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1278 + }, "metadata_dict": { "background": "orange", "hat": "fisherman's hat", "mouth": "bored", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1279 + }, "metadata_dict": { "clothes": "striped tee", "fur": "pink", "eyes": "bloodshot", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1280 + }, "metadata_dict": { "clothes": "leather jacket", "eyes": "3d", @@ -15226,32 +19068,41 @@ "fur": "brown", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1281 + }, "metadata_dict": { "background": "gray", "eyes": "sleepy", "mouth": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1282 + }, "metadata_dict": { "fur": "cream", "mouth": "bored pipe", "eyes": "robot", "background": "blue", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1283 + }, "metadata_dict": { "fur": "dmt", "eyes": "coins", @@ -15259,11 +19110,14 @@ "clothes": "leather jacket", "mouth": "tongue out", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1284 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -15271,22 +19125,28 @@ "mouth": "phoneme ooo", "background": "blue", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1285 + }, "metadata_dict": { "hat": "seaman's hat", "background": "yellow", "mouth": "bored", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1286 + }, "metadata_dict": { "background": "blue", "earring": "gold stud", @@ -15295,22 +19155,28 @@ "hat": "safari", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1287 + }, "metadata_dict": { "clothes": "blue dress", "eyes": "robot", "fur": "pink", "mouth": "small grin", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1288 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "sushi chef headband", @@ -15319,11 +19185,14 @@ "eyes": "sleepy", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1289 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "wide eyed", @@ -15331,22 +19200,28 @@ "fur": "black", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1290 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "black", "clothes": "smoking jacket", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1291 + }, "metadata_dict": { "clothes": "bone necklace", "background": "yellow", @@ -15354,11 +19229,14 @@ "hat": "bowler", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1292 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "phoneme vuh", @@ -15367,11 +19245,14 @@ "hat": "safari", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1293 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "dark brown", @@ -15380,55 +19261,70 @@ "background": "yellow", "earring": "cross", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1294 + }, "metadata_dict": { "hat": "s&m hat", "fur": "red", "background": "purple", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1295 + }, "metadata_dict": { "eyes": "closed", "fur": "red", "background": "yellow", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1296 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "coins", "fur": "dark brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1297 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tuxedo tee", "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1298 + }, "metadata_dict": { "clothes": "striped tee", "fur": "gray", @@ -15436,11 +19332,14 @@ "background": "aquamarine", "mouth": "bored pipe", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1299 + }, "metadata_dict": { "clothes": "wool turtleneck", "earring": "gold hoop", @@ -15449,11 +19348,14 @@ "hat": "cowboy hat", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1300 + }, "metadata_dict": { "eyes": "zombie", "earring": "silver stud", @@ -15462,22 +19364,28 @@ "clothes": "hip hop", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1301 + }, "metadata_dict": { "eyes": "heart", "background": "blue", "fur": "dark brown", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1302 + }, "metadata_dict": { "mouth": "discomfort", "hat": "sea captain's hat", @@ -15485,11 +19393,14 @@ "earring": "silver hoop", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1303 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", @@ -15497,11 +19408,14 @@ "fur": "pink", "eyes": "bloodshot", "hat": "ww2 pilot helm" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1304 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -15509,11 +19423,14 @@ "eyes": "bored", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1305 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -15521,11 +19438,14 @@ "hat": "king's crown", "background": "aquamarine", "clothes": "tie dye" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1306 + }, "metadata_dict": { "clothes": "striped tee", "earring": "silver stud", @@ -15534,21 +19454,27 @@ "fur": "dark brown", "eyes": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1307 + }, "metadata_dict": { "fur": "red", "eyes": "zombie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1308 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -15557,22 +19483,28 @@ "earring": "silver hoop", "fur": "brown", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1309 + }, "metadata_dict": { "eyes": "heart", "fur": "dark brown", "clothes": "bayc t black", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1310 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored kazoo", @@ -15581,11 +19513,14 @@ "fur": "dark brown", "hat": "faux hawk", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1311 + }, "metadata_dict": { "hat": "faux hawk", "mouth": "jovial", @@ -15593,22 +19528,28 @@ "clothes": "toga", "fur": "cheetah", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1312 + }, "metadata_dict": { "hat": "party hat 2", "fur": "tan", "mouth": "grin", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1313 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", @@ -15616,33 +19557,42 @@ "hat": "bunny ears", "eyes": "angry", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1314 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "coins", "clothes": "sailor shirt", "background": "aquamarine", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1315 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "dark brown", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1316 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "black", @@ -15650,11 +19600,14 @@ "hat": "girl's hair short", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1317 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -15662,11 +19615,14 @@ "background": "orange", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1318 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", @@ -15675,11 +19631,14 @@ "clothes": "bayc t black", "hat": "army hat", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1319 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "vietnam era helmet", @@ -15687,33 +19646,42 @@ "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1320 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", "mouth": "jovial", "fur": "pink", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1321 + }, "metadata_dict": { "clothes": "tweed suit", "mouth": "bored bubblegum", "fur": "cheetah", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1322 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -15721,11 +19689,14 @@ "clothes": "tuxedo tee", "hat": "cowboy hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1323 + }, "metadata_dict": { "eyes": "x eyes", "earring": "diamond stud", @@ -15734,11 +19705,14 @@ "fur": "black", "hat": "commie hat", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1324 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -15747,22 +19721,28 @@ "eyes": "sleepy", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1325 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", "fur": "black", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1326 + }, "metadata_dict": { "clothes": "rainbow suspenders", "hat": "fez", @@ -15770,11 +19750,14 @@ "fur": "red", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1327 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -15782,11 +19765,14 @@ "hat": "beanie", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1328 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t red", @@ -15795,21 +19781,27 @@ "hat": "bowler", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1329 + }, "metadata_dict": { "eyes": "sleepy", "mouth": "bored unshaven", "fur": "cream", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1330 + }, "metadata_dict": { "clothes": "black holes t", "background": "aquamarine", @@ -15818,11 +19810,14 @@ "eyes": "bored", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1331 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "rainbow suspenders", @@ -15830,11 +19825,14 @@ "fur": "black", "hat": "army hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1332 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -15842,22 +19840,28 @@ "eyes": "bloodshot", "hat": "army hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1333 + }, "metadata_dict": { "eyes": "x eyes", "background": "blue", "fur": "dark brown", "clothes": "tanktop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1334 + }, "metadata_dict": { "clothes": "biker vest", "eyes": "3d", @@ -15865,11 +19869,14 @@ "hat": "commie hat", "mouth": "phoneme wah", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1335 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "grin", @@ -15878,11 +19885,14 @@ "background": "blue", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1336 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "gray", @@ -15890,11 +19900,14 @@ "eyes": "bored", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1337 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -15902,22 +19915,28 @@ "eyes": "bloodshot", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1338 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "sad", "background": "blue", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1339 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -15926,11 +19945,14 @@ "earring": "silver hoop", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1340 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "blue", @@ -15938,11 +19960,14 @@ "eyes": "bored", "hat": "fisherman's hat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1341 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -15951,11 +19976,14 @@ "eyes": "bored", "background": "yellow", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1342 + }, "metadata_dict": { "clothes": "bayc t red", "background": "orange", @@ -15963,11 +19991,14 @@ "eyes": "bored", "fur": "brown", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1343 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven", @@ -15976,11 +20007,14 @@ "eyes": "bloodshot", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1344 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather punk jacket", @@ -15988,22 +20022,28 @@ "fur": "black", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1345 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "bored", "background": "yellow", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1346 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -16012,11 +20052,14 @@ "fur": "brown", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1347 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "scumbag", @@ -16024,11 +20067,14 @@ "hat": "fez", "mouth": "dumbfounded", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1348 + }, "metadata_dict": { "background": "new punk blue", "hat": "fez", @@ -16036,11 +20082,14 @@ "fur": "black", "mouth": "phoneme wah", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1349 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -16048,11 +20097,14 @@ "clothes": "prison jumpsuit", "background": "blue", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1350 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -16060,11 +20112,14 @@ "background": "yellow", "fur": "death bot", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1351 + }, "metadata_dict": { "eyes": "closed", "earring": "silver stud", @@ -16073,22 +20128,28 @@ "hat": "army hat", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1352 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "hat": "irish boho", "mouth": "grin", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1353 + }, "metadata_dict": { "fur": "gray", "hat": "party hat 1", @@ -16096,22 +20157,28 @@ "background": "orange", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1354 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored kazoo", "fur": "black", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1355 + }, "metadata_dict": { "hat": "seaman's hat", "background": "orange", @@ -16119,11 +20186,14 @@ "clothes": "toga", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1356 + }, "metadata_dict": { "clothes": "space suit", "fur": "gray", @@ -16132,22 +20202,28 @@ "earring": "silver hoop", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1357 + }, "metadata_dict": { "mouth": "grin multicolored", "hat": "party hat 1", "background": "aquamarine", "fur": "dark brown", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1358 + }, "metadata_dict": { "mouth": "bored party horn", "clothes": "tanktop", @@ -16156,11 +20232,14 @@ "fur": "brown", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1359 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "gray", @@ -16168,11 +20247,14 @@ "earring": "silver hoop", "eyes": "blue beams", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1360 + }, "metadata_dict": { "eyes": "heart", "clothes": "wool turtleneck", @@ -16181,11 +20263,14 @@ "hat": "spinner hat", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1361 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -16194,11 +20279,14 @@ "background": "yellow", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1362 + }, "metadata_dict": { "mouth": "bored party horn", "earring": "silver stud", @@ -16207,11 +20295,14 @@ "clothes": "tanktop", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1363 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "cream", @@ -16219,11 +20310,14 @@ "hat": "commie hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1364 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "sleeveless t", @@ -16231,22 +20325,28 @@ "background": "gray", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1365 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "rainbow suspenders", "fur": "red", "background": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1366 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -16254,11 +20354,14 @@ "background": "orange", "hat": "ww2 pilot helm", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1367 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -16267,11 +20370,14 @@ "clothes": "smoking jacket", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1368 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -16279,22 +20385,28 @@ "fur": "dark brown", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1369 + }, "metadata_dict": { "mouth": "grin", "eyes": "bloodshot", "clothes": "toga", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1370 + }, "metadata_dict": { "hat": "beanie", "earring": "gold stud", @@ -16303,22 +20415,28 @@ "eyes": "3d", "clothes": "bone necklace", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1371 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", "mouth": "bored unshaven pipe", "background": "blue", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1372 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "leather punk jacket", @@ -16326,22 +20444,28 @@ "mouth": "tongue out", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1373 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "mouth": "bored unshaven", "fur": "dmt", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1374 + }, "metadata_dict": { "hat": "irish boho", "earring": "silver stud", @@ -16349,11 +20473,14 @@ "eyes": "bloodshot", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1375 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "gold hoop", @@ -16362,11 +20489,14 @@ "background": "purple", "hat": "commie hat", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1376 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -16374,11 +20504,14 @@ "earring": "silver hoop", "background": "yellow", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1377 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "sleeveless t", @@ -16386,11 +20519,14 @@ "eyes": "3d", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1378 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored cigarette", @@ -16399,11 +20535,14 @@ "earring": "silver hoop", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1379 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "black t", @@ -16412,11 +20551,14 @@ "hat": "short mohawk", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1380 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "bowler", @@ -16424,11 +20566,14 @@ "clothes": "prom dress", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1381 + }, "metadata_dict": { "background": "gray", "mouth": "grin", @@ -16436,11 +20581,14 @@ "clothes": "bayc t black", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1382 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "puffy vest", @@ -16449,11 +20597,14 @@ "background": "blue", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1383 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "blindfold", @@ -16461,11 +20612,14 @@ "background": "orange", "hat": "bayc flipped brim", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1384 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", @@ -16474,11 +20628,14 @@ "clothes": "tanktop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1385 + }, "metadata_dict": { "background": "orange", "eyes": "bloodshot", @@ -16486,11 +20643,14 @@ "hat": "fisherman's hat", "mouth": "bored unshaven cigarette", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1386 + }, "metadata_dict": { "eyes": "zombie", "background": "aquamarine", @@ -16499,11 +20659,14 @@ "earring": "silver hoop", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1387 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "bored bubblegum", @@ -16511,11 +20674,14 @@ "fur": "brown", "background": "purple", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1388 + }, "metadata_dict": { "mouth": "grin diamond grill", "earring": "silver stud", @@ -16524,11 +20690,14 @@ "clothes": "tuxedo tee", "eyes": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1389 + }, "metadata_dict": { "clothes": "kings robe", "fur": "tan", @@ -16537,11 +20706,14 @@ "eyes": "bored", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1390 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -16549,11 +20721,14 @@ "earring": "silver hoop", "eyes": "bored", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1391 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -16561,66 +20736,84 @@ "hat": "king's crown", "mouth": "phoneme vuh", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1392 + }, "metadata_dict": { "hat": "irish boho", "background": "blue", "eyes": "bloodshot", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1393 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1394 + }, "metadata_dict": { "hat": "fez", "fur": "black", "background": "gray", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1395 + }, "metadata_dict": { "fur": "cream", "background": "blue", "clothes": "biker vest", "mouth": "phoneme wah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1396 + }, "metadata_dict": { "mouth": "small grin", "eyes": "bored", "clothes": "tanktop", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1397 + }, "metadata_dict": { "clothes": "rainbow suspenders", "hat": "stuntman helmet", @@ -16628,22 +20821,28 @@ "mouth": "bored unshaven cigarette", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1398 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", "eyes": "bored", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1399 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -16651,11 +20850,14 @@ "background": "orange", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1400 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -16664,11 +20866,14 @@ "clothes": "tanktop", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1401 + }, "metadata_dict": { "clothes": "black suit", "mouth": "grin diamond grill", @@ -16676,11 +20881,14 @@ "background": "gray", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1402 + }, "metadata_dict": { "hat": "s&m hat", "background": "blue", @@ -16688,11 +20896,14 @@ "fur": "dark brown", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1403 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -16701,11 +20912,14 @@ "earring": "silver stud", "hat": "short mohawk", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1404 + }, "metadata_dict": { "clothes": "space suit", "earring": "silver stud", @@ -16714,11 +20928,14 @@ "mouth": "bored cigarette", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1405 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "hat": "short mohawk", @@ -16727,11 +20944,14 @@ "eyes": "crazy", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1406 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -16739,11 +20959,14 @@ "mouth": "phoneme vuh", "eyes": "bored", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1407 + }, "metadata_dict": { "eyes": "heart", "background": "gray", @@ -16751,11 +20974,14 @@ "hat": "fisherman's hat", "fur": "cheetah", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1408 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", @@ -16763,22 +20989,28 @@ "clothes": "toga", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1409 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "eyes": "robot", "mouth": "bored bubblegum", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1410 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather punk jacket", @@ -16787,11 +21019,14 @@ "background": "blue", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1411 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin", @@ -16799,11 +21034,14 @@ "fur": "brown", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1412 + }, "metadata_dict": { "eyes": "x eyes", "fur": "dmt", @@ -16811,11 +21049,14 @@ "hat": "spinner hat", "clothes": "tuxedo tee", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1413 + }, "metadata_dict": { "eyes": "closed", "background": "gray", @@ -16823,44 +21064,56 @@ "clothes": "leather jacket", "fur": "brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1414 + }, "metadata_dict": { "fur": "cream", "hat": "stuntman helmet", "background": "aquamarine", "mouth": "bored pipe", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1415 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", "background": "aquamarine", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1416 + }, "metadata_dict": { "fur": "gray", "eyes": "bored", "background": "purple", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1417 + }, "metadata_dict": { "fur": "robot", "hat": "irish boho", @@ -16869,11 +21122,14 @@ "background": "yellow", "mouth": "bored cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1418 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -16882,33 +21138,42 @@ "hat": "stuntman helmet", "fur": "brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1419 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "brown", "hat": "bayc hat red", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1420 + }, "metadata_dict": { "mouth": "discomfort", "fur": "red", "background": "blue", "clothes": "tie dye", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1421 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -16916,11 +21181,14 @@ "eyes": "bored", "clothes": "pimp coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1422 + }, "metadata_dict": { "hat": "vietnam era helmet", "eyes": "bloodshot", @@ -16928,44 +21196,56 @@ "clothes": "bayc t black", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1423 + }, "metadata_dict": { "eyes": "closed", "earring": "silver stud", "background": "yellow", "mouth": "bored cigar", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1424 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "fur": "pink", "earring": "silver hoop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1425 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "lumberjack shirt", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1426 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "cream", @@ -16974,11 +21254,14 @@ "earring": "cross", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1427 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "black t", @@ -16986,11 +21269,14 @@ "fur": "red", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1428 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -16999,11 +21285,14 @@ "earring": "gold stud", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1429 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven cigarette", @@ -17012,11 +21301,14 @@ "background": "gray", "clothes": "caveman pelt", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1430 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -17024,11 +21316,14 @@ "background": "orange", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1431 + }, "metadata_dict": { "earring": "silver stud", "eyes": "3d", @@ -17036,11 +21331,14 @@ "background": "yellow", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1432 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "bored", @@ -17048,87 +21346,111 @@ "fur": "brown", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1433 + }, "metadata_dict": { "background": "aquamarine", "fur": "pink", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1434 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "tan", "eyes": "coins", "background": "aquamarine", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1435 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "gray", "background": "orange", "eyes": "3d", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1436 + }, "metadata_dict": { "eyes": "zombie", "fur": "gray", "background": "yellow", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1437 + }, "metadata_dict": { "fur": "tan", "eyes": "holographic", "background": "blue", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1438 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", "mouth": "dumbfounded", "fur": "black", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1439 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "stuntman helmet", "fur": "black", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1440 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -17136,11 +21458,14 @@ "fur": "pink", "background": "orange", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1441 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "jovial", @@ -17148,11 +21473,14 @@ "fur": "black", "eyes": "bloodshot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1442 + }, "metadata_dict": { "fur": "dmt", "mouth": "dumbfounded", @@ -17160,11 +21488,14 @@ "eyes": "3d", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1443 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -17172,44 +21503,56 @@ "fur": "dark brown", "clothes": "sleeveless logo t", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1444 + }, "metadata_dict": { "fur": "red", "mouth": "bored unshaven kazoo", "background": "gray", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1445 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "blue", "eyes": "robot", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1446 + }, "metadata_dict": { "background": "orange", "fur": "noise", "hat": "bowler", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1447 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "tweed suit", @@ -17217,11 +21560,14 @@ "background": "yellow", "mouth": "phoneme wah", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1448 + }, "metadata_dict": { "fur": "tan", "hat": "fez", @@ -17230,11 +21576,14 @@ "eyes": "bored", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1449 + }, "metadata_dict": { "background": "new punk blue", "hat": "irish boho", @@ -17243,21 +21592,27 @@ "fur": "pink", "eyes": "crazy", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1450 + }, "metadata_dict": { "fur": "golden brown", "eyes": "robot", "background": "orange", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1451 + }, "metadata_dict": { "eyes": "heart", "clothes": "leather jacket", @@ -17265,11 +21620,14 @@ "hat": "cowboy hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1452 + }, "metadata_dict": { "fur": "cheetah", "mouth": "bored pipe", @@ -17277,22 +21635,28 @@ "clothes": "bayc t black", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1453 + }, "metadata_dict": { "mouth": "grin", "clothes": "work vest", "eyes": "robot", "fur": "black", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1454 + }, "metadata_dict": { "fur": "red", "mouth": "bored pipe", @@ -17300,22 +21664,28 @@ "eyes": "bloodshot", "clothes": "hip hop", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1455 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "hat": "short mohawk", "fur": "dark brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1456 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -17324,11 +21694,14 @@ "hat": "girl's hair short", "fur": "cheetah", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1457 + }, "metadata_dict": { "mouth": "phoneme wah", "hat": "s&m hat", @@ -17336,22 +21709,28 @@ "background": "yellow", "fur": "white", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1458 + }, "metadata_dict": { "eyes": "zombie", "hat": "party hat 1", "fur": "pink", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1459 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "hat": "horns", @@ -17360,11 +21739,14 @@ "fur": "black", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1460 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -17373,11 +21755,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1461 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "red", @@ -17385,11 +21770,14 @@ "eyes": "3d", "hat": "safari", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1462 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "zombie", @@ -17398,11 +21786,14 @@ "earring": "silver hoop", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1463 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "leather jacket", @@ -17410,22 +21801,28 @@ "background": "blue", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1464 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", "hat": "fez", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1465 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -17433,11 +21830,14 @@ "fur": "dark brown", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1466 + }, "metadata_dict": { "fur": "tan", "clothes": "bayc t red", @@ -17445,11 +21845,14 @@ "mouth": "bored bubblegum", "hat": "fisherman's hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1467 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -17457,11 +21860,14 @@ "eyes": "bored", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1468 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -17469,11 +21875,14 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1469 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -17481,44 +21890,56 @@ "fur": "black", "eyes": "bloodshot", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1470 + }, "metadata_dict": { "eyes": "x eyes", "earring": "diamond stud", "background": "blue", "fur": "pink", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1471 + }, "metadata_dict": { "hat": "baby's bonnet", "background": "orange", "mouth": "bored unshaven cigar", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1472 + }, "metadata_dict": { "eyes": "x eyes", "background": "yellow", "mouth": "bored", "fur": "white", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1473 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -17526,11 +21947,14 @@ "clothes": "cowboy shirt", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1474 + }, "metadata_dict": { "background": "blue", "fur": "pink", @@ -17538,11 +21962,14 @@ "hat": "girl's hair short", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1475 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "sushi chef headband", @@ -17550,11 +21977,14 @@ "eyes": "robot", "fur": "black", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1476 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -17562,11 +21992,14 @@ "hat": "safari", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1477 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored kazoo", @@ -17574,11 +22007,14 @@ "background": "blue", "clothes": "tie dye", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1478 + }, "metadata_dict": { "eyes": "heart", "earring": "gold hoop", @@ -17586,11 +22022,14 @@ "fur": "brown", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1479 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "gold hoop", @@ -17599,11 +22038,14 @@ "hat": "beanie", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1480 + }, "metadata_dict": { "background": "new punk blue", "fur": "pink", @@ -17611,11 +22053,14 @@ "hat": "fisherman's hat", "mouth": "bored unshaven cigarette", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1481 + }, "metadata_dict": { "mouth": "grin", "hat": "prussian helmet", @@ -17623,11 +22068,14 @@ "fur": "dark brown", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1482 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -17635,11 +22083,14 @@ "earring": "gold hoop", "clothes": "biker vest", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1483 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin multicolored", @@ -17648,11 +22099,14 @@ "fur": "brown", "background": "yellow", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1484 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -17660,22 +22114,28 @@ "eyes": "3d", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1485 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "3d", "clothes": "toga", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1486 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", @@ -17683,11 +22143,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1487 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "stuntman helmet", @@ -17695,55 +22158,70 @@ "eyes": "bloodshot", "fur": "brown", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1488 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "golden brown", "clothes": "prison jumpsuit", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1489 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", "background": "blue", "fur": "death bot", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1490 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", "background": "orange", "fur": "dark brown", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1491 + }, "metadata_dict": { "fur": "tan", "background": "aquamarine", "mouth": "bored unshaven cigarette", "eyes": "angry", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1492 + }, "metadata_dict": { "eyes": "eyepatch", "background": "blue", @@ -17751,11 +22229,14 @@ "fur": "death bot", "mouth": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1493 + }, "metadata_dict": { "clothes": "space suit", "fur": "dmt", @@ -17763,11 +22244,14 @@ "mouth": "dumbfounded", "background": "aquamarine", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1494 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -17775,22 +22259,28 @@ "hat": "irish boho", "clothes": "prison jumpsuit", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1495 + }, "metadata_dict": { "fur": "gray", "clothes": "cowboy shirt", "background": "orange", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1496 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -17799,11 +22289,14 @@ "clothes": "work vest", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1497 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -17812,11 +22305,14 @@ "mouth": "bored", "eyes": "angry", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1498 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -17824,11 +22320,14 @@ "clothes": "cowboy shirt", "hat": "ww2 pilot helm", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1499 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -17837,11 +22336,14 @@ "clothes": "smoking jacket", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1500 + }, "metadata_dict": { "eyes": "closed", "mouth": "discomfort", @@ -17849,11 +22351,14 @@ "fur": "gray", "clothes": "tuxedo tee", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1501 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", @@ -17861,22 +22366,28 @@ "hat": "short mohawk", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1502 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "sleeveless logo t", "fur": "death bot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1503 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", @@ -17884,11 +22395,14 @@ "mouth": "bored", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1504 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -17897,33 +22411,42 @@ "earring": "silver hoop", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1505 + }, "metadata_dict": { "fur": "golden brown", "eyes": "zombie", "mouth": "bored unshaven cigarette", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1506 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", "earring": "silver stud", "background": "orange", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1507 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -17932,11 +22455,14 @@ "mouth": "bored cigarette", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1508 + }, "metadata_dict": { "fur": "tan", "eyes": "holographic", @@ -17944,11 +22470,14 @@ "hat": "bayc flipped brim", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1509 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "zombie", @@ -17956,11 +22485,14 @@ "mouth": "bored unshaven cigarette", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1510 + }, "metadata_dict": { "eyes": "closed", "hat": "party hat 1", @@ -17968,11 +22500,14 @@ "background": "gray", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1511 + }, "metadata_dict": { "eyes": "heart", "fur": "black", @@ -17980,22 +22515,28 @@ "hat": "bunny ears", "earring": "silver hoop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1512 + }, "metadata_dict": { "eyes": "closed", "clothes": "lumberjack shirt", "mouth": "grin", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1513 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -18004,11 +22545,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1514 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "bloodshot", @@ -18016,11 +22560,14 @@ "fur": "brown", "earring": "cross", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1515 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", @@ -18028,11 +22575,14 @@ "eyes": "sleepy", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1516 + }, "metadata_dict": { "fur": "gray", "clothes": "rainbow suspenders", @@ -18040,11 +22590,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1517 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -18052,11 +22605,14 @@ "fur": "gray", "hat": "sea captain's hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1518 + }, "metadata_dict": { "earring": "gold hoop", "background": "blue", @@ -18064,22 +22620,28 @@ "fur": "dark brown", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1519 + }, "metadata_dict": { "background": "gray", "eyes": "hypnotized", "fur": "brown", "mouth": "tongue out", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1520 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "black", @@ -18087,22 +22649,28 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1521 + }, "metadata_dict": { "eyes": "scumbag", "fur": "black", "mouth": "small grin", "background": "yellow", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1522 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "blue dress", @@ -18110,11 +22678,14 @@ "mouth": "jovial", "earring": "gold stud", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1523 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", @@ -18122,11 +22693,14 @@ "fur": "brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1524 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -18134,21 +22708,27 @@ "eyes": "bored", "clothes": "tanktop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1525 + }, "metadata_dict": { "mouth": "grin", "background": "blue", "fur": "black", "eyes": "coins" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1526 + }, "metadata_dict": { "eyes": "closed", "fur": "brown", @@ -18157,11 +22737,14 @@ "clothes": "biker vest", "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1527 + }, "metadata_dict": { "fur": "tan", "background": "gray", @@ -18169,11 +22752,14 @@ "mouth": "small grin", "clothes": "pimp coat", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1528 + }, "metadata_dict": { "earring": "gold hoop", "background": "yellow", @@ -18182,11 +22768,14 @@ "eyes": "bored", "hat": "bayc hat red", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1529 + }, "metadata_dict": { "clothes": "black t", "mouth": "rage", @@ -18194,11 +22783,14 @@ "earring": "silver hoop", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1530 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", @@ -18206,11 +22798,14 @@ "hat": "fez", "fur": "pink", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1531 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "black t", @@ -18218,11 +22813,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1532 + }, "metadata_dict": { "background": "aquamarine", "eyes": "sleepy", @@ -18230,11 +22828,14 @@ "clothes": "hip hop", "mouth": "bored cigar", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1533 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin diamond grill", @@ -18243,11 +22844,14 @@ "hat": "army hat", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1534 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "robot", @@ -18255,11 +22859,14 @@ "background": "orange", "hat": "faux hawk", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1535 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "sushi chef headband", @@ -18267,22 +22874,28 @@ "fur": "cheetah", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1536 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "phoneme ooo", "fur": "black", "background": "orange", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1537 + }, "metadata_dict": { "fur": "brown", "background": "purple", @@ -18290,11 +22903,14 @@ "clothes": "tanktop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1538 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", @@ -18302,11 +22918,14 @@ "mouth": "bored pizza", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1539 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -18314,11 +22933,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1540 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "small grin", @@ -18326,33 +22948,42 @@ "fur": "brown", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1541 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", "fur": "golden brown", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1542 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", "fur": "dark brown", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1543 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -18361,11 +22992,14 @@ "hat": "safari", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1544 + }, "metadata_dict": { "eyes": "closed", "fur": "brown", @@ -18373,11 +23007,14 @@ "hat": "cowboy hat", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1545 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -18386,11 +23023,14 @@ "hat": "spinner hat", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1546 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "bandolier", @@ -18398,11 +23038,14 @@ "earring": "gold hoop", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1547 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -18410,11 +23053,14 @@ "clothes": "hawaiian", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1548 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "scumbag", @@ -18422,11 +23068,14 @@ "background": "aquamarine", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1549 + }, "metadata_dict": { "clothes": "sleeveless logo t", "eyes": "3d", @@ -18434,11 +23083,14 @@ "fur": "brown", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1550 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -18446,11 +23098,14 @@ "hat": "fisherman's hat", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1551 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", @@ -18458,11 +23113,14 @@ "background": "blue", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1552 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "gold hoop", @@ -18470,22 +23128,28 @@ "hat": "cowboy hat", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1553 + }, "metadata_dict": { "fur": "blue", "clothes": "bone tee", "mouth": "grin", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1554 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -18493,11 +23157,14 @@ "background": "yellow", "hat": "beanie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1555 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "black t", @@ -18506,11 +23173,14 @@ "hat": "bayc hat red", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1556 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "gray", @@ -18518,11 +23188,14 @@ "hat": "bayc flipped brim", "clothes": "toga", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1557 + }, "metadata_dict": { "background": "blue", "fur": "pink", @@ -18530,11 +23203,14 @@ "eyes": "bored", "hat": "girl's hair short", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1558 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "dark brown", @@ -18542,44 +23218,56 @@ "background": "yellow", "hat": "police motorcycle helmet", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1559 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", "mouth": "grin", "hat": "army hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1560 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "mouth": "bored unshaven", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1561 + }, "metadata_dict": { "eyes": "closed", "clothes": "prison jumpsuit", "background": "aquamarine", "fur": "pink", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1562 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -18588,11 +23276,14 @@ "hat": "fez", "earring": "gold stud", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1563 + }, "metadata_dict": { "background": "gray", "eyes": "bored", @@ -18600,11 +23291,14 @@ "clothes": "admirals coat", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1564 + }, "metadata_dict": { "background": "new punk blue", "fur": "brown", @@ -18612,11 +23306,14 @@ "mouth": "bored", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1565 + }, "metadata_dict": { "clothes": "bayc t black", "hat": "bayc flipped brim", @@ -18624,11 +23321,14 @@ "mouth": "bored", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1566 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "grin", @@ -18637,43 +23337,55 @@ "earring": "silver hoop", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1567 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", "mouth": "dumbfounded", "background": "blue", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1568 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "fur": "tan", "background": "blue", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1569 + }, "metadata_dict": { "background": "aquamarine", "fur": "golden brown", "eyes": "bored", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1570 + }, "metadata_dict": { "mouth": "grin", "clothes": "rainbow suspenders", @@ -18681,22 +23393,28 @@ "hat": "commie hat", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1571 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", "fur": "dark brown", "eyes": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1572 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -18705,11 +23423,14 @@ "earring": "silver stud", "hat": "cowboy hat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1573 + }, "metadata_dict": { "background": "gray", "earring": "gold hoop", @@ -18717,11 +23438,14 @@ "fur": "brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1574 + }, "metadata_dict": { "clothes": "black t", "mouth": "dumbfounded", @@ -18729,11 +23453,14 @@ "fur": "black", "eyes": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1575 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -18741,11 +23468,14 @@ "background": "orange", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1576 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -18753,11 +23483,14 @@ "fur": "cream", "hat": "girl's hair pink", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1577 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -18765,11 +23498,14 @@ "hat": "bowler", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1578 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -18777,11 +23513,14 @@ "clothes": "black t", "hat": "short mohawk", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1579 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -18789,11 +23528,14 @@ "clothes": "sailor shirt", "hat": "cowboy hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1580 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -18802,22 +23544,28 @@ "mouth": "bored", "hat": "cowboy hat", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1581 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "rainbow suspenders", "fur": "black", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1582 + }, "metadata_dict": { "fur": "tan", "mouth": "dumbfounded", @@ -18825,11 +23573,14 @@ "eyes": "bored", "hat": "fisherman's hat", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1583 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -18837,22 +23588,28 @@ "hat": "beanie", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1584 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", "eyes": "zombie", "mouth": "bored bubblegum", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1585 + }, "metadata_dict": { "fur": "cream", "clothes": "lumberjack shirt", @@ -18860,11 +23617,14 @@ "eyes": "angry", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1586 + }, "metadata_dict": { "eyes": "x eyes", "hat": "horns", @@ -18872,11 +23632,14 @@ "background": "aquamarine", "mouth": "jovial", "fur": "pink" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1587 + }, "metadata_dict": { "hat": "girl's hair short", "background": "aquamarine", @@ -18885,22 +23648,28 @@ "clothes": "lab coat", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1588 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "pink", "background": "purple", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1589 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", @@ -18908,22 +23677,28 @@ "clothes": "bone necklace", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1590 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", "fur": "black", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1591 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -18931,22 +23706,28 @@ "background": "gray", "hat": "bowler", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1592 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "blue dress", "fur": "dark brown", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1593 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -18954,11 +23735,14 @@ "fur": "brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1594 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "seaman's hat", @@ -18966,22 +23750,28 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1595 + }, "metadata_dict": { "fur": "gray", "background": "blue", "eyes": "sleepy", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1596 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -18989,11 +23779,14 @@ "eyes": "bored", "hat": "bowler", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1597 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bayc flipped brim", @@ -19001,11 +23794,14 @@ "fur": "cheetah", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1598 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "grin multicolored", @@ -19013,11 +23809,14 @@ "fur": "pink", "hat": "short mohawk", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1599 + }, "metadata_dict": { "eyes": "heart", "hat": "spinner hat", @@ -19025,22 +23824,28 @@ "background": "orange", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1600 + }, "metadata_dict": { "fur": "golden brown", "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1601 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "bayc hat black", @@ -19048,11 +23853,14 @@ "mouth": "grin", "earring": "gold hoop", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1602 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -19061,22 +23869,28 @@ "earring": "silver hoop", "hat": "bunny ears", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1603 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "gray", "hat": "king's crown", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1604 + }, "metadata_dict": { "eyes": "heart", "hat": "sushi chef headband", @@ -19084,11 +23898,14 @@ "fur": "pink", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1605 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -19096,11 +23913,14 @@ "earring": "silver hoop", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1606 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -19108,11 +23928,14 @@ "clothes": "pimp coat", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1607 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -19121,22 +23944,28 @@ "eyes": "bored", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1608 + }, "metadata_dict": { "background": "aquamarine", "hat": "short mohawk", "mouth": "small grin", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1609 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -19144,11 +23973,14 @@ "background": "aquamarine", "hat": "vietnam era helmet", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1610 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -19157,11 +23989,14 @@ "eyes": "3d", "hat": "short mohawk", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1611 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -19170,33 +24005,42 @@ "background": "orange", "eyes": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1612 + }, "metadata_dict": { "eyes": "bloodshot", "fur": "noise", "hat": "short mohawk", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1613 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "clothes": "sleeveless t", "mouth": "jovial", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1614 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "gray", @@ -19205,11 +24049,14 @@ "hat": "bunny ears", "earring": "cross", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1615 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "zombie", @@ -19218,11 +24065,14 @@ "background": "gray", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1616 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "bored unshaven pipe", @@ -19230,11 +24080,14 @@ "fur": "dark brown", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1617 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", @@ -19242,22 +24095,28 @@ "clothes": "sleeveless logo t", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1618 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", "eyes": "bored", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1619 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "dark brown", @@ -19265,21 +24124,27 @@ "clothes": "admirals coat", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1620 + }, "metadata_dict": { "fur": "red", "background": "yellow", "mouth": "bored unshaven", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1621 + }, "metadata_dict": { "eyes": "x eyes", "earring": "gold hoop", @@ -19287,11 +24152,14 @@ "background": "blue", "fur": "dark brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1622 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -19300,11 +24168,14 @@ "clothes": "bayc t black", "earring": "silver hoop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1623 + }, "metadata_dict": { "earring": "silver hoop", "background": "yellow", @@ -19312,11 +24183,14 @@ "mouth": "bored", "fur": "robot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1624 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin", @@ -19324,11 +24198,14 @@ "clothes": "sailor shirt", "background": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1625 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -19336,21 +24213,27 @@ "fur": "gray", "eyes": "3d", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1626 + }, "metadata_dict": { "background": "blue", "mouth": "bored cigarette", "fur": "white", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1627 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -19359,11 +24242,14 @@ "hat": "army hat", "mouth": "phoneme wah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1628 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", @@ -19371,11 +24257,14 @@ "eyes": "bloodshot", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1629 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", @@ -19383,11 +24272,14 @@ "eyes": "bloodshot", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1630 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "diamond stud", @@ -19396,11 +24288,14 @@ "fur": "cheetah", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1631 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -19409,22 +24304,28 @@ "background": "gray", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1632 + }, "metadata_dict": { "fur": "golden brown", "mouth": "jovial", "background": "blue", "eyes": "3d", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1633 + }, "metadata_dict": { "clothes": "rainbow suspenders", "eyes": "bored", @@ -19432,11 +24333,14 @@ "hat": "bowler", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1634 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -19444,11 +24348,14 @@ "clothes": "leather jacket", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1635 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -19457,11 +24364,14 @@ "fur": "black", "eyes": "bored", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1636 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", @@ -19470,11 +24380,14 @@ "clothes": "leather jacket", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1637 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "bored", @@ -19483,11 +24396,14 @@ "fur": "death bot", "earring": "cross", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1638 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", @@ -19495,11 +24411,14 @@ "mouth": "small grin", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1639 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "cream", @@ -19507,11 +24426,14 @@ "hat": "faux hawk", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1640 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "beanie", @@ -19519,33 +24441,42 @@ "eyes": "bored", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1641 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "hat": "army hat", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1642 + }, "metadata_dict": { "eyes": "wide eyed", "mouth": "phoneme vuh", "fur": "brown", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1643 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "fez", @@ -19553,11 +24484,14 @@ "fur": "black", "eyes": "bloodshot", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1644 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", @@ -19565,11 +24499,14 @@ "background": "aquamarine", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1645 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "beanie", @@ -19577,11 +24514,14 @@ "clothes": "prom dress", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1646 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "s&m hat", @@ -19590,11 +24530,14 @@ "background": "orange", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1647 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -19602,22 +24545,28 @@ "clothes": "leather jacket", "hat": "army hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1648 + }, "metadata_dict": { "eyes": "holographic", "mouth": "phoneme ooo", "fur": "black", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1649 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", @@ -19625,11 +24574,14 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1650 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -19637,11 +24589,14 @@ "hat": "bayc flipped brim", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1651 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", @@ -19649,11 +24604,14 @@ "clothes": "sleeveless logo t", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1652 + }, "metadata_dict": { "fur": "golden brown", "hat": "king's crown", @@ -19662,11 +24620,14 @@ "background": "blue", "eyes": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1653 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -19675,11 +24636,14 @@ "earring": "silver hoop", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1654 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -19687,11 +24651,14 @@ "hat": "fez", "earring": "silver stud", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1655 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", @@ -19699,11 +24666,14 @@ "hat": "bayc flipped brim", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1656 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "dmt", @@ -19712,11 +24682,14 @@ "eyes": "3d", "hat": "fisherman's hat", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1657 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "cream", @@ -19724,22 +24697,28 @@ "mouth": "bored bubblegum", "hat": "spinner hat", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1658 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "tan", "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1659 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -19747,11 +24726,14 @@ "fur": "brown", "clothes": "bone necklace", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1660 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "sleeveless t", @@ -19759,11 +24741,14 @@ "hat": "baby's bonnet", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1661 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black t", @@ -19771,11 +24756,14 @@ "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1662 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -19784,33 +24772,42 @@ "eyes": "bored", "earring": "silver hoop", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1663 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored party horn", "clothes": "tie dye", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1664 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "fur": "cheetah", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1665 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "bloodshot", @@ -19818,11 +24815,14 @@ "hat": "beanie", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1666 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -19831,11 +24831,14 @@ "hat": "bayc flipped brim", "clothes": "tanktop", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1667 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -19844,22 +24847,28 @@ "hat": "cowboy hat", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1668 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "phoneme ooo", "clothes": "sailor shirt", "background": "orange", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1669 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "hypnotized", @@ -19868,11 +24877,14 @@ "background": "aquamarine", "fur": "brown", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1670 + }, "metadata_dict": { "clothes": "tweed suit", "fur": "black", @@ -19880,33 +24892,42 @@ "hat": "girl's hair short", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1671 + }, "metadata_dict": { "background": "blue", "hat": "girl's hair short", "fur": "cheetah", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1672 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t black", "fur": "cheetah", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1673 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -19915,11 +24936,14 @@ "fur": "brown", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1674 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "black suit", @@ -19927,43 +24951,55 @@ "fur": "black", "eyes": "bloodshot", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1675 + }, "metadata_dict": { "background": "aquamarine", "hat": "spinner hat", "fur": "pink", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1676 + }, "metadata_dict": { "eyes": "scumbag", "background": "aquamarine", "hat": "bowler", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1677 + }, "metadata_dict": { "background": "aquamarine", "mouth": "phoneme oh", "eyes": "scumbag", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1678 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "phoneme vuh", @@ -19971,11 +25007,14 @@ "fur": "cheetah", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1679 + }, "metadata_dict": { "fur": "brown", "earring": "silver stud", @@ -19984,11 +25023,14 @@ "background": "purple", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1680 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -19997,11 +25039,14 @@ "clothes": "biker vest", "fur": "white", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1681 + }, "metadata_dict": { "fur": "tan", "clothes": "tie dye", @@ -20009,22 +25054,28 @@ "background": "purple", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1682 + }, "metadata_dict": { "background": "gray", "fur": "cheetah", "hat": "beanie", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1683 + }, "metadata_dict": { "mouth": "rage", "clothes": "work vest", @@ -20032,22 +25083,28 @@ "fur": "dark brown", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1684 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", "eyes": "robot", "background": "orange", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1685 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -20055,11 +25112,14 @@ "hat": "beanie", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1686 + }, "metadata_dict": { "fur": "cream", "eyes": "zombie", @@ -20067,11 +25127,14 @@ "mouth": "rage", "background": "blue", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1687 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "leather jacket", @@ -20079,22 +25142,28 @@ "hat": "commie hat", "mouth": "bored cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1688 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", "hat": "army hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1689 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -20103,11 +25172,14 @@ "hat": "fisherman's hat", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1690 + }, "metadata_dict": { "mouth": "grin", "hat": "baby's bonnet", @@ -20115,11 +25187,14 @@ "background": "orange", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1691 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "tongue out", @@ -20128,11 +25203,14 @@ "eyes": "bored", "hat": "army hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1692 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -20140,11 +25218,14 @@ "clothes": "sailor shirt", "background": "blue", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1693 + }, "metadata_dict": { "fur": "tan", "hat": "girl's hair pink", @@ -20152,11 +25233,14 @@ "eyes": "bored", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1694 + }, "metadata_dict": { "eyes": "heart", "clothes": "wool turtleneck", @@ -20165,11 +25249,14 @@ "fur": "pink", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1695 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -20177,11 +25264,14 @@ "hat": "fisherman's hat", "fur": "cheetah", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1696 + }, "metadata_dict": { "hat": "stuntman helmet", "background": "blue", @@ -20189,11 +25279,14 @@ "eyes": "3d", "clothes": "tie dye", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1697 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "laurel wreath", @@ -20201,11 +25294,14 @@ "fur": "white", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1698 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -20213,11 +25309,14 @@ "hat": "fisherman's hat", "mouth": "bored unshaven cigarette", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1699 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "grin", @@ -20225,11 +25324,14 @@ "hat": "short mohawk", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1700 + }, "metadata_dict": { "eyes": "closed", "mouth": "rage", @@ -20237,11 +25339,14 @@ "background": "blue", "fur": "black", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1701 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -20250,11 +25355,14 @@ "eyes": "bloodshot", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1702 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -20262,11 +25370,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1703 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -20274,22 +25385,28 @@ "earring": "gold stud", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1704 + }, "metadata_dict": { "eyes": "coins", "earring": "silver stud", "mouth": "jovial", "background": "blue", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1705 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "coins", @@ -20297,33 +25414,42 @@ "background": "purple", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1706 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "hat": "party hat 1", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1707 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "mouth": "small grin", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1708 + }, "metadata_dict": { "earring": "diamond stud", "eyes": "robot", @@ -20331,44 +25457,56 @@ "background": "orange", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1709 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "dumbfounded", "fur": "brown", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1710 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "red", "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1711 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", "background": "orange", "mouth": "tongue out", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1712 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -20377,11 +25515,14 @@ "hat": "faux hawk", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1713 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -20389,22 +25530,28 @@ "hat": "fisherman's hat", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1714 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "clothes": "leather punk jacket", "mouth": "bored bubblegum", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1715 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -20412,11 +25559,14 @@ "hat": "seaman's hat", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1716 + }, "metadata_dict": { "hat": "irish boho", "fur": "brown", @@ -20425,33 +25575,42 @@ "earring": "silver hoop", "background": "gray", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1717 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "golden brown", "hat": "stuntman helmet", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1718 + }, "metadata_dict": { "fur": "brown", "eyes": "bloodshot", "mouth": "tongue out", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1719 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "scumbag", @@ -20459,11 +25618,14 @@ "background": "blue", "fur": "cheetah", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1720 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "silver stud", @@ -20472,11 +25634,14 @@ "hat": "cowboy hat", "clothes": "toga", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1721 + }, "metadata_dict": { "mouth": "discomfort", "fur": "dark brown", @@ -20484,11 +25649,14 @@ "hat": "vietnam era helmet", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1722 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -20496,22 +25664,28 @@ "eyes": "bloodshot", "earring": "silver hoop", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1723 + }, "metadata_dict": { "mouth": "jovial", "eyes": "bloodshot", "fur": "dark brown", "background": "purple", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1724 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -20520,11 +25694,14 @@ "fur": "pink", "hat": "commie hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1725 + }, "metadata_dict": { "eyes": "blue beams", "clothes": "sleeveless t", @@ -20532,22 +25709,28 @@ "mouth": "tongue out", "fur": "brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1726 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "solid gold", "background": "gray", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1727 + }, "metadata_dict": { "mouth": "grin", "clothes": "tie dye", @@ -20555,11 +25738,14 @@ "fur": "brown", "hat": "vietnam era helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1728 + }, "metadata_dict": { "earring": "silver stud", "background": "aquamarine", @@ -20568,11 +25754,14 @@ "eyes": "bored", "hat": "safari", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1729 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -20580,11 +25769,14 @@ "eyes": "3d", "fur": "pink", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1730 + }, "metadata_dict": { "earring": "silver stud", "background": "aquamarine", @@ -20593,11 +25785,14 @@ "mouth": "bored", "fur": "zombie", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1731 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "small grin", @@ -20605,11 +25800,14 @@ "background": "yellow", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1732 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -20617,11 +25815,14 @@ "eyes": "zombie", "clothes": "tuxedo tee", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1733 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -20629,22 +25830,28 @@ "fur": "black", "mouth": "tongue out", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1734 + }, "metadata_dict": { "hat": "faux hawk", "background": "aquamarine", "eyes": "bored", "fur": "solid gold", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1735 + }, "metadata_dict": { "clothes": "striped tee", "earring": "silver stud", @@ -20653,22 +25860,28 @@ "mouth": "tongue out", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1736 + }, "metadata_dict": { "fur": "tan", "eyes": "zombie", "earring": "gold hoop", "mouth": "bored pizza", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1737 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -20676,22 +25889,28 @@ "eyes": "coins", "mouth": "jovial", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1738 + }, "metadata_dict": { "hat": "fez", "mouth": "dumbfounded", "fur": "pink", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1739 + }, "metadata_dict": { "fur": "tan", "hat": "laurel wreath", @@ -20700,11 +25919,14 @@ "eyes": "bored", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1740 + }, "metadata_dict": { "clothes": "bandolier", "earring": "gold hoop", @@ -20712,11 +25934,14 @@ "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1741 + }, "metadata_dict": { "eyes": "zombie", "background": "aquamarine", @@ -20724,22 +25949,28 @@ "mouth": "small grin", "hat": "army hat", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1742 + }, "metadata_dict": { "background": "aquamarine", "eyes": "3d", "fur": "pink", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1743 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -20747,11 +25978,14 @@ "fur": "cream", "background": "orange", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1744 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -20759,22 +25993,28 @@ "earring": "silver hoop", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1745 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "clothes": "black holes t", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1746 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -20783,55 +26023,70 @@ "background": "yellow", "eyes": "bored", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1747 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", "mouth": "bored unshaven", "fur": "black", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1748 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "eyes": "bored", "clothes": "admirals coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1749 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", "hat": "short mohawk", "background": "gray", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1750 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "eyes": "3d", "fur": "dark brown", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1751 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless t", @@ -20839,33 +26094,42 @@ "background": "orange", "mouth": "bored unshaven cigar", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1752 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", "fur": "pink", "background": "orange", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1753 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", "background": "purple", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1754 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "dmt", @@ -20874,11 +26138,14 @@ "clothes": "stunt jacket", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1755 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "vietnam jacket", @@ -20886,11 +26153,14 @@ "hat": "cowboy hat", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1756 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -20898,11 +26168,14 @@ "clothes": "leather jacket", "fur": "dark brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1757 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -20910,11 +26183,14 @@ "fur": "brown", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1758 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "aquamarine", @@ -20922,22 +26198,28 @@ "fur": "pink", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1759 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "clothes": "tanktop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1760 + }, "metadata_dict": { "fur": "black", "eyes": "bloodshot", @@ -20945,22 +26227,28 @@ "background": "gray", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1761 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", "background": "aquamarine", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1762 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -20968,11 +26256,14 @@ "fur": "brown", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1763 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -20980,11 +26271,14 @@ "earring": "gold hoop", "eyes": "bored", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1764 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "phoneme ooo", @@ -20992,22 +26286,28 @@ "eyes": "bored", "fur": "cheetah", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1765 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", "background": "blue", "hat": "faux hawk", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1766 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "gray", @@ -21016,11 +26316,14 @@ "background": "blue", "hat": "bowler", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1767 + }, "metadata_dict": { "eyes": "zombie", "background": "blue", @@ -21028,11 +26331,14 @@ "hat": "short mohawk", "clothes": "tanktop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1768 + }, "metadata_dict": { "clothes": "space suit", "mouth": "phoneme vuh", @@ -21040,11 +26346,14 @@ "fur": "pink", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1769 + }, "metadata_dict": { "clothes": "sailor shirt", "earring": "silver stud", @@ -21053,11 +26362,14 @@ "hat": "short mohawk", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1770 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -21065,11 +26377,14 @@ "background": "purple", "hat": "safari", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1771 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -21077,11 +26392,14 @@ "hat": "party hat 1", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1772 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "zombie", @@ -21089,22 +26407,28 @@ "background": "blue", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1773 + }, "metadata_dict": { "background": "new punk blue", "hat": "girl's hair pink", "fur": "dark brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1774 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -21113,11 +26437,14 @@ "earring": "silver hoop", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1775 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -21125,11 +26452,14 @@ "hat": "short mohawk", "mouth": "bored unshaven kazoo", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1776 + }, "metadata_dict": { "fur": "tan", "clothes": "black t", @@ -21137,11 +26467,14 @@ "background": "gray", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1777 + }, "metadata_dict": { "clothes": "striped tee", "background": "gray", @@ -21150,11 +26483,14 @@ "eyes": "bloodshot", "fur": "cheetah", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1778 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "sunglasses", @@ -21162,11 +26498,14 @@ "clothes": "bayc t black", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1779 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme ooo", @@ -21175,11 +26514,14 @@ "background": "yellow", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1780 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", @@ -21188,22 +26530,28 @@ "earring": "gold stud", "hat": "vietnam era helmet", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1781 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin", "hat": "king's crown", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1782 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -21211,11 +26559,14 @@ "eyes": "3d", "clothes": "toga", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1783 + }, "metadata_dict": { "fur": "tan", "hat": "horns", @@ -21223,32 +26574,41 @@ "clothes": "leather jacket", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1784 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "closed", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1785 + }, "metadata_dict": { "hat": "irish boho", "background": "aquamarine", "fur": "dark brown", "eyes": "bored", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1786 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "biker vest", @@ -21257,32 +26617,41 @@ "fur": "brown", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1787 + }, "metadata_dict": { "background": "blue", "fur": "tan", "mouth": "bored cigarette", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1788 + }, "metadata_dict": { "clothes": "service", "background": "orange", "fur": "brown", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1789 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "space suit", @@ -21291,11 +26660,14 @@ "background": "gray", "hat": "cowboy hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1790 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -21303,11 +26675,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1791 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -21315,11 +26690,14 @@ "hat": "baby's bonnet", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1792 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "prussian helmet", @@ -21327,22 +26705,28 @@ "clothes": "navy striped tee", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1793 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", "clothes": "black holes t", "mouth": "phoneme ooo", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1794 + }, "metadata_dict": { "mouth": "rage", "eyes": "bored", @@ -21350,11 +26734,14 @@ "background": "purple", "fur": "white", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1795 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "tanktop", @@ -21362,11 +26749,14 @@ "background": "gray", "hat": "bowler", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1796 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "s&m hat", @@ -21375,11 +26765,14 @@ "fur": "dark brown", "clothes": "lab coat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1797 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -21387,11 +26780,14 @@ "earring": "silver hoop", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1798 + }, "metadata_dict": { "hat": "irish boho", "mouth": "phoneme vuh", @@ -21399,11 +26795,14 @@ "background": "orange", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1799 + }, "metadata_dict": { "eyes": "coins", "clothes": "prison jumpsuit", @@ -21411,11 +26810,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1800 + }, "metadata_dict": { "eyes": "zombie", "fur": "gray", @@ -21424,11 +26826,14 @@ "background": "gray", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1801 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -21436,43 +26841,55 @@ "eyes": "bored", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1802 + }, "metadata_dict": { "background": "yellow", "eyes": "coins", "mouth": "bored", "fur": "tan" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1803 + }, "metadata_dict": { "background": "blue", "mouth": "bored bubblegum", "fur": "noise", "eyes": "crazy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1804 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "eyes": "coins", "clothes": "sailor shirt", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1805 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "3d", @@ -21480,11 +26897,14 @@ "fur": "cheetah", "hat": "beanie", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1806 + }, "metadata_dict": { "fur": "brown", "clothes": "bayc t black", @@ -21492,11 +26912,14 @@ "background": "gray", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1807 + }, "metadata_dict": { "eyes": "heart", "clothes": "lumberjack shirt", @@ -21504,22 +26927,28 @@ "fur": "dark brown", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1808 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", "mouth": "dumbfounded", "background": "orange", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1809 + }, "metadata_dict": { "hat": "s&m hat", "background": "orange", @@ -21527,11 +26956,14 @@ "clothes": "biker vest", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1810 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "black holes t", @@ -21539,21 +26971,27 @@ "fur": "red", "background": "aquamarine", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1811 + }, "metadata_dict": { "background": "orange", "fur": "cream", "eyes": "bored", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1812 + }, "metadata_dict": { "eyes": "heart", "clothes": "tanktop", @@ -21561,11 +26999,14 @@ "hat": "bunny ears", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1813 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -21573,11 +27014,14 @@ "clothes": "sailor shirt", "earring": "gold stud", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1814 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -21585,11 +27029,14 @@ "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1815 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -21597,22 +27044,28 @@ "background": "gray", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1816 + }, "metadata_dict": { "fur": "black", "background": "orange", "hat": "short mohawk", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1817 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", @@ -21620,11 +27073,14 @@ "background": "aquamarine", "clothes": "tuxedo tee", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1818 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", @@ -21632,22 +27088,28 @@ "eyes": "bored", "hat": "bunny ears", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1819 + }, "metadata_dict": { "background": "gray", "fur": "golden brown", "mouth": "dumbfounded", "clothes": "tanktop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1820 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sea captain's hat", @@ -21655,11 +27117,14 @@ "clothes": "hip hop", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1821 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "silver stud", @@ -21668,21 +27133,27 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1822 + }, "metadata_dict": { "background": "aquamarine", "mouth": "discomfort", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1823 + }, "metadata_dict": { "mouth": "tongue out", "background": "blue", @@ -21690,33 +27161,42 @@ "hat": "fisherman's hat", "clothes": "admirals coat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1824 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "background": "blue", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1825 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", "mouth": "rage", "background": "aquamarine", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1826 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -21724,22 +27204,28 @@ "hat": "beanie", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1827 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", "background": "aquamarine", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1828 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tie dye", @@ -21747,22 +27233,28 @@ "hat": "fisherman's hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1829 + }, "metadata_dict": { "eyes": "x eyes", "fur": "gray", "mouth": "bored party horn", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1830 + }, "metadata_dict": { "hat": "irish boho", "eyes": "robot", @@ -21770,11 +27262,14 @@ "background": "gray", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1831 + }, "metadata_dict": { "hat": "irish boho", "mouth": "dumbfounded", @@ -21782,11 +27277,14 @@ "clothes": "stunt jacket", "fur": "death bot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1832 + }, "metadata_dict": { "mouth": "grin", "fur": "dmt", @@ -21794,11 +27292,14 @@ "background": "aquamarine", "eyes": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1833 + }, "metadata_dict": { "mouth": "bored cigarette", "clothes": "smoking jacket", @@ -21806,22 +27307,28 @@ "background": "purple", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1834 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme vuh", "background": "purple", "eyes": "crazy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1835 + }, "metadata_dict": { "earring": "silver stud", "hat": "spinner hat", @@ -21829,11 +27336,14 @@ "fur": "noise", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1836 + }, "metadata_dict": { "fur": "brown", "earring": "silver stud", @@ -21842,11 +27352,14 @@ "eyes": "bored", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1837 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -21854,11 +27367,14 @@ "hat": "short mohawk", "fur": "solid gold", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1838 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "blindfold", @@ -21867,11 +27383,14 @@ "background": "blue", "fur": "dark brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1839 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "work vest", @@ -21879,11 +27398,14 @@ "fur": "pink", "eyes": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1840 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -21892,11 +27414,14 @@ "fur": "black", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1841 + }, "metadata_dict": { "hat": "party hat 2", "fur": "black", @@ -21904,11 +27429,14 @@ "clothes": "toga", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1842 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored pipe", @@ -21916,44 +27444,56 @@ "earring": "silver hoop", "clothes": "bone necklace", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1843 + }, "metadata_dict": { "hat": "horns", "mouth": "phoneme ooo", "fur": "gray", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1844 + }, "metadata_dict": { "eyes": "holographic", "mouth": "grin", "clothes": "tweed suit", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1845 + }, "metadata_dict": { "mouth": "bored unshaven kazoo", "earring": "silver hoop", "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1846 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -21961,22 +27501,28 @@ "eyes": "scumbag", "fur": "gray", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1847 + }, "metadata_dict": { "clothes": "striped tee", "fur": "dark brown", "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1848 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "prison jumpsuit", @@ -21984,22 +27530,28 @@ "eyes": "3d", "fur": "brown", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1849 + }, "metadata_dict": { "fur": "cream", "mouth": "dumbfounded", "background": "yellow", "eyes": "crazy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1850 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bandolier", @@ -22008,22 +27560,28 @@ "eyes": "bloodshot", "earring": "silver hoop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1851 + }, "metadata_dict": { "mouth": "discomfort", "background": "aquamarine", "fur": "black", "hat": "beanie", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1852 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -22031,11 +27589,14 @@ "background": "blue", "hat": "short mohawk", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1853 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", @@ -22043,22 +27604,28 @@ "hat": "bowler", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1854 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bored", "mouth": "tongue out", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1855 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -22066,22 +27633,28 @@ "hat": "army hat", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1856 + }, "metadata_dict": { "fur": "black", "eyes": "bored", "hat": "bowler", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1857 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -22089,11 +27662,14 @@ "clothes": "cowboy shirt", "eyes": "bloodshot", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1858 + }, "metadata_dict": { "eyes": "hypnotized", "earring": "gold hoop", @@ -22102,11 +27678,14 @@ "clothes": "lab coat", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1859 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -22114,55 +27693,70 @@ "hat": "fez", "background": "orange", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1860 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "trippy captain's hat", "fur": "cream", "mouth": "dumbfounded", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1861 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", "eyes": "blue beams", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1862 + }, "metadata_dict": { "eyes": "coins", "mouth": "dumbfounded", "earring": "gold stud", "background": "gray", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1863 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", "clothes": "black t", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1864 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme oh", @@ -22170,32 +27764,41 @@ "eyes": "3d", "clothes": "smoking jacket", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1865 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven cigar", "eyes": "sleepy", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1866 + }, "metadata_dict": { "fur": "brown", "background": "blue", "eyes": "bored", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1867 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -22203,11 +27806,14 @@ "eyes": "coins", "clothes": "sailor shirt", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1868 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -22215,11 +27821,14 @@ "hat": "horns", "background": "orange", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1869 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -22228,11 +27837,14 @@ "fur": "dark brown", "clothes": "sleeveless logo t", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1870 + }, "metadata_dict": { "mouth": "phoneme wah", "hat": "horns", @@ -22240,22 +27852,28 @@ "eyes": "bloodshot", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1871 + }, "metadata_dict": { "eyes": "bored", "fur": "brown", "mouth": "bored cigarette", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1872 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "yellow", @@ -22264,22 +27882,28 @@ "earring": "silver hoop", "clothes": "tanktop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1873 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin multicolored", "eyes": "bored", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1874 + }, "metadata_dict": { "clothes": "tweed suit", "fur": "red", @@ -22287,11 +27911,14 @@ "hat": "bayc flipped brim", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1875 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "spinner hat", @@ -22299,11 +27926,14 @@ "eyes": "bored", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1876 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -22312,22 +27942,28 @@ "clothes": "toga", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1877 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "hat": "horns", "mouth": "dumbfounded", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1878 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "holographic", @@ -22336,11 +27972,14 @@ "hat": "girl's hair short", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1879 + }, "metadata_dict": { "eyes": "heart", "mouth": "dumbfounded", @@ -22348,11 +27987,14 @@ "hat": "army hat", "background": "gray", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1880 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "phoneme ooo", @@ -22360,11 +28002,14 @@ "fur": "dark brown", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1881 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -22372,11 +28017,14 @@ "clothes": "lab coat", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1882 + }, "metadata_dict": { "fur": "trippy", "earring": "gold hoop", @@ -22384,11 +28032,14 @@ "clothes": "toga", "mouth": "phoneme wah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1883 + }, "metadata_dict": { "clothes": "striped tee", "background": "aquamarine", @@ -22396,33 +28047,42 @@ "fur": "dark brown", "mouth": "small grin", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1884 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "trippy", "background": "aquamarine", "eyes": "sleepy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1885 + }, "metadata_dict": { "eyes": "zombie", "mouth": "dumbfounded", "fur": "black", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1886 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -22430,22 +28090,28 @@ "background": "blue", "eyes": "bloodshot", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1887 + }, "metadata_dict": { "eyes": "closed", "background": "yellow", "clothes": "stunt jacket", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1888 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", @@ -22453,22 +28119,28 @@ "background": "aquamarine", "eyes": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1889 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "coins", "fur": "red", "background": "aquamarine", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1890 + }, "metadata_dict": { "eyes": "holographic", "clothes": "lumberjack shirt", @@ -22476,11 +28148,14 @@ "fur": "pink", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1891 + }, "metadata_dict": { "hat": "irish boho", "background": "aquamarine", @@ -22488,22 +28163,28 @@ "fur": "pink", "clothes": "toga", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1892 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "bandolier", "fur": "tan", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1893 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -22511,11 +28192,14 @@ "clothes": "rainbow suspenders", "mouth": "bored pipe", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1894 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -22523,11 +28207,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1895 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -22536,11 +28223,14 @@ "fur": "black", "background": "orange", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1896 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "trippy captain's hat", @@ -22548,11 +28238,14 @@ "fur": "black", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1897 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "phoneme vuh", @@ -22560,11 +28253,14 @@ "fur": "dark brown", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1898 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -22573,11 +28269,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1899 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "prison jumpsuit", @@ -22586,11 +28285,14 @@ "earring": "silver hoop", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1900 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -22599,11 +28301,14 @@ "mouth": "small grin", "clothes": "sleeveless logo t", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1901 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "hawaiian", @@ -22612,11 +28317,14 @@ "eyes": "sleepy", "hat": "commie hat", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1902 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "cream", @@ -22624,11 +28332,14 @@ "clothes": "sailor shirt", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1903 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "hypnotized", @@ -22636,11 +28347,14 @@ "background": "blue", "hat": "cowboy hat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1904 + }, "metadata_dict": { "mouth": "grin", "hat": "prussian helmet", @@ -22648,11 +28362,14 @@ "clothes": "bayc t black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1905 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -22661,11 +28378,14 @@ "earring": "silver hoop", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1906 + }, "metadata_dict": { "hat": "seaman's hat", "background": "orange", @@ -22673,11 +28393,14 @@ "eyes": "bloodshot", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1907 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -22685,11 +28408,14 @@ "fur": "cheetah", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1908 + }, "metadata_dict": { "hat": "irish boho", "clothes": "sleeveless t", @@ -22698,11 +28424,14 @@ "earring": "gold hoop", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1909 + }, "metadata_dict": { "fur": "cream", "hat": "sushi chef headband", @@ -22710,22 +28439,28 @@ "eyes": "robot", "clothes": "admirals coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1910 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "black t", "fur": "brown", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1911 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "robot", @@ -22734,11 +28469,14 @@ "hat": "bunny ears", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1912 + }, "metadata_dict": { "fur": "robot", "earring": "silver stud", @@ -22747,11 +28485,14 @@ "background": "army green", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1913 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "black suit", @@ -22759,11 +28500,14 @@ "fur": "white", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1914 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -22771,11 +28515,14 @@ "hat": "bayc flipped brim", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1915 + }, "metadata_dict": { "hat": "girl's hair pink", "clothes": "guayabera", @@ -22783,11 +28530,14 @@ "mouth": "bored unshaven cigar", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1916 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "gray", @@ -22796,11 +28546,14 @@ "earring": "silver hoop", "clothes": "tanktop", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1917 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "prison jumpsuit", @@ -22808,11 +28561,14 @@ "fur": "death bot", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1918 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", @@ -22820,33 +28576,42 @@ "hat": "bowler", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1919 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored bubblegum", "eyes": "sleepy", "hat": "safari", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1920 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", "fur": "black", "eyes": "cyborg", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1921 + }, "metadata_dict": { "hat": "sea captain's hat", "background": "blue", @@ -22854,33 +28619,42 @@ "clothes": "biker vest", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1922 + }, "metadata_dict": { "fur": "cream", "clothes": "leather jacket", "background": "orange", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1923 + }, "metadata_dict": { "hat": "party hat 1", "mouth": "grin diamond grill", "fur": "brown", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1924 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "dumbfounded", @@ -22888,11 +28662,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1925 + }, "metadata_dict": { "fur": "golden brown", "earring": "diamond stud", @@ -22900,11 +28677,14 @@ "clothes": "guayabera", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1926 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -22912,11 +28692,14 @@ "mouth": "jovial", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1927 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "bayc t red", @@ -22924,32 +28707,41 @@ "mouth": "rage", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1928 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "dumbfounded", "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1929 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "mouth": "bored cigarette", "eyes": "hypnotized" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1930 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -22958,11 +28750,14 @@ "background": "blue", "fur": "black", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1931 + }, "metadata_dict": { "mouth": "grin multicolored", "hat": "bayc flipped brim", @@ -22971,11 +28766,14 @@ "background": "gray", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1932 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "dumbfounded", @@ -22983,22 +28781,28 @@ "eyes": "sleepy", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1933 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "mouth": "dumbfounded", "fur": "dark brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1934 + }, "metadata_dict": { "mouth": "bored unshaven kazoo", "fur": "dark brown", @@ -23006,11 +28810,14 @@ "hat": "bowler", "eyes": "sleepy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1935 + }, "metadata_dict": { "mouth": "bored bubblegum", "clothes": "biker vest", @@ -23018,11 +28825,14 @@ "background": "yellow", "hat": "bunny ears", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1936 + }, "metadata_dict": { "fur": "gray", "earring": "silver stud", @@ -23030,22 +28840,28 @@ "clothes": "leather jacket", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1937 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", "eyes": "zombie", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1938 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -23054,11 +28870,14 @@ "earring": "silver hoop", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1939 + }, "metadata_dict": { "fur": "cream", "clothes": "black holes t", @@ -23066,11 +28885,14 @@ "background": "gray", "mouth": "phoneme wah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1940 + }, "metadata_dict": { "fur": "tan", "background": "aquamarine", @@ -23078,11 +28900,14 @@ "mouth": "bored", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1941 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -23091,11 +28916,14 @@ "background": "orange", "hat": "army hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1942 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -23103,11 +28931,14 @@ "background": "blue", "clothes": "tanktop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1943 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -23115,22 +28946,28 @@ "hat": "bowler", "clothes": "stunt jacket", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1944 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", "mouth": "dumbfounded", "eyes": "robot", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1945 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -23139,11 +28976,14 @@ "clothes": "guayabera", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1946 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", @@ -23151,11 +28991,14 @@ "hat": "commie hat", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1947 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -23163,11 +29006,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1948 + }, "metadata_dict": { "hat": "s&m hat", "fur": "gray", @@ -23175,11 +29021,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1949 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "gold stud", @@ -23188,33 +29037,42 @@ "mouth": "bored", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1950 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", "eyes": "bloodshot", "fur": "dark brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1951 + }, "metadata_dict": { "mouth": "bored kazoo", "background": "aquamarine", "hat": "cowboy hat", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1952 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "brown", @@ -23223,22 +29081,28 @@ "background": "gray", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1953 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "dark brown", "clothes": "guayabera", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1954 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -23246,11 +29110,14 @@ "eyes": "bloodshot", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1955 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -23259,11 +29126,14 @@ "eyes": "bloodshot", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1956 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", @@ -23271,11 +29141,14 @@ "eyes": "3d", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1957 + }, "metadata_dict": { "clothes": "black t", "mouth": "bored unshaven pipe", @@ -23283,33 +29156,42 @@ "eyes": "bored", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1958 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "coins", "mouth": "tongue out", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1959 + }, "metadata_dict": { "hat": "irish boho", "background": "orange", "mouth": "tongue out", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1960 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", @@ -23318,11 +29200,14 @@ "mouth": "dumbfounded", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1961 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -23330,11 +29215,14 @@ "clothes": "work vest", "fur": "black", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1962 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "silver stud", @@ -23343,21 +29231,27 @@ "hat": "bayc flipped brim", "fur": "white", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1963 + }, "metadata_dict": { "fur": "tan", "mouth": "bored", "eyes": "coins", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1964 + }, "metadata_dict": { "hat": "bandana blue", "background": "gray", @@ -23365,22 +29259,28 @@ "mouth": "phoneme vuh", "eyes": "bored", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1965 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", "fur": "pink", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1966 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "blue", @@ -23388,11 +29288,14 @@ "mouth": "bored", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1967 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cheetah", @@ -23400,22 +29303,28 @@ "background": "gray", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1968 + }, "metadata_dict": { "fur": "dmt", "mouth": "dumbfounded", "hat": "girl's hair short", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1969 + }, "metadata_dict": { "mouth": "grin multicolored", "earring": "gold hoop", @@ -23424,11 +29333,14 @@ "hat": "beanie", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1970 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -23436,11 +29348,14 @@ "mouth": "grin", "clothes": "toga", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1971 + }, "metadata_dict": { "fur": "cream", "eyes": "blindfold", @@ -23448,11 +29363,14 @@ "background": "aquamarine", "hat": "army hat", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1972 + }, "metadata_dict": { "mouth": "grin", "clothes": "sailor shirt", @@ -23460,11 +29378,14 @@ "hat": "faux hawk", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1973 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold stud", @@ -23472,11 +29393,14 @@ "background": "purple", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1974 + }, "metadata_dict": { "background": "gray", "fur": "red", @@ -23485,11 +29409,14 @@ "mouth": "tongue out", "eyes": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1975 + }, "metadata_dict": { "clothes": "black t", "fur": "red", @@ -23497,22 +29424,28 @@ "hat": "safari", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1976 + }, "metadata_dict": { "eyes": "sleepy", "fur": "dark brown", "clothes": "tuxedo tee", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1977 + }, "metadata_dict": { "eyes": "closed", "clothes": "bayc t red", @@ -23520,11 +29453,14 @@ "background": "orange", "fur": "pink", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1978 + }, "metadata_dict": { "fur": "dmt", "earring": "silver stud", @@ -23532,11 +29468,14 @@ "eyes": "bored", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1979 + }, "metadata_dict": { "eyes": "closed", "hat": "stuntman helmet", @@ -23544,11 +29483,14 @@ "mouth": "bored", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1980 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "tweed suit", @@ -23556,11 +29498,14 @@ "fur": "dark brown", "hat": "girl's hair short", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1981 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -23569,11 +29514,14 @@ "hat": "vietnam era helmet", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1982 + }, "metadata_dict": { "clothes": "space suit", "hat": "baby's bonnet", @@ -23581,11 +29529,14 @@ "eyes": "bloodshot", "fur": "brown", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1983 + }, "metadata_dict": { "mouth": "bored party horn", "earring": "silver stud", @@ -23594,11 +29545,14 @@ "clothes": "leather jacket", "eyes": "sleepy", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1984 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", @@ -23606,11 +29560,14 @@ "fur": "pink", "earring": "gold stud", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1985 + }, "metadata_dict": { "hat": "sea captain's hat", "fur": "red", @@ -23618,11 +29575,14 @@ "background": "orange", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1986 + }, "metadata_dict": { "eyes": "heart", "hat": "seaman's hat", @@ -23630,11 +29590,14 @@ "fur": "cheetah", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1987 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -23642,11 +29605,14 @@ "mouth": "grin", "hat": "baby's bonnet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1988 + }, "metadata_dict": { "fur": "tan", "clothes": "work vest", @@ -23654,11 +29620,14 @@ "hat": "army hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1989 + }, "metadata_dict": { "mouth": "grin multicolored", "background": "orange", @@ -23666,11 +29635,14 @@ "hat": "vietnam era helmet", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1990 + }, "metadata_dict": { "fur": "tan", "clothes": "striped tee", @@ -23679,11 +29651,14 @@ "eyes": "bored", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1991 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "silver stud", @@ -23692,11 +29667,14 @@ "hat": "fisherman's hat", "background": "yellow", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1992 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "jovial", @@ -23704,11 +29682,14 @@ "background": "purple", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1993 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -23716,22 +29697,28 @@ "hat": "cowboy hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1994 + }, "metadata_dict": { "fur": "gray", "clothes": "cowboy shirt", "background": "yellow", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1995 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "aquamarine", @@ -23739,11 +29726,14 @@ "fur": "black", "clothes": "leather jacket", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1996 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -23751,11 +29741,14 @@ "clothes": "leather jacket", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1997 + }, "metadata_dict": { "fur": "brown", "clothes": "sailor shirt", @@ -23763,11 +29756,14 @@ "background": "gray", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1998 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -23775,11 +29771,14 @@ "earring": "silver hoop", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 1999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 1999 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "jovial", @@ -23787,11 +29786,14 @@ "fur": "red", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2000 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -23799,11 +29801,14 @@ "background": "orange", "clothes": "hip hop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2001 + }, "metadata_dict": { "eyes": "x eyes", "hat": "irish boho", @@ -23812,11 +29817,14 @@ "fur": "dark brown", "mouth": "tongue out", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2002 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven pipe", @@ -23824,22 +29832,28 @@ "clothes": "lab coat", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2003 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", "clothes": "sailor shirt", "background": "aquamarine", "mouth": "bored unshaven kazoo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2004 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "space suit", @@ -23848,22 +29862,28 @@ "hat": "party hat 1", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2005 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "robot", "background": "orange", "hat": "bayc flipped brim", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2006 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "leather punk jacket", @@ -23872,11 +29892,14 @@ "earring": "gold hoop", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2007 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "sushi chef headband", @@ -23884,33 +29907,42 @@ "eyes": "bored", "mouth": "phoneme wah", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2008 + }, "metadata_dict": { "mouth": "grin", "clothes": "bayc t black", "eyes": "bored", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2009 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "background": "aquamarine", "hat": "bayc flipped brim", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2010 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "fez", @@ -23918,22 +29950,28 @@ "background": "blue", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2011 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "guayabera", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2012 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "hypnotized", @@ -23941,11 +29979,14 @@ "fur": "dark brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2013 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "orange", @@ -23953,11 +29994,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2014 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -23965,22 +30009,28 @@ "hat": "bunny ears", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2015 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored unshaven bubblegum", "fur": "brown", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2016 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "diamond stud", @@ -23989,11 +30039,14 @@ "hat": "army hat", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2017 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "jovial", @@ -24001,22 +30054,28 @@ "fur": "dark brown", "hat": "vietnam era helmet", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2018 + }, "metadata_dict": { "mouth": "discomfort", "fur": "red", "background": "blue", "eyes": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2019 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", @@ -24025,11 +30084,14 @@ "earring": "diamond stud", "fur": "dark brown", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2020 + }, "metadata_dict": { "fur": "tan", "hat": "horns", @@ -24038,11 +30100,14 @@ "eyes": "bored", "mouth": "bored unshaven cigar", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2021 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -24050,11 +30115,14 @@ "clothes": "sailor shirt", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2022 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -24063,11 +30131,14 @@ "mouth": "bored", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2023 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -24075,11 +30146,14 @@ "eyes": "bored", "clothes": "admirals coat", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2024 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin diamond grill", @@ -24087,11 +30161,14 @@ "fur": "pink", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2025 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "brown", @@ -24099,11 +30176,14 @@ "hat": "fisherman's hat", "clothes": "admirals coat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2026 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", @@ -24111,11 +30191,14 @@ "hat": "short mohawk", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2027 + }, "metadata_dict": { "eyes": "x eyes", "hat": "sushi chef headband", @@ -24123,11 +30206,14 @@ "fur": "black", "clothes": "admirals coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2028 + }, "metadata_dict": { "eyes": "heart", "clothes": "black t", @@ -24135,11 +30221,14 @@ "fur": "dark brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2029 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "cheetah", @@ -24148,22 +30237,28 @@ "hat": "girl's hair short", "mouth": "bored unshaven cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2030 + }, "metadata_dict": { "background": "orange", "eyes": "sleepy", "mouth": "bored", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2031 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "wool turtleneck", @@ -24172,22 +30267,28 @@ "earring": "silver hoop", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2032 + }, "metadata_dict": { "hat": "fez", "background": "blue", "fur": "black", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2033 + }, "metadata_dict": { "mouth": "grin", "hat": "baby's bonnet", @@ -24195,22 +30296,28 @@ "eyes": "3d", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2034 + }, "metadata_dict": { "eyes": "zombie", "mouth": "dumbfounded", "fur": "red", "hat": "bayc hat red", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2035 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -24219,11 +30326,14 @@ "background": "purple", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2036 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "girl's hair pink", @@ -24231,11 +30341,14 @@ "eyes": "bored", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2037 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black holes t", @@ -24243,11 +30356,14 @@ "mouth": "jovial", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2038 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -24256,11 +30372,14 @@ "hat": "faux hawk", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2039 + }, "metadata_dict": { "eyes": "heart", "hat": "bandana blue", @@ -24268,11 +30387,14 @@ "fur": "pink", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2040 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -24280,11 +30402,14 @@ "hat": "cowboy hat", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2041 + }, "metadata_dict": { "fur": "gray", "mouth": "dumbfounded", @@ -24292,11 +30417,14 @@ "hat": "short mohawk", "clothes": "pimp coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2042 + }, "metadata_dict": { "background": "new punk blue", "hat": "baby's bonnet", @@ -24304,11 +30432,14 @@ "mouth": "bored pipe", "eyes": "bloodshot", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2043 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "golden brown", @@ -24317,11 +30448,14 @@ "earring": "silver hoop", "clothes": "toga", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2044 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", @@ -24329,11 +30463,14 @@ "eyes": "bored", "hat": "bowler", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2045 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -24341,11 +30478,14 @@ "mouth": "dumbfounded", "background": "blue", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2046 + }, "metadata_dict": { "background": "blue", "hat": "cowboy hat", @@ -24353,11 +30493,14 @@ "mouth": "bored cigarette", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2047 + }, "metadata_dict": { "hat": "horns", "clothes": "blue dress", @@ -24365,11 +30508,14 @@ "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2048 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cream", @@ -24378,11 +30524,14 @@ "eyes": "bloodshot", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2049 + }, "metadata_dict": { "mouth": "jovial", "clothes": "tuxedo tee", @@ -24390,11 +30539,14 @@ "earring": "silver hoop", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2050 + }, "metadata_dict": { "earring": "diamond stud", "mouth": "bored bubblegum", @@ -24402,11 +30554,14 @@ "background": "yellow", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2051 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "heart", @@ -24414,11 +30569,14 @@ "hat": "short mohawk", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2052 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "robot", @@ -24426,11 +30584,14 @@ "fur": "dark brown", "hat": "fisherman's hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2053 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "diamond stud", @@ -24438,11 +30599,14 @@ "background": "aquamarine", "eyes": "bloodshot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2054 + }, "metadata_dict": { "clothes": "black t", "earring": "gold stud", @@ -24451,11 +30615,14 @@ "hat": "bayc hat red", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2055 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -24463,11 +30630,14 @@ "fur": "dark brown", "hat": "girl's hair short", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2056 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -24475,22 +30645,28 @@ "hat": "army hat", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2057 + }, "metadata_dict": { "hat": "horns", "mouth": "small grin", "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2058 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -24499,11 +30675,14 @@ "background": "orange", "clothes": "bone necklace", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2059 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "scumbag", @@ -24511,11 +30690,14 @@ "mouth": "phoneme vuh", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2060 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -24523,11 +30705,14 @@ "hat": "bayc hat red", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2061 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "wide eyed", @@ -24535,11 +30720,14 @@ "fur": "black", "background": "orange", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2062 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", @@ -24547,11 +30735,14 @@ "eyes": "blue beams", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2063 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -24559,11 +30750,14 @@ "fur": "golden brown", "earring": "silver hoop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2064 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -24572,33 +30766,42 @@ "fur": "black", "background": "blue", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2065 + }, "metadata_dict": { "mouth": "jovial", "eyes": "3d", "fur": "brown", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2066 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", "eyes": "sleepy", "hat": "cowboy hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2067 + }, "metadata_dict": { "eyes": "closed", "hat": "party hat 1", @@ -24606,11 +30809,14 @@ "fur": "pink", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2068 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -24619,11 +30825,14 @@ "mouth": "small grin", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2069 + }, "metadata_dict": { "eyes": "blindfold", "hat": "irish boho", @@ -24631,11 +30840,14 @@ "fur": "dark brown", "clothes": "bayc t black", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2070 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "s&m hat", @@ -24643,11 +30855,14 @@ "background": "aquamarine", "fur": "pink", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2071 + }, "metadata_dict": { "background": "aquamarine", "hat": "spinner hat", @@ -24655,21 +30870,27 @@ "clothes": "toga", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2072 + }, "metadata_dict": { "background": "blue", "fur": "gray", "eyes": "blindfold", "mouth": "bored unshaven" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2073 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "pink", @@ -24678,55 +30899,70 @@ "earring": "cross", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2074 + }, "metadata_dict": { "clothes": "black holes t", "background": "gray", "mouth": "dumbfounded", "eyes": "3d", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2075 + }, "metadata_dict": { "mouth": "grin", "hat": "vietnam era helmet", "fur": "black", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2076 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", "background": "blue", "eyes": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2077 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored", "background": "army green", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2078 + }, "metadata_dict": { "clothes": "black t", "hat": "ww2 pilot helm", @@ -24734,22 +30970,28 @@ "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2079 + }, "metadata_dict": { "eyes": "zombie", "mouth": "jovial", "clothes": "tie dye", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2080 + }, "metadata_dict": { "hat": "prussian helmet", "fur": "black", @@ -24757,22 +30999,28 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2081 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "dark brown", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2082 + }, "metadata_dict": { "hat": "fez", "fur": "black", @@ -24781,11 +31029,14 @@ "earring": "silver hoop", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2083 + }, "metadata_dict": { "fur": "golden brown", "clothes": "tweed suit", @@ -24793,11 +31044,14 @@ "eyes": "robot", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2084 + }, "metadata_dict": { "mouth": "discomfort", "fur": "gray", @@ -24805,11 +31059,14 @@ "clothes": "tuxedo tee", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2085 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", @@ -24817,43 +31074,55 @@ "hat": "seaman's hat", "eyes": "3d", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2086 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", "clothes": "rainbow suspenders", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2087 + }, "metadata_dict": { "background": "purple", "eyes": "angry", "fur": "trippy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2088 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "dark brown", "eyes": "bored", "background": "gray", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2089 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "solid gold", @@ -24861,11 +31130,14 @@ "mouth": "bored", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2090 + }, "metadata_dict": { "fur": "cream", "earring": "gold hoop", @@ -24873,11 +31145,14 @@ "clothes": "sleeveless logo t", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2091 + }, "metadata_dict": { "hat": "horns", "fur": "red", @@ -24886,22 +31161,28 @@ "mouth": "bored cigarette", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2092 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", "hat": "girl's hair short", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2093 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -24909,11 +31190,14 @@ "mouth": "jovial", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2094 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "hypnotized", @@ -24921,11 +31205,14 @@ "mouth": "phoneme vuh", "background": "gray", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2095 + }, "metadata_dict": { "fur": "cream", "hat": "stuntman helmet", @@ -24933,11 +31220,14 @@ "clothes": "tanktop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2096 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", @@ -24946,11 +31236,14 @@ "fur": "brown", "clothes": "bone tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2097 + }, "metadata_dict": { "clothes": "lumberjack shirt", "background": "blue", @@ -24959,11 +31252,14 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2098 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -24971,22 +31267,28 @@ "eyes": "bored", "hat": "faux hawk", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2099 + }, "metadata_dict": { "fur": "gray", "background": "blue", "earring": "silver hoop", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2100 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", @@ -24995,43 +31297,55 @@ "fur": "pink", "mouth": "bored pizza", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2101 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "mouth": "bored cigarette", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2102 + }, "metadata_dict": { "mouth": "bored bubblegum", "clothes": "bayc t black", "eyes": "bored", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2103 + }, "metadata_dict": { "hat": "bandana blue", "fur": "red", "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2104 + }, "metadata_dict": { "eyes": "heart", "clothes": "wool turtleneck", @@ -25039,22 +31353,28 @@ "hat": "prussian helmet", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2105 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "golden brown", "clothes": "prison jumpsuit", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2106 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "black suit", @@ -25062,11 +31382,14 @@ "eyes": "sleepy", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2107 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -25075,11 +31398,14 @@ "clothes": "admirals coat", "hat": "vietnam era helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2108 + }, "metadata_dict": { "background": "new punk blue", "fur": "trippy", @@ -25088,11 +31414,14 @@ "earring": "gold stud", "eyes": "bored", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2109 + }, "metadata_dict": { "background": "new punk blue", "eyes": "cyborg", @@ -25100,44 +31429,56 @@ "clothes": "biker vest", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2110 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven bubblegum", "background": "yellow", "fur": "white", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2111 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "hat": "horns", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2112 + }, "metadata_dict": { "hat": "irish boho", "mouth": "rage", "fur": "brown", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2113 + }, "metadata_dict": { "fur": "brown", "earring": "silver stud", @@ -25145,11 +31486,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2114 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -25157,11 +31501,14 @@ "background": "blue", "hat": "spinner hat", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2115 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "closed", @@ -25169,11 +31516,14 @@ "fur": "black", "background": "orange", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2116 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -25181,11 +31531,14 @@ "hat": "bayc flipped brim", "clothes": "toga", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2117 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "party hat 2", @@ -25193,32 +31546,41 @@ "eyes": "3d", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2118 + }, "metadata_dict": { "background": "purple", "mouth": "phoneme oh", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2119 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "hat": "baby's bonnet", "background": "aquamarine", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2120 + }, "metadata_dict": { "hat": "horns", "earring": "silver stud", @@ -25227,11 +31589,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2121 + }, "metadata_dict": { "eyes": "holographic", "fur": "cream", @@ -25239,22 +31604,28 @@ "background": "blue", "clothes": "lab coat", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2122 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "fur": "dmt", "background": "blue", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2123 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -25262,11 +31633,14 @@ "mouth": "bored unshaven cigarette", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2124 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme l", @@ -25275,22 +31649,28 @@ "background": "aquamarine", "hat": "bowler", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2125 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", "background": "blue", "fur": "black", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2126 + }, "metadata_dict": { "clothes": "caveman pelt", "mouth": "bored unshaven cigarette", @@ -25298,22 +31678,28 @@ "background": "gray", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2127 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "fur": "gray", "background": "aquamarine", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2128 + }, "metadata_dict": { "hat": "party hat 2", "fur": "golden brown", @@ -25322,11 +31708,14 @@ "mouth": "bored bubblegum", "background": "orange", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2129 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "fez", @@ -25334,11 +31723,14 @@ "background": "orange", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2130 + }, "metadata_dict": { "fur": "trippy", "earring": "gold hoop", @@ -25347,11 +31739,14 @@ "hat": "beanie", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2131 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -25359,11 +31754,14 @@ "fur": "dark brown", "hat": "cowboy hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2132 + }, "metadata_dict": { "fur": "golden brown", "hat": "baby's bonnet", @@ -25371,11 +31769,14 @@ "background": "gray", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2133 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "bored kazoo", @@ -25383,22 +31784,28 @@ "eyes": "bloodshot", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2134 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", "mouth": "jovial", "background": "yellow", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2135 + }, "metadata_dict": { "hat": "baby's bonnet", "earring": "gold hoop", @@ -25406,11 +31813,14 @@ "mouth": "jovial", "background": "blue", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2136 + }, "metadata_dict": { "clothes": "cowboy shirt", "background": "blue", @@ -25419,11 +31829,14 @@ "eyes": "bored", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2137 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "sailor shirt", @@ -25431,11 +31844,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2138 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -25443,11 +31859,14 @@ "background": "aquamarine", "mouth": "bored unshaven cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2139 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", @@ -25455,11 +31874,14 @@ "eyes": "robot", "fur": "pink", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2140 + }, "metadata_dict": { "background": "gray", "hat": "girl's hair pink", @@ -25467,11 +31889,14 @@ "fur": "brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2141 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "brown", @@ -25479,11 +31904,14 @@ "clothes": "pimp coat", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2142 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -25492,11 +31920,14 @@ "clothes": "smoking jacket", "fur": "pink", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2143 + }, "metadata_dict": { "hat": "sea captain's hat", "earring": "silver stud", @@ -25504,11 +31935,14 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2144 + }, "metadata_dict": { "hat": "baby's bonnet", "clothes": "prison jumpsuit", @@ -25517,22 +31951,28 @@ "mouth": "bored", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2145 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "mouth": "small grin", "clothes": "stunt jacket", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2146 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -25540,11 +31980,14 @@ "background": "orange", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2147 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", @@ -25553,22 +31996,28 @@ "background": "orange", "hat": "short mohawk", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2148 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", "clothes": "toga", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2149 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -25576,11 +32025,14 @@ "hat": "girl's hair pink", "mouth": "small grin", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2150 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "pink", @@ -25588,22 +32040,28 @@ "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2151 + }, "metadata_dict": { "fur": "tan", "clothes": "rainbow suspenders", "eyes": "robot", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2152 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -25612,11 +32070,14 @@ "fur": "death bot", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2153 + }, "metadata_dict": { "hat": "party hat 2", "fur": "tan", @@ -25624,11 +32085,14 @@ "eyes": "bloodshot", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2154 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -25636,11 +32100,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2155 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -25649,21 +32116,27 @@ "fur": "brown", "hat": "beanie", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2156 + }, "metadata_dict": { "background": "gray", "eyes": "heart", "fur": "black", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2157 + }, "metadata_dict": { "clothes": "blue dress", "hat": "spinner hat", @@ -25671,22 +32144,28 @@ "mouth": "tongue out", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2158 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", "clothes": "toga", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2159 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -25695,11 +32174,14 @@ "eyes": "bored", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2160 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "rage", @@ -25707,33 +32189,42 @@ "eyes": "bored", "fur": "brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2161 + }, "metadata_dict": { "mouth": "bored kazoo", "background": "orange", "fur": "dark brown", "clothes": "sleeveless logo t", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2162 + }, "metadata_dict": { "mouth": "jovial", "fur": "red", "eyes": "bored", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2163 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "gold stud", @@ -25741,33 +32232,42 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2164 + }, "metadata_dict": { "eyes": "coins", "fur": "cheetah", "background": "yellow", "clothes": "guayabera", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2165 + }, "metadata_dict": { "hat": "bandana blue", "eyes": "3d", "mouth": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2166 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -25775,11 +32275,14 @@ "fur": "brown", "clothes": "prom dress", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2167 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -25788,22 +32291,28 @@ "hat": "bunny ears", "clothes": "hip hop", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2168 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored dagger", "hat": "irish boho", "fur": "black", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2169 + }, "metadata_dict": { "eyes": "closed", "fur": "trippy", @@ -25811,11 +32320,14 @@ "background": "orange", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2170 + }, "metadata_dict": { "hat": "horns", "mouth": "jovial", @@ -25823,11 +32335,14 @@ "eyes": "bored", "clothes": "toga", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2171 + }, "metadata_dict": { "eyes": "zombie", "earring": "silver stud", @@ -25835,11 +32350,14 @@ "background": "blue", "fur": "pink", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2172 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin", @@ -25848,11 +32366,14 @@ "earring": "silver stud", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2173 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven bubblegum", @@ -25860,11 +32381,14 @@ "fur": "noise", "earring": "silver hoop", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2174 + }, "metadata_dict": { "hat": "party hat 2", "fur": "golden brown", @@ -25872,21 +32396,27 @@ "clothes": "toga", "background": "aquamarine", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2175 + }, "metadata_dict": { "eyes": "eyepatch", "background": "blue", "mouth": "bored", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2176 + }, "metadata_dict": { "eyes": "coins", "clothes": "black t", @@ -25894,11 +32424,14 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2177 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "striped tee", @@ -25907,11 +32440,14 @@ "fur": "solid gold", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2178 + }, "metadata_dict": { "fur": "zombie", "eyes": "3d", @@ -25919,11 +32455,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2179 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "dark brown", @@ -25931,22 +32470,28 @@ "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2180 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "clothes": "black holes t", "fur": "black", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2181 + }, "metadata_dict": { "hat": "laurel wreath", "clothes": "leather jacket", @@ -25954,11 +32499,14 @@ "background": "gray", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2182 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -25966,11 +32514,14 @@ "hat": "prussian helmet", "clothes": "biker vest", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2183 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -25978,11 +32529,14 @@ "clothes": "bayc t black", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2184 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -25990,11 +32544,14 @@ "mouth": "bored unshaven cigarette", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2185 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -26003,33 +32560,42 @@ "hat": "cowboy hat", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2186 + }, "metadata_dict": { "fur": "cream", "eyes": "bloodshot", "mouth": "bored", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2187 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme vuh", "eyes": "sleepy", "clothes": "hip hop", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2188 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless t", @@ -26037,11 +32603,14 @@ "hat": "spinner hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2189 + }, "metadata_dict": { "fur": "gray", "earring": "diamond stud", @@ -26049,11 +32618,14 @@ "mouth": "tongue out", "clothes": "guayabera", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2190 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "prison jumpsuit", @@ -26062,22 +32634,28 @@ "fur": "black", "hat": "beanie", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2191 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", "fur": "gray", "background": "blue", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2192 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -26085,11 +32663,14 @@ "clothes": "bone necklace", "background": "purple", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2193 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -26097,22 +32678,28 @@ "eyes": "coins", "hat": "girl's hair short", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2194 + }, "metadata_dict": { "fur": "brown", "background": "purple", "mouth": "bored", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2195 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "dark brown", @@ -26121,11 +32708,14 @@ "eyes": "bored", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2196 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "horns", @@ -26134,11 +32724,14 @@ "background": "blue", "clothes": "smoking jacket", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2197 + }, "metadata_dict": { "mouth": "tongue out", "background": "yellow", @@ -26146,22 +32739,28 @@ "hat": "beanie", "eyes": "sleepy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2198 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blue beams", "background": "yellow", "mouth": "phoneme wah", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2199 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -26169,11 +32768,14 @@ "fur": "brown", "clothes": "guayabera", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2200 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -26181,11 +32783,14 @@ "hat": "army hat", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2201 + }, "metadata_dict": { "fur": "cream", "clothes": "sailor shirt", @@ -26193,11 +32798,14 @@ "eyes": "bloodshot", "hat": "bunny ears", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2202 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", @@ -26205,11 +32813,14 @@ "clothes": "cowboy shirt", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2203 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme oh", @@ -26218,11 +32829,14 @@ "fur": "brown", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2204 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "red", @@ -26231,11 +32845,14 @@ "earring": "cross", "eyes": "sleepy", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2205 + }, "metadata_dict": { "hat": "girl's hair pink", "mouth": "jovial", @@ -26243,11 +32860,14 @@ "background": "orange", "fur": "dark brown", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2206 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -26256,55 +32876,70 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2207 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "fur": "brown", "background": "yellow", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2208 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "clothes": "lab coat", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2209 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "aquamarine", "hat": "faux hawk", "fur": "white", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2210 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", "mouth": "jovial", "fur": "black", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2211 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -26312,11 +32947,14 @@ "mouth": "bored unshaven cigar", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2212 + }, "metadata_dict": { "eyes": "heart", "hat": "bandana blue", @@ -26324,33 +32962,42 @@ "clothes": "guayabera", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2213 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "bored", "fur": "cheetah", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2214 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", "eyes": "bored", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2215 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "gray", @@ -26358,11 +33005,14 @@ "background": "yellow", "mouth": "phoneme wah", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2216 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -26370,11 +33020,14 @@ "fur": "black", "background": "orange", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2217 + }, "metadata_dict": { "clothes": "bandolier", "earring": "gold stud", @@ -26382,11 +33035,14 @@ "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2218 + }, "metadata_dict": { "clothes": "cowboy shirt", "hat": "cowboy hat", @@ -26394,11 +33050,14 @@ "background": "purple", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2219 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -26407,21 +33066,27 @@ "fur": "dark brown", "hat": "fisherman's hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2220 + }, "metadata_dict": { "fur": "black", "background": "purple", "eyes": "bloodshot", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2221 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "s&m hat", @@ -26429,11 +33094,14 @@ "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2222 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -26442,11 +33110,14 @@ "fur": "white", "mouth": "bored cigar", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2223 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "zombie", @@ -26455,11 +33126,14 @@ "clothes": "lab coat", "earring": "cross", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2224 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -26467,11 +33141,14 @@ "eyes": "bloodshot", "background": "gray", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2225 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -26479,22 +33156,28 @@ "eyes": "bored", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2226 + }, "metadata_dict": { "eyes": "x eyes", "background": "aquamarine", "clothes": "smoking jacket", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2227 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -26502,11 +33185,14 @@ "fur": "noise", "eyes": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2228 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -26515,11 +33201,14 @@ "background": "aquamarine", "hat": "girl's hair short", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2229 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -26527,11 +33216,14 @@ "hat": "fisherman's hat", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2230 + }, "metadata_dict": { "clothes": "bandolier", "hat": "sushi chef headband", @@ -26539,11 +33231,14 @@ "background": "aquamarine", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2231 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin multicolored", @@ -26551,22 +33246,28 @@ "clothes": "lab coat", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2232 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "bored party horn", "clothes": "leather jacket", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2233 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", @@ -26575,21 +33276,27 @@ "earring": "silver hoop", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2234 + }, "metadata_dict": { "background": "gray", "fur": "black", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2235 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "caveman pelt", @@ -26598,11 +33305,14 @@ "earring": "gold stud", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2236 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -26611,32 +33321,41 @@ "mouth": "small grin", "eyes": "sleepy", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2237 + }, "metadata_dict": { "eyes": "sleepy", "fur": "dark brown", "background": "army green", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2238 + }, "metadata_dict": { "fur": "golden brown", "hat": "army hat", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2239 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -26644,11 +33363,14 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2240 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "dumbfounded", @@ -26656,11 +33378,14 @@ "fur": "noise", "clothes": "bayc t black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2241 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -26668,11 +33393,14 @@ "eyes": "bloodshot", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2242 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "prison jumpsuit", @@ -26680,11 +33408,14 @@ "eyes": "bored", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2243 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "orange", @@ -26693,22 +33424,28 @@ "earring": "silver hoop", "clothes": "sleeveless logo t", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2244 + }, "metadata_dict": { "mouth": "bored unshaven cigar", "clothes": "tanktop", "eyes": "sleepy", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2245 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "bored", @@ -26716,22 +33453,28 @@ "mouth": "bored", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2246 + }, "metadata_dict": { "fur": "red", "background": "aquamarine", "mouth": "small grin", "clothes": "pimp coat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2247 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", @@ -26739,11 +33482,14 @@ "hat": "fisherman's hat", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2248 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -26751,11 +33497,14 @@ "eyes": "bored", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2249 + }, "metadata_dict": { "mouth": "bored unshaven cigar", "background": "aquamarine", @@ -26763,22 +33512,28 @@ "hat": "faux hawk", "fur": "brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2250 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", "hat": "short mohawk", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2251 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven pipe", @@ -26786,11 +33541,14 @@ "fur": "black", "eyes": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2252 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -26798,11 +33556,14 @@ "hat": "bayc flipped brim", "clothes": "tanktop", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2253 + }, "metadata_dict": { "eyes": "scumbag", "hat": "irish boho", @@ -26810,11 +33571,14 @@ "background": "purple", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2254 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "seaman's hat", @@ -26822,33 +33586,42 @@ "fur": "dark brown", "clothes": "tuxedo tee", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2255 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "tan", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2256 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bored", "mouth": "bored unshaven cigarette", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2257 + }, "metadata_dict": { "background": "gray", "hat": "seaman's hat", @@ -26856,11 +33629,14 @@ "mouth": "bored unshaven cigarette", "eyes": "angry", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2258 + }, "metadata_dict": { "eyes": "closed", "hat": "horns", @@ -26868,22 +33644,28 @@ "earring": "gold stud", "fur": "dark brown", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2259 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored cigarette", "background": "orange", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2260 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "s&m hat", @@ -26891,11 +33673,14 @@ "background": "blue", "fur": "black", "clothes": "biker vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2261 + }, "metadata_dict": { "clothes": "blue dress", "hat": "cowboy hat", @@ -26903,11 +33688,14 @@ "mouth": "bored cigarette", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2262 + }, "metadata_dict": { "fur": "gray", "clothes": "prison jumpsuit", @@ -26915,22 +33703,28 @@ "eyes": "bored", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2263 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "leather jacket", "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2264 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -26938,22 +33732,28 @@ "clothes": "tuxedo tee", "hat": "cowboy hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2265 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "hat": "horns", "mouth": "grin", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2266 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -26961,11 +33761,14 @@ "clothes": "tweed suit", "background": "blue", "hat": "ww2 pilot helm" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2267 + }, "metadata_dict": { "eyes": "x eyes", "hat": "horns", @@ -26974,11 +33777,14 @@ "earring": "silver stud", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2268 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "hypnotized", @@ -26987,11 +33793,14 @@ "background": "gray", "hat": "halo", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2269 + }, "metadata_dict": { "mouth": "discomfort", "fur": "golden brown", @@ -26999,11 +33808,14 @@ "clothes": "leather jacket", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2270 + }, "metadata_dict": { "fur": "red", "background": "orange", @@ -27012,11 +33824,14 @@ "clothes": "bone necklace", "hat": "police motorcycle helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2271 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "trippy", @@ -27025,22 +33840,28 @@ "hat": "bunny ears", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2272 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", "background": "aquamarine", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2273 + }, "metadata_dict": { "eyes": "closed", "clothes": "space suit", @@ -27048,22 +33869,28 @@ "hat": "seaman's hat", "mouth": "phoneme vuh", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2274 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", "mouth": "phoneme vuh", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2275 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "dumbfounded", @@ -27071,21 +33898,27 @@ "background": "orange", "hat": "girl's hair short", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2276 + }, "metadata_dict": { "background": "yellow", "fur": "black", "eyes": "3d", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2277 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -27093,22 +33926,28 @@ "background": "purple", "hat": "commie hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2278 + }, "metadata_dict": { "eyes": "bloodshot", "fur": "brown", "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2279 + }, "metadata_dict": { "clothes": "bandolier", "fur": "gray", @@ -27117,11 +33956,14 @@ "eyes": "bloodshot", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2280 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -27130,11 +33972,14 @@ "background": "blue", "eyes": "bloodshot", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2281 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -27142,22 +33987,28 @@ "background": "orange", "earring": "silver hoop", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2282 + }, "metadata_dict": { "mouth": "rage", "fur": "black", "eyes": "3d", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2283 + }, "metadata_dict": { "clothes": "blue dress", "eyes": "zombie", @@ -27165,11 +34016,14 @@ "mouth": "bored bubblegum", "hat": "ww2 pilot helm", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2284 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -27177,11 +34031,14 @@ "background": "gray", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2285 + }, "metadata_dict": { "background": "gray", "clothes": "cowboy shirt", @@ -27190,11 +34047,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2286 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -27202,11 +34062,14 @@ "clothes": "bayc t black", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2287 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -27214,33 +34077,42 @@ "mouth": "jovial", "background": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2288 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "blue", "eyes": "bloodshot", "clothes": "tuxedo tee", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2289 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "mouth": "grin", "eyes": "zombie", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2290 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "prussian helmet", @@ -27248,11 +34120,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2291 + }, "metadata_dict": { "fur": "dmt", "hat": "fez", @@ -27261,11 +34136,14 @@ "mouth": "bored", "eyes": "bored", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2292 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "prison jumpsuit", @@ -27274,11 +34152,14 @@ "mouth": "small grin", "hat": "bayc hat red", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2293 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "hypnotized", @@ -27286,11 +34167,14 @@ "fur": "black", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2294 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -27298,22 +34182,28 @@ "mouth": "dumbfounded", "fur": "pink", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2295 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", "eyes": "holographic", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2296 + }, "metadata_dict": { "clothes": "kings robe", "background": "gray", @@ -27321,22 +34211,28 @@ "eyes": "coins", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2297 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "eyes": "bored", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2298 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "pimp coat", @@ -27344,11 +34240,14 @@ "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2299 + }, "metadata_dict": { "background": "orange", "clothes": "biker vest", @@ -27357,11 +34256,14 @@ "hat": "beanie", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2300 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -27369,22 +34271,28 @@ "eyes": "robot", "background": "orange", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2301 + }, "metadata_dict": { "fur": "dark brown", "hat": "bunny ears", "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2302 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin", @@ -27392,11 +34300,14 @@ "fur": "pink", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2303 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -27404,11 +34315,14 @@ "mouth": "rage", "fur": "dark brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2304 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "prison jumpsuit", @@ -27416,11 +34330,14 @@ "hat": "cowboy hat", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2305 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "orange", @@ -27428,11 +34345,14 @@ "fur": "brown", "clothes": "stunt jacket", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2306 + }, "metadata_dict": { "clothes": "black suit", "fur": "black", @@ -27440,11 +34360,14 @@ "earring": "silver hoop", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2307 + }, "metadata_dict": { "clothes": "black holes t", "hat": "baby's bonnet", @@ -27452,11 +34375,14 @@ "fur": "white", "mouth": "bored cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2308 + }, "metadata_dict": { "earring": "diamond stud", "hat": "fez", @@ -27465,22 +34391,28 @@ "eyes": "bored", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2309 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored cigar", "hat": "halo", "background": "orange", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2310 + }, "metadata_dict": { "mouth": "bored dagger", "clothes": "toga", @@ -27488,11 +34420,14 @@ "fur": "dark brown", "hat": "girl's hair short", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2311 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "prussian helmet", @@ -27500,11 +34435,14 @@ "fur": "dark brown", "earring": "silver hoop", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2312 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", @@ -27512,11 +34450,14 @@ "clothes": "admirals coat", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2313 + }, "metadata_dict": { "clothes": "black holes t", "hat": "stuntman helmet", @@ -27524,33 +34465,42 @@ "mouth": "bored", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2314 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "fur": "golden brown", "background": "orange", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2315 + }, "metadata_dict": { "hat": "bowler", "fur": "pink", "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2316 + }, "metadata_dict": { "fur": "gray", "mouth": "bored unshaven pipe", @@ -27558,11 +34508,14 @@ "clothes": "biker vest", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2317 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -27570,11 +34523,14 @@ "clothes": "prison jumpsuit", "fur": "dark brown", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2318 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -27582,11 +34538,14 @@ "eyes": "3d", "fur": "pink", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2319 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "space suit", @@ -27594,11 +34553,14 @@ "mouth": "bored unshaven bubblegum", "fur": "pink", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2320 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -27606,11 +34568,14 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2321 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -27618,11 +34583,14 @@ "fur": "dark brown", "hat": "girl's hair short", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2322 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -27630,11 +34598,14 @@ "background": "aquamarine", "eyes": "bored", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2323 + }, "metadata_dict": { "clothes": "bandolier", "hat": "irish boho", @@ -27642,11 +34613,14 @@ "eyes": "3d", "mouth": "bored unshaven cigarette", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2324 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -27654,11 +34628,14 @@ "fur": "white", "eyes": "crazy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2325 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -27666,11 +34643,14 @@ "fur": "dark brown", "background": "orange", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2326 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "phoneme ooo", @@ -27678,11 +34658,14 @@ "fur": "brown", "earring": "cross", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2327 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "horns", @@ -27690,11 +34673,14 @@ "fur": "black", "mouth": "small grin", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2328 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -27703,22 +34689,28 @@ "clothes": "prison jumpsuit", "fur": "red", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2329 + }, "metadata_dict": { "hat": "halo", "fur": "golden brown", "background": "blue", "eyes": "bloodshot", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2330 + }, "metadata_dict": { "mouth": "grin", "fur": "red", @@ -27726,11 +34718,14 @@ "eyes": "bored", "clothes": "bone tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2331 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "tweed suit", @@ -27738,22 +34733,28 @@ "background": "orange", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2332 + }, "metadata_dict": { "mouth": "bored cigarette", "fur": "gray", "background": "orange", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2333 + }, "metadata_dict": { "mouth": "grin gold grill", "earring": "diamond stud", @@ -27761,33 +34762,42 @@ "hat": "cowboy hat", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2334 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "pink", "eyes": "bored", "background": "yellow", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2335 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "bayc t red", "mouth": "grin", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2336 + }, "metadata_dict": { "hat": "prussian helmet", "eyes": "3d", @@ -27795,11 +34805,14 @@ "clothes": "tuxedo tee", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2337 + }, "metadata_dict": { "fur": "golden brown", "clothes": "bone necklace", @@ -27807,11 +34820,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2338 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -27819,11 +34835,14 @@ "background": "gray", "earring": "gold hoop", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2339 + }, "metadata_dict": { "fur": "pink", "hat": "bayc flipped brim", @@ -27831,22 +34850,28 @@ "clothes": "navy striped tee", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2340 + }, "metadata_dict": { "eyes": "zombie", "fur": "gray", "background": "aquamarine", "mouth": "jovial", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2341 + }, "metadata_dict": { "clothes": "striped tee", "fur": "gray", @@ -27854,11 +34879,14 @@ "background": "blue", "hat": "cowboy hat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2342 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -27866,11 +34894,14 @@ "hat": "vietnam era helmet", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2343 + }, "metadata_dict": { "fur": "cream", "clothes": "vietnam jacket", @@ -27879,21 +34910,27 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2344 + }, "metadata_dict": { "background": "aquamarine", "fur": "brown", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2345 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -27901,55 +34938,70 @@ "background": "gray", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2346 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "sleeveless t", "background": "gray", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2347 + }, "metadata_dict": { "fur": "golden brown", "eyes": "bored", "hat": "ww2 pilot helm", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2348 + }, "metadata_dict": { "fur": "tan", "hat": "girl's hair pink", "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2349 + }, "metadata_dict": { "fur": "tan", "hat": "irish boho", "eyes": "zombie", "background": "aquamarine", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2350 + }, "metadata_dict": { "eyes": "scumbag", "earring": "diamond stud", @@ -27958,11 +35010,14 @@ "fur": "pink", "hat": "faux hawk", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2351 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -27970,11 +35025,14 @@ "earring": "gold hoop", "fur": "black", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2352 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -27982,11 +35040,14 @@ "background": "yellow", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2353 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -27994,11 +35055,14 @@ "eyes": "robot", "fur": "pink", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2354 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -28007,11 +35071,14 @@ "earring": "silver stud", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2355 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "gray", @@ -28019,11 +35086,14 @@ "clothes": "bayc t black", "eyes": "bored", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2356 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -28032,11 +35102,14 @@ "earring": "silver hoop", "hat": "commie hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2357 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "sleeveless t", @@ -28044,11 +35117,14 @@ "mouth": "bored unshaven pipe", "hat": "ww2 pilot helm", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2358 + }, "metadata_dict": { "fur": "tan", "hat": "seaman's hat", @@ -28056,11 +35132,14 @@ "background": "gray", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2359 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "beanie", @@ -28069,11 +35148,14 @@ "earring": "silver hoop", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2360 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -28081,11 +35163,14 @@ "clothes": "rainbow suspenders", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2361 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "sushi chef headband", @@ -28093,11 +35178,14 @@ "background": "blue", "fur": "dark brown", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2362 + }, "metadata_dict": { "clothes": "sleeveless logo t", "mouth": "bored bubblegum", @@ -28106,11 +35194,14 @@ "background": "purple", "eyes": "crazy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2363 + }, "metadata_dict": { "eyes": "closed", "fur": "trippy", @@ -28118,11 +35209,14 @@ "background": "orange", "clothes": "tuxedo tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2364 + }, "metadata_dict": { "eyes": "coins", "background": "yellow", @@ -28130,11 +35224,14 @@ "fur": "dark brown", "hat": "vietnam era helmet", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2365 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "spinner hat", @@ -28143,11 +35240,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2366 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -28155,44 +35255,56 @@ "earring": "silver hoop", "clothes": "tanktop", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2367 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "golden brown", "clothes": "bayc t black", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2368 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", "clothes": "striped tee", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2369 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", "eyes": "bored", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2370 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -28200,11 +35312,14 @@ "mouth": "jovial", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2371 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -28212,11 +35327,14 @@ "clothes": "work vest", "eyes": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2372 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "grin", @@ -28224,11 +35342,14 @@ "hat": "faux hawk", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2373 + }, "metadata_dict": { "eyes": "heart", "clothes": "black t", @@ -28236,22 +35357,28 @@ "fur": "red", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2374 + }, "metadata_dict": { "eyes": "bloodshot", "fur": "brown", "clothes": "guayabera", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2375 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -28259,11 +35386,14 @@ "fur": "pink", "eyes": "bored", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2376 + }, "metadata_dict": { "fur": "trippy", "background": "orange", @@ -28271,44 +35401,56 @@ "mouth": "bored", "hat": "halo", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2377 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc flipped brim", "mouth": "tongue out", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2378 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "gray", "hat": "bayc flipped brim", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2379 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven cigarette", "fur": "brown", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2380 + }, "metadata_dict": { "hat": "halo", "mouth": "phoneme vuh", @@ -28316,11 +35458,14 @@ "eyes": "sleepy", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2381 + }, "metadata_dict": { "clothes": "black t", "mouth": "bored unshaven pipe", @@ -28328,11 +35473,14 @@ "background": "orange", "fur": "pink", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2382 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "orange", @@ -28340,11 +35488,14 @@ "earring": "silver hoop", "eyes": "sleepy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2383 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "robot", @@ -28353,11 +35504,14 @@ "mouth": "bored", "hat": "police motorcycle helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2384 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", @@ -28365,11 +35519,14 @@ "eyes": "zombie", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2385 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -28377,11 +35534,14 @@ "earring": "silver hoop", "clothes": "prom dress", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2386 + }, "metadata_dict": { "fur": "black", "eyes": "bored", @@ -28390,11 +35550,14 @@ "background": "purple", "hat": "police motorcycle helmet", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2387 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "red", @@ -28402,22 +35565,28 @@ "hat": "beanie", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2388 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "hat": "sea captain's hat", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2389 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", @@ -28425,22 +35594,28 @@ "background": "gray", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2390 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "bored", "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2391 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -28448,11 +35623,14 @@ "fur": "brown", "clothes": "sleeveless logo t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2392 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "blindfold", @@ -28461,22 +35639,28 @@ "earring": "silver hoop", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2393 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", "clothes": "toga", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2394 + }, "metadata_dict": { "earring": "gold hoop", "background": "orange", @@ -28485,11 +35669,14 @@ "hat": "bayc flipped brim", "fur": "cheetah", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2395 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "gold hoop", @@ -28497,11 +35684,14 @@ "mouth": "bored", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2396 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "halo", @@ -28509,11 +35699,14 @@ "eyes": "bloodshot", "fur": "white", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2397 + }, "metadata_dict": { "eyes": "scumbag", "earring": "silver stud", @@ -28522,11 +35715,14 @@ "hat": "army hat", "clothes": "tanktop", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2398 + }, "metadata_dict": { "fur": "cream", "hat": "horns", @@ -28534,11 +35730,14 @@ "clothes": "work vest", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2399 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "aquamarine", @@ -28546,11 +35745,14 @@ "fur": "black", "eyes": "bored", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2400 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", @@ -28558,11 +35760,14 @@ "mouth": "bored pipe", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2401 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", @@ -28571,11 +35776,14 @@ "hat": "bowler", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2402 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "eyes": "closed", @@ -28584,22 +35792,28 @@ "hat": "spinner hat", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2403 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "scumbag", "fur": "trippy", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2404 + }, "metadata_dict": { "clothes": "tie dye", "eyes": "bored", @@ -28608,11 +35822,14 @@ "mouth": "bored", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2405 + }, "metadata_dict": { "eyes": "closed", "fur": "dmt", @@ -28620,11 +35837,14 @@ "background": "gray", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2406 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -28632,22 +35852,28 @@ "hat": "cowboy hat", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2407 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", "fur": "dark brown", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2408 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -28655,22 +35881,28 @@ "eyes": "bored", "mouth": "bored cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2409 + }, "metadata_dict": { "background": "orange", "clothes": "smoking jacket", "mouth": "tongue out", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2410 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -28678,11 +35910,14 @@ "fur": "red", "clothes": "cowboy shirt", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2411 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -28690,22 +35925,28 @@ "hat": "party hat 1", "eyes": "robot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2412 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "work vest", "fur": "black", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2413 + }, "metadata_dict": { "eyes": "closed", "hat": "cowboy hat", @@ -28713,11 +35954,14 @@ "background": "purple", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2414 + }, "metadata_dict": { "clothes": "striped tee", "hat": "baby's bonnet", @@ -28725,11 +35969,14 @@ "eyes": "zombie", "mouth": "tongue out", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2415 + }, "metadata_dict": { "clothes": "bandolier", "fur": "gray", @@ -28737,11 +35984,14 @@ "hat": "short mohawk", "mouth": "tongue out", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2416 + }, "metadata_dict": { "mouth": "bored kazoo", "hat": "horns", @@ -28749,22 +35999,28 @@ "clothes": "smoking jacket", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2417 + }, "metadata_dict": { "eyes": "robot", "mouth": "bored unshaven cigarette", "background": "yellow", "fur": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2418 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -28772,11 +36028,14 @@ "earring": "gold hoop", "clothes": "toga", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2419 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -28784,22 +36043,28 @@ "clothes": "rainbow suspenders", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2420 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "aquamarine", "eyes": "bored", "mouth": "tongue out", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2421 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -28807,11 +36072,14 @@ "hat": "bayc hat red", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2422 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -28820,11 +36088,14 @@ "hat": "beanie", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2423 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "zombie", @@ -28832,43 +36103,55 @@ "hat": "cowboy hat", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2424 + }, "metadata_dict": { "eyes": "3d", "background": "orange", "clothes": "tuxedo tee", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2425 + }, "metadata_dict": { "eyes": "sleepy", "fur": "black", "mouth": "bored cigarette", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2426 + }, "metadata_dict": { "fur": "red", "background": "orange", "eyes": "bloodshot", "hat": "fisherman's hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2427 + }, "metadata_dict": { "background": "purple", "clothes": "stunt jacket", @@ -28876,11 +36159,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2428 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -28888,21 +36174,27 @@ "mouth": "small grin", "fur": "brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2429 + }, "metadata_dict": { "eyes": "robot", "background": "purple", "mouth": "bored unshaven", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2430 + }, "metadata_dict": { "clothes": "tie dye", "eyes": "bloodshot", @@ -28910,11 +36202,14 @@ "fur": "brown", "background": "purple", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2431 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "blindfold", @@ -28923,22 +36218,28 @@ "earring": "silver hoop", "fur": "white", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2432 + }, "metadata_dict": { "clothes": "bandolier", "fur": "trippy", "mouth": "bored unshaven party horn", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2433 + }, "metadata_dict": { "clothes": "striped tee", "background": "gray", @@ -28946,22 +36247,28 @@ "earring": "diamond stud", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2434 + }, "metadata_dict": { "clothes": "blue dress", "mouth": "dumbfounded", "fur": "pink", "eyes": "bloodshot", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2435 + }, "metadata_dict": { "mouth": "grin", "earring": "gold stud", @@ -28970,22 +36277,28 @@ "hat": "beanie", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2436 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "gray", "mouth": "phoneme vuh", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2437 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme oh", @@ -28993,11 +36306,14 @@ "background": "aquamarine", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2438 + }, "metadata_dict": { "hat": "horns", "mouth": "phoneme ooo", @@ -29005,11 +36321,14 @@ "earring": "silver hoop", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2439 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -29017,11 +36336,14 @@ "hat": "spinner hat", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2440 + }, "metadata_dict": { "mouth": "bored unshaven cigar", "fur": "brown", @@ -29029,21 +36351,27 @@ "hat": "police motorcycle helmet", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2441 + }, "metadata_dict": { "background": "new punk blue", "eyes": "sleepy", "fur": "dark brown", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2442 + }, "metadata_dict": { "hat": "laurel wreath", "clothes": "sailor shirt", @@ -29051,11 +36379,14 @@ "eyes": "bored", "mouth": "bored unshaven cigar", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2443 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "blue", @@ -29063,22 +36394,28 @@ "clothes": "biker vest", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2444 + }, "metadata_dict": { "background": "gray", "fur": "brown", "hat": "beanie", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2445 + }, "metadata_dict": { "mouth": "bored cigarette", "eyes": "coins", @@ -29086,11 +36423,14 @@ "background": "orange", "hat": "bunny ears", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2446 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", @@ -29098,11 +36438,14 @@ "fur": "brown", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2447 + }, "metadata_dict": { "eyes": "holographic", "earring": "silver hoop", @@ -29110,11 +36453,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2448 + }, "metadata_dict": { "hat": "horns", "background": "gray", @@ -29122,11 +36468,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2449 + }, "metadata_dict": { "background": "blue", "fur": "pink", @@ -29134,22 +36483,28 @@ "mouth": "bored unshaven cigarette", "hat": "safari", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2450 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "coins", "background": "orange", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2451 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "s&m hat", @@ -29157,11 +36512,14 @@ "fur": "cheetah", "clothes": "guayabera", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2452 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -29169,11 +36527,14 @@ "eyes": "3d", "clothes": "tuxedo tee", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2453 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -29181,11 +36542,14 @@ "mouth": "bored party horn", "earring": "silver stud", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2454 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "pink", @@ -29193,11 +36557,14 @@ "eyes": "bored", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2455 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "blue", @@ -29205,11 +36572,14 @@ "clothes": "toga", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2456 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "bored unshaven bubblegum", @@ -29217,11 +36587,14 @@ "fur": "red", "eyes": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2457 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -29230,22 +36603,28 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2458 + }, "metadata_dict": { "mouth": "grin", "fur": "red", "hat": "bayc flipped brim", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2459 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -29253,11 +36632,14 @@ "clothes": "black t", "hat": "beanie", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2460 + }, "metadata_dict": { "eyes": "closed", "background": "gray", @@ -29266,11 +36648,14 @@ "clothes": "tanktop", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2461 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -29278,11 +36663,14 @@ "eyes": "sleepy", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2462 + }, "metadata_dict": { "hat": "fisherman's hat", "clothes": "bayc t black", @@ -29290,11 +36678,14 @@ "mouth": "tongue out", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2463 + }, "metadata_dict": { "clothes": "black holes t", "hat": "baby's bonnet", @@ -29302,11 +36693,14 @@ "eyes": "bored", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2464 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -29314,11 +36708,14 @@ "mouth": "rage", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2465 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -29326,11 +36723,14 @@ "eyes": "bored", "hat": "faux hawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2466 + }, "metadata_dict": { "hat": "beanie", "fur": "noise", @@ -29339,11 +36739,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2467 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "orange", @@ -29351,11 +36754,14 @@ "fur": "brown", "hat": "bowler", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2468 + }, "metadata_dict": { "clothes": "striped tee", "hat": "irish boho", @@ -29363,11 +36769,14 @@ "background": "aquamarine", "mouth": "jovial", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2469 + }, "metadata_dict": { "mouth": "grin", "clothes": "blue dress", @@ -29375,11 +36784,14 @@ "fur": "dark brown", "hat": "girl's hair short", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2470 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin gold grill", @@ -29388,11 +36800,14 @@ "hat": "seaman's hat", "earring": "silver stud", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2471 + }, "metadata_dict": { "clothes": "striped tee", "earring": "diamond stud", @@ -29401,11 +36816,14 @@ "mouth": "bored", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2472 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -29413,11 +36831,14 @@ "clothes": "tie dye", "earring": "cross", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2473 + }, "metadata_dict": { "clothes": "bayc t red", "background": "aquamarine", @@ -29425,11 +36846,14 @@ "fur": "cheetah", "hat": "beanie", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2474 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "bone tee", @@ -29438,11 +36862,14 @@ "background": "gray", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2475 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "fez", @@ -29450,22 +36877,28 @@ "mouth": "bored", "clothes": "caveman pelt", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2476 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "blindfold", "fur": "black", "clothes": "tie dye", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2477 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "tan", @@ -29473,11 +36906,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2478 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "rage", @@ -29485,11 +36921,14 @@ "fur": "brown", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2479 + }, "metadata_dict": { "mouth": "bored party horn", "hat": "short mohawk", @@ -29497,33 +36936,42 @@ "clothes": "prom dress", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2480 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", "background": "yellow", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2481 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", "mouth": "phoneme ooo", "clothes": "sailor shirt", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2482 + }, "metadata_dict": { "hat": "party hat 2", "fur": "cream", @@ -29531,11 +36979,14 @@ "earring": "gold hoop", "background": "aquamarine", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2483 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -29543,22 +36994,28 @@ "eyes": "3d", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2484 + }, "metadata_dict": { "fur": "gray", "clothes": "tuxedo tee", "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2485 + }, "metadata_dict": { "hat": "laurel wreath", "background": "blue", @@ -29567,22 +37024,28 @@ "clothes": "toga", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2486 + }, "metadata_dict": { "mouth": "grin", "eyes": "robot", "background": "blue", "fur": "brown", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2487 + }, "metadata_dict": { "hat": "stuntman helmet", "clothes": "smoking jacket", @@ -29590,33 +37053,42 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2488 + }, "metadata_dict": { "fur": "trippy", "eyes": "blue beams", "background": "gray", "mouth": "phoneme wah", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2489 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored bubblegum", "background": "purple", "fur": "solid gold", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2490 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -29624,11 +37096,14 @@ "earring": "gold stud", "fur": "dark brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2491 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -29636,11 +37111,14 @@ "earring": "gold stud", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2492 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -29648,11 +37126,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigarette", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2493 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -29660,11 +37141,14 @@ "mouth": "phoneme vuh", "clothes": "biker vest", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2494 + }, "metadata_dict": { "clothes": "striped tee", "background": "orange", @@ -29672,22 +37156,28 @@ "eyes": "bored", "hat": "vietnam era helmet", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2495 + }, "metadata_dict": { "background": "new punk blue", "mouth": "jovial", "fur": "black", "hat": "ww2 pilot helm", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2496 + }, "metadata_dict": { "fur": "cream", "eyes": "zombie", @@ -29696,11 +37186,14 @@ "background": "orange", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2497 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -29709,11 +37202,14 @@ "background": "blue", "clothes": "leather jacket", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2498 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -29721,11 +37217,14 @@ "fur": "noise", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2499 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored party horn", @@ -29734,33 +37233,42 @@ "eyes": "bored", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2500 + }, "metadata_dict": { "fur": "gray", "eyes": "robot", "background": "purple", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2501 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", "mouth": "rage", "fur": "dark brown", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2502 + }, "metadata_dict": { "fur": "tan", "clothes": "blue dress", @@ -29768,11 +37276,14 @@ "hat": "fisherman's hat", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2503 + }, "metadata_dict": { "hat": "irish boho", "clothes": "prison jumpsuit", @@ -29780,22 +37291,28 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2504 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "eyes": "bored", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2505 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -29803,11 +37320,14 @@ "eyes": "bored", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2506 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", @@ -29816,21 +37336,27 @@ "fur": "brown", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2507 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2508 + }, "metadata_dict": { "eyes": "blindfold", "fur": "gray", @@ -29838,55 +37364,70 @@ "clothes": "sleeveless logo t", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2509 + }, "metadata_dict": { "mouth": "bored cigarette", "fur": "black", "background": "orange", "hat": "short mohawk", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2510 + }, "metadata_dict": { "clothes": "black t", "fur": "dark brown", "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2511 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", "fur": "dark brown", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2512 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", "mouth": "phoneme vuh", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2513 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "girl's hair pink", @@ -29894,11 +37435,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2514 + }, "metadata_dict": { "fur": "dmt", "background": "aquamarine", @@ -29906,11 +37450,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2515 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -29918,11 +37465,14 @@ "background": "orange", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2516 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme oh", @@ -29930,22 +37480,28 @@ "background": "aquamarine", "clothes": "tie dye", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2517 + }, "metadata_dict": { "mouth": "grin", "hat": "baby's bonnet", "background": "blue", "fur": "dark brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2518 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -29953,11 +37509,14 @@ "fur": "brown", "hat": "beanie", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2519 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "heart", @@ -29966,11 +37525,14 @@ "earring": "silver hoop", "clothes": "caveman pelt", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2520 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "bowler", @@ -29978,11 +37540,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2521 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "aquamarine", @@ -29990,11 +37555,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2522 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -30002,11 +37570,14 @@ "fur": "brown", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2523 + }, "metadata_dict": { "clothes": "striped tee", "hat": "prussian helmet", @@ -30014,22 +37585,28 @@ "mouth": "small grin", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2524 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "guayabera", "background": "purple", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2525 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "blue", @@ -30038,33 +37615,42 @@ "hat": "army hat", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2526 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "rainbow suspenders", "fur": "red", "eyes": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2527 + }, "metadata_dict": { "hat": "prussian helmet", "background": "aquamarine", "fur": "death bot", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2528 + }, "metadata_dict": { "fur": "red", "clothes": "smoking jacket", @@ -30073,11 +37659,14 @@ "mouth": "bored", "hat": "police motorcycle helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2529 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "aquamarine", @@ -30086,33 +37675,42 @@ "earring": "silver hoop", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2530 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "dumbfounded", "background": "aquamarine", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2531 + }, "metadata_dict": { "hat": "horns", "fur": "pink", "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2532 + }, "metadata_dict": { "earring": "gold stud", "background": "purple", @@ -30120,11 +37718,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2533 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -30132,11 +37733,14 @@ "background": "gray", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2534 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "pink", @@ -30144,11 +37748,14 @@ "hat": "ww2 pilot helm", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2535 + }, "metadata_dict": { "fur": "red", "mouth": "jovial", @@ -30156,11 +37763,14 @@ "eyes": "bored", "clothes": "toga", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2536 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -30169,11 +37779,14 @@ "fur": "black", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2537 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -30182,11 +37795,14 @@ "hat": "beanie", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2538 + }, "metadata_dict": { "mouth": "jovial", "clothes": "smoking jacket", @@ -30194,11 +37810,14 @@ "hat": "safari", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2539 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", @@ -30207,11 +37826,14 @@ "eyes": "robot", "background": "orange", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2540 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -30220,11 +37842,14 @@ "mouth": "bored pipe", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2541 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", @@ -30232,11 +37857,14 @@ "background": "army green", "clothes": "service", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2542 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "cream", @@ -30244,11 +37872,14 @@ "mouth": "bored", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2543 + }, "metadata_dict": { "clothes": "bandolier", "background": "aquamarine", @@ -30257,11 +37888,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2544 + }, "metadata_dict": { "hat": "horns", "fur": "dark brown", @@ -30269,11 +37903,14 @@ "background": "yellow", "eyes": "crazy", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2545 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -30281,22 +37918,28 @@ "background": "yellow", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2546 + }, "metadata_dict": { "eyes": "robot", "fur": "brown", "background": "purple", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2547 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "zombie", @@ -30304,11 +37947,14 @@ "earring": "gold stud", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2548 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", @@ -30316,22 +37962,28 @@ "background": "gray", "hat": "bayc hat red", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2549 + }, "metadata_dict": { "hat": "s&m hat", "fur": "red", "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2550 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "fur": "cream", @@ -30339,22 +37991,28 @@ "earring": "gold hoop", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2551 + }, "metadata_dict": { "fur": "golden brown", "hat": "girl's hair pink", "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2552 + }, "metadata_dict": { "eyes": "zombie", "clothes": "biker vest", @@ -30362,11 +38020,14 @@ "mouth": "small grin", "hat": "faux hawk", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2553 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -30374,11 +38035,14 @@ "clothes": "black t", "hat": "king's crown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2554 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -30387,22 +38051,28 @@ "earring": "silver hoop", "hat": "fisherman's hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2555 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "aquamarine", "eyes": "3d", "fur": "dark brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2556 + }, "metadata_dict": { "background": "new punk blue", "fur": "cheetah", @@ -30410,11 +38080,14 @@ "eyes": "sleepy", "hat": "police motorcycle helmet", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2557 + }, "metadata_dict": { "clothes": "space suit", "mouth": "jovial", @@ -30422,44 +38095,56 @@ "background": "gray", "hat": "bowler", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2558 + }, "metadata_dict": { "eyes": "zombie", "background": "orange", "hat": "bayc hat red", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2559 + }, "metadata_dict": { "background": "new punk blue", "hat": "short mohawk", "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2560 + }, "metadata_dict": { "fur": "golden brown", "background": "aquamarine", "eyes": "bored", "hat": "safari", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2561 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -30467,22 +38152,28 @@ "background": "blue", "fur": "cheetah", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2562 + }, "metadata_dict": { "eyes": "holographic", "hat": "horns", "fur": "red", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2563 + }, "metadata_dict": { "fur": "cream", "hat": "sea captain's hat", @@ -30490,33 +38181,42 @@ "background": "purple", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2564 + }, "metadata_dict": { "background": "blue", "eyes": "sleepy", "fur": "black", "mouth": "bored unshaven cigarette", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2565 + }, "metadata_dict": { "eyes": "closed", "background": "gray", "mouth": "small grin", "clothes": "lab coat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2566 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -30524,33 +38224,42 @@ "eyes": "zombie", "fur": "black", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2567 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "robot", "hat": "vietnam era helmet", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2568 + }, "metadata_dict": { "background": "gray", "fur": "gray", "clothes": "prison jumpsuit", "mouth": "bored unshaven cigarette", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2569 + }, "metadata_dict": { "eyes": "zombie", "clothes": "prison jumpsuit", @@ -30559,11 +38268,14 @@ "earring": "silver hoop", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2570 + }, "metadata_dict": { "hat": "horns", "earring": "gold hoop", @@ -30571,11 +38283,14 @@ "eyes": "bloodshot", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2571 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "striped tee", @@ -30583,11 +38298,14 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2572 + }, "metadata_dict": { "fur": "red", "mouth": "small grin", @@ -30595,44 +38313,56 @@ "clothes": "tuxedo tee", "hat": "vietnam era helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2573 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black holes t", "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2574 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", "fur": "dmt", "background": "blue", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2575 + }, "metadata_dict": { "mouth": "discomfort", "hat": "fisherman's hat", "fur": "brown", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2576 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -30641,11 +38371,14 @@ "background": "orange", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2577 + }, "metadata_dict": { "fur": "pink", "hat": "cowboy hat", @@ -30653,11 +38386,14 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2578 + }, "metadata_dict": { "background": "new punk blue", "clothes": "smoking jacket", @@ -30665,11 +38401,14 @@ "fur": "brown", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2579 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", @@ -30677,11 +38416,14 @@ "hat": "bowler", "clothes": "guayabera", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2580 + }, "metadata_dict": { "mouth": "grin", "clothes": "prison jumpsuit", @@ -30689,11 +38431,14 @@ "background": "blue", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2581 + }, "metadata_dict": { "eyes": "holographic", "fur": "red", @@ -30701,11 +38446,14 @@ "mouth": "tongue out", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2582 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -30713,22 +38461,28 @@ "eyes": "coins", "background": "aquamarine", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2583 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored unshaven pipe", "background": "aquamarine", "clothes": "biker vest", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2584 + }, "metadata_dict": { "eyes": "sleepy", "background": "blue", @@ -30736,11 +38490,14 @@ "clothes": "prom dress", "hat": "bunny ears", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2585 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin", @@ -30748,11 +38505,14 @@ "clothes": "bone necklace", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2586 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -30760,22 +38520,28 @@ "eyes": "crazy", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2587 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "clothes": "striped tee", "background": "blue", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2588 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -30784,11 +38550,14 @@ "earring": "gold hoop", "background": "aquamarine", "clothes": "smoking jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2589 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", @@ -30797,11 +38566,14 @@ "earring": "silver stud", "fur": "black", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2590 + }, "metadata_dict": { "fur": "golden brown", "hat": "girl's hair pink", @@ -30809,22 +38581,28 @@ "mouth": "tongue out", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2591 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "mouth": "bored", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2592 + }, "metadata_dict": { "earring": "silver stud", "mouth": "phoneme vuh", @@ -30833,11 +38611,14 @@ "eyes": "bloodshot", "hat": "beanie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2593 + }, "metadata_dict": { "fur": "gray", "mouth": "dumbfounded", @@ -30846,11 +38627,14 @@ "earring": "silver hoop", "hat": "cowboy hat", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2594 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -30858,11 +38642,14 @@ "hat": "beanie", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2595 + }, "metadata_dict": { "fur": "golden brown", "mouth": "grin", @@ -30870,11 +38657,14 @@ "earring": "silver hoop", "hat": "faux hawk", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2596 + }, "metadata_dict": { "clothes": "space suit", "hat": "short mohawk", @@ -30882,11 +38672,14 @@ "background": "gray", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2597 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "zombie", @@ -30894,11 +38687,14 @@ "fur": "white", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2598 + }, "metadata_dict": { "hat": "horns", "fur": "dark brown", @@ -30906,11 +38702,14 @@ "background": "gray", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2599 + }, "metadata_dict": { "eyes": "heart", "clothes": "wool turtleneck", @@ -30919,11 +38718,14 @@ "earring": "cross", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2600 + }, "metadata_dict": { "fur": "tan", "clothes": "wool turtleneck", @@ -30931,11 +38733,14 @@ "mouth": "bored", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2601 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "striped tee", @@ -30943,11 +38748,14 @@ "earring": "silver stud", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2602 + }, "metadata_dict": { "mouth": "grin", "hat": "spinner hat", @@ -30956,11 +38764,14 @@ "background": "gray", "eyes": "sleepy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2603 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -30968,22 +38779,28 @@ "fur": "red", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2604 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "brown", "background": "army green", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2605 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", @@ -30991,11 +38808,14 @@ "eyes": "3d", "hat": "bowler", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2606 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "black", @@ -31003,11 +38823,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2607 + }, "metadata_dict": { "clothes": "sailor shirt", "background": "blue", @@ -31015,11 +38838,14 @@ "hat": "fisherman's hat", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2608 + }, "metadata_dict": { "fur": "black", "hat": "faux hawk", @@ -31027,11 +38853,14 @@ "mouth": "bored", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2609 + }, "metadata_dict": { "earring": "diamond stud", "eyes": "bored", @@ -31039,11 +38868,14 @@ "background": "purple", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2610 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -31052,11 +38884,14 @@ "clothes": "work vest", "fur": "dark brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2611 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "horns", @@ -31065,11 +38900,14 @@ "clothes": "smoking jacket", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2612 + }, "metadata_dict": { "hat": "beanie", "eyes": "3d", @@ -31077,11 +38915,14 @@ "fur": "cheetah", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2613 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black holes t", @@ -31089,11 +38930,14 @@ "fur": "black", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2614 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "tan", @@ -31101,11 +38945,14 @@ "background": "blue", "hat": "faux hawk", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2615 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -31113,11 +38960,14 @@ "fur": "pink", "clothes": "smoking jacket", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2616 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "lumberjack shirt", @@ -31125,11 +38975,14 @@ "hat": "bayc flipped brim", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2617 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -31138,22 +38991,28 @@ "fur": "brown", "background": "yellow", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2618 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "prison jumpsuit", "mouth": "dumbfounded", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2619 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin gold grill", @@ -31161,54 +39020,69 @@ "eyes": "zombie", "fur": "dark brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2620 + }, "metadata_dict": { "eyes": "coins", "mouth": "phoneme vuh", "fur": "cheetah", "background": "purple", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2621 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme vuh", "eyes": "robot", "fur": "dark brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2622 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "3d", "background": "yellow", "mouth": "phoneme wah", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2623 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored cigarette", "eyes": "crazy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2624 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "leather punk jacket", @@ -31217,11 +39091,14 @@ "earring": "silver hoop", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2625 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -31229,11 +39106,14 @@ "hat": "short mohawk", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2626 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin", @@ -31241,11 +39121,14 @@ "background": "aquamarine", "eyes": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2627 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -31253,11 +39136,14 @@ "fur": "golden brown", "hat": "cowboy hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2628 + }, "metadata_dict": { "mouth": "bored bubblegum", "fur": "dark brown", @@ -31265,11 +39151,14 @@ "clothes": "tanktop", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2629 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "irish boho", @@ -31277,11 +39166,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2630 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -31290,11 +39182,14 @@ "fur": "red", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2631 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "black", @@ -31302,21 +39197,27 @@ "clothes": "pimp coat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2632 + }, "metadata_dict": { "background": "gray", "eyes": "closed", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2633 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored unshaven pipe", @@ -31324,33 +39225,42 @@ "eyes": "bloodshot", "fur": "dark brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2634 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "mouth": "grin", "eyes": "bloodshot", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2635 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "clothes": "sailor shirt", "eyes": "3d", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2636 + }, "metadata_dict": { "hat": "fez", "earring": "silver hoop", @@ -31359,33 +39269,42 @@ "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2637 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin", "background": "blue", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2638 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "hat": "baby's bonnet", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2639 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "blindfold", @@ -31394,11 +39313,14 @@ "earring": "silver hoop", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2640 + }, "metadata_dict": { "hat": "fez", "background": "blue", @@ -31407,11 +39329,14 @@ "fur": "death bot", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2641 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -31420,11 +39345,14 @@ "clothes": "leather jacket", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2642 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "fez", @@ -31432,11 +39360,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2643 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "irish boho", @@ -31444,22 +39375,28 @@ "eyes": "bloodshot", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2644 + }, "metadata_dict": { "fur": "pink", "background": "orange", "eyes": "bored", "clothes": "lab coat", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2645 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -31467,11 +39404,14 @@ "background": "aquamarine", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2646 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "hat": "bayc flipped brim", @@ -31479,22 +39419,28 @@ "clothes": "toga", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2647 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "work vest", "fur": "pink", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2648 + }, "metadata_dict": { "eyes": "holographic", "mouth": "grin", @@ -31502,11 +39448,14 @@ "fur": "dark brown", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2649 + }, "metadata_dict": { "mouth": "phoneme vuh", "hat": "spinner hat", @@ -31514,11 +39463,14 @@ "fur": "brown", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2650 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "pink", @@ -31526,21 +39478,27 @@ "background": "yellow", "mouth": "phoneme wah", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2651 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored unshaven", "fur": "trippy", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2652 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -31548,55 +39506,70 @@ "eyes": "sleepy", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2653 + }, "metadata_dict": { "background": "aquamarine", "hat": "spinner hat", "fur": "pink", "mouth": "small grin", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2654 + }, "metadata_dict": { "fur": "gray", "eyes": "3d", "background": "purple", "mouth": "phoneme wah", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2655 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "dumbfounded", "fur": "black", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2656 + }, "metadata_dict": { "eyes": "closed", "clothes": "bone tee", "mouth": "grin", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2657 + }, "metadata_dict": { "clothes": "prison jumpsuit", "earring": "silver stud", @@ -31605,22 +39578,28 @@ "hat": "bunny ears", "mouth": "bored cigarette", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2658 + }, "metadata_dict": { "fur": "tan", "eyes": "3d", "mouth": "small grin", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2659 + }, "metadata_dict": { "hat": "irish boho", "background": "blue", @@ -31628,11 +39607,14 @@ "clothes": "tanktop", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2660 + }, "metadata_dict": { "clothes": "bayc t black", "eyes": "bored", @@ -31640,11 +39622,14 @@ "mouth": "bored", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2661 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", @@ -31653,11 +39638,14 @@ "mouth": "tongue out", "clothes": "pimp coat", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2662 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -31665,11 +39653,14 @@ "eyes": "crazy", "background": "army green", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2663 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -31677,11 +39668,14 @@ "clothes": "prison jumpsuit", "background": "blue", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2664 + }, "metadata_dict": { "mouth": "grin multicolored", "earring": "silver stud", @@ -31690,33 +39684,42 @@ "clothes": "navy striped tee", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2665 + }, "metadata_dict": { "eyes": "heart", "background": "aquamarine", "fur": "black", "hat": "bayc flipped brim", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2666 + }, "metadata_dict": { "mouth": "grin", "clothes": "sailor shirt", "fur": "black", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2667 + }, "metadata_dict": { "clothes": "tweed suit", "background": "aquamarine", @@ -31724,22 +39727,28 @@ "eyes": "bored", "mouth": "tongue out", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2668 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "red", "clothes": "biker vest", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2669 + }, "metadata_dict": { "hat": "girl's hair pink", "clothes": "prison jumpsuit", @@ -31747,11 +39756,14 @@ "fur": "pink", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2670 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -31759,11 +39771,14 @@ "fur": "pink", "background": "orange", "clothes": "smoking jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2671 + }, "metadata_dict": { "fur": "gray", "background": "yellow", @@ -31771,11 +39786,14 @@ "earring": "silver hoop", "hat": "beanie", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2672 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -31783,11 +39801,14 @@ "background": "orange", "mouth": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2673 + }, "metadata_dict": { "hat": "irish boho", "fur": "golden brown", @@ -31795,11 +39816,14 @@ "clothes": "bayc t black", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2674 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "background": "orange", @@ -31807,11 +39831,14 @@ "hat": "bunny ears", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2675 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "dumbfounded", @@ -31820,11 +39847,14 @@ "fur": "pink", "hat": "cowboy hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2676 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", @@ -31832,11 +39862,14 @@ "eyes": "robot", "hat": "spinner hat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2677 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -31844,11 +39877,14 @@ "eyes": "bored", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2678 + }, "metadata_dict": { "clothes": "blue dress", "mouth": "phoneme vuh", @@ -31856,11 +39892,14 @@ "hat": "short mohawk", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2679 + }, "metadata_dict": { "fur": "cream", "hat": "sushi chef headband", @@ -31868,22 +39907,28 @@ "clothes": "bone necklace", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2680 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", "background": "orange", "eyes": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2681 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -31891,11 +39936,14 @@ "mouth": "dumbfounded", "fur": "black", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2682 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -31903,11 +39951,14 @@ "hat": "beanie", "mouth": "bored cigarette", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2683 + }, "metadata_dict": { "fur": "brown", "clothes": "black t", @@ -31916,11 +39967,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2684 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -31929,11 +39983,14 @@ "clothes": "bayc t black", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2685 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "blindfold", @@ -31941,11 +39998,14 @@ "hat": "ww2 pilot helm", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2686 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -31953,11 +40013,14 @@ "background": "blue", "eyes": "sleepy", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2687 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -31965,22 +40028,28 @@ "eyes": "bored", "mouth": "tongue out", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2688 + }, "metadata_dict": { "mouth": "grin multicolored", "eyes": "zombie", "background": "blue", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2689 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", @@ -31988,22 +40057,28 @@ "fur": "dark brown", "hat": "commie hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2690 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", "earring": "gold hoop", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2691 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -32012,11 +40087,14 @@ "clothes": "sleeveless logo t", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2692 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "bayc t red", @@ -32024,22 +40102,28 @@ "mouth": "dumbfounded", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2693 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2694 + }, "metadata_dict": { "hat": "laurel wreath", "background": "purple", @@ -32048,11 +40132,14 @@ "earring": "silver hoop", "clothes": "prom dress", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2695 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -32060,11 +40147,14 @@ "earring": "silver hoop", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2696 + }, "metadata_dict": { "mouth": "jovial", "fur": "dark brown", @@ -32072,11 +40162,14 @@ "eyes": "angry", "hat": "police motorcycle helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2697 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "spinner hat", @@ -32084,22 +40177,28 @@ "background": "army green", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2698 + }, "metadata_dict": { "fur": "cream", "clothes": "sailor shirt", "mouth": "rage", "background": "aquamarine", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2699 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "horns", @@ -32108,11 +40207,14 @@ "fur": "pink", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2700 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "leather jacket", @@ -32120,11 +40222,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2701 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", @@ -32132,32 +40237,41 @@ "hat": "spinner hat", "eyes": "bloodshot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2702 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "mouth": "bored unshaven", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2703 + }, "metadata_dict": { "mouth": "grin", "eyes": "robot", "fur": "dark brown", "clothes": "toga", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2704 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver stud", @@ -32166,11 +40280,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2705 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -32178,11 +40295,14 @@ "clothes": "tanktop", "hat": "bowler", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2706 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "baby's bonnet", @@ -32190,11 +40310,14 @@ "clothes": "guayabera", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2707 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", @@ -32203,22 +40326,28 @@ "mouth": "jovial", "earring": "gold stud", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2708 + }, "metadata_dict": { "clothes": "bone necklace", "background": "purple", "mouth": "bored", "eyes": "crazy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2709 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -32226,11 +40355,14 @@ "background": "orange", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2710 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -32238,11 +40370,14 @@ "mouth": "small grin", "clothes": "bone necklace", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2711 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "horns", @@ -32250,11 +40385,14 @@ "fur": "cheetah", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2712 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -32263,11 +40401,14 @@ "eyes": "robot", "background": "orange", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2713 + }, "metadata_dict": { "clothes": "sailor shirt", "eyes": "wide eyed", @@ -32275,11 +40416,14 @@ "fur": "noise", "hat": "police motorcycle helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2714 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -32287,11 +40431,14 @@ "eyes": "robot", "background": "orange", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2715 + }, "metadata_dict": { "fur": "golden brown", "hat": "fez", @@ -32299,11 +40446,14 @@ "background": "purple", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2716 + }, "metadata_dict": { "clothes": "bayc t red", "earring": "gold hoop", @@ -32312,11 +40462,14 @@ "eyes": "bored", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2717 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "jovial", @@ -32324,11 +40477,14 @@ "eyes": "crazy", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2718 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -32336,11 +40492,14 @@ "background": "yellow", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2719 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", @@ -32348,11 +40507,14 @@ "background": "blue", "fur": "cheetah", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2720 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -32360,33 +40522,42 @@ "eyes": "3d", "hat": "ww2 pilot helm", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2721 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "brown", "mouth": "rage", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2722 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "gray", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2723 + }, "metadata_dict": { "eyes": "hypnotized", "background": "gray", @@ -32394,33 +40565,42 @@ "fur": "death bot", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2724 + }, "metadata_dict": { "mouth": "phoneme vuh", "clothes": "tie dye", "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2725 + }, "metadata_dict": { "fur": "tan", "mouth": "bored kazoo", "background": "blue", "eyes": "bloodshot", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2726 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", @@ -32429,11 +40609,14 @@ "eyes": "bored", "hat": "vietnam era helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2727 + }, "metadata_dict": { "clothes": "vietnam jacket", "eyes": "bloodshot", @@ -32441,11 +40624,14 @@ "mouth": "bored", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2728 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "diamond stud", @@ -32453,11 +40639,14 @@ "fur": "cheetah", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2729 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", @@ -32465,22 +40654,28 @@ "background": "blue", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2730 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "fur": "black", "eyes": "3d", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2731 + }, "metadata_dict": { "eyes": "heart", "hat": "bandana blue", @@ -32489,11 +40684,14 @@ "mouth": "dumbfounded", "earring": "cross", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2732 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "sushi chef headband", @@ -32501,21 +40699,27 @@ "eyes": "bloodshot", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2733 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", "eyes": "scumbag", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2734 + }, "metadata_dict": { "fur": "tan", "hat": "s&m hat", @@ -32523,11 +40727,14 @@ "mouth": "bored pipe", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2735 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -32535,22 +40742,28 @@ "fur": "brown", "hat": "vietnam era helmet", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2736 + }, "metadata_dict": { "fur": "cream", "background": "orange", "clothes": "smoking jacket", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2737 + }, "metadata_dict": { "clothes": "striped tee", "hat": "s&m hat", @@ -32558,33 +40771,42 @@ "eyes": "bloodshot", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2738 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "yellow", "fur": "red", "eyes": "bloodshot", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2739 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "new punk blue", "fur": "gray", "eyes": "bored", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2740 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "bored unshaven cigar", @@ -32593,11 +40815,14 @@ "hat": "girl's hair short", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2741 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "black t", @@ -32605,11 +40830,14 @@ "fur": "black", "background": "gray", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2742 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "scumbag", @@ -32617,21 +40845,27 @@ "background": "blue", "hat": "short mohawk", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2743 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "eyes": "bored", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2744 + }, "metadata_dict": { "fur": "black", "eyes": "bored", @@ -32639,11 +40873,14 @@ "background": "yellow", "hat": "bunny ears", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2745 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -32651,11 +40888,14 @@ "background": "yellow", "clothes": "stunt jacket", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2746 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "black holes t", @@ -32664,11 +40904,14 @@ "background": "gray", "earring": "cross", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2747 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -32676,22 +40919,28 @@ "fur": "brown", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2748 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "fur": "gray", "hat": "short mohawk", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2749 + }, "metadata_dict": { "fur": "cream", "eyes": "bored", @@ -32699,11 +40948,14 @@ "background": "yellow", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2750 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "work vest", @@ -32711,11 +40963,14 @@ "hat": "girl's hair short", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2751 + }, "metadata_dict": { "mouth": "discomfort", "earring": "gold hoop", @@ -32723,11 +40978,14 @@ "clothes": "guayabera", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2752 + }, "metadata_dict": { "hat": "horns", "mouth": "phoneme vuh", @@ -32735,11 +40993,14 @@ "eyes": "bored", "background": "gray", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2753 + }, "metadata_dict": { "earring": "silver stud", "eyes": "3d", @@ -32748,11 +41009,14 @@ "mouth": "tongue out", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2754 + }, "metadata_dict": { "eyes": "heart", "fur": "brown", @@ -32760,22 +41024,28 @@ "background": "gray", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2755 + }, "metadata_dict": { "eyes": "holographic", "earring": "diamond stud", "mouth": "dumbfounded", "background": "orange", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2756 + }, "metadata_dict": { "fur": "cream", "hat": "horns", @@ -32784,11 +41054,14 @@ "earring": "gold stud", "eyes": "bloodshot", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2757 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", @@ -32796,11 +41069,14 @@ "background": "blue", "hat": "faux hawk", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2758 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -32809,22 +41085,28 @@ "earring": "silver hoop", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2759 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "bandolier", "eyes": "holographic", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2760 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "yellow", @@ -32832,11 +41114,14 @@ "fur": "brown", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2761 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "leather jacket", @@ -32845,22 +41130,28 @@ "hat": "army hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2762 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", "mouth": "bored unshaven", "clothes": "sailor shirt", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2763 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -32868,11 +41159,14 @@ "background": "orange", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2764 + }, "metadata_dict": { "clothes": "space suit", "mouth": "grin multicolored", @@ -32880,33 +41174,42 @@ "eyes": "3d", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2765 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "clothes": "leather jacket", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2766 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", "hat": "vietnam era helmet", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2767 + }, "metadata_dict": { "hat": "prussian helmet", "fur": "dark brown", @@ -32914,11 +41217,14 @@ "background": "army green", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2768 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "s&m hat", @@ -32927,11 +41233,14 @@ "earring": "gold stud", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2769 + }, "metadata_dict": { "fur": "gray", "mouth": "phoneme vuh", @@ -32939,11 +41248,14 @@ "eyes": "crazy", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2770 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "horns", @@ -32951,11 +41263,14 @@ "fur": "dark brown", "clothes": "tuxedo tee", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2771 + }, "metadata_dict": { "eyes": "holographic", "hat": "prussian helmet", @@ -32963,11 +41278,14 @@ "clothes": "stunt jacket", "mouth": "bored cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2772 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "closed", @@ -32976,21 +41294,27 @@ "earring": "diamond stud", "fur": "pink", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2773 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", "eyes": "bored", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2774 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -32998,11 +41322,14 @@ "mouth": "tongue out", "fur": "brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2775 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -33010,11 +41337,14 @@ "mouth": "bored", "hat": "halo", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2776 + }, "metadata_dict": { "fur": "gray", "mouth": "rage", @@ -33022,11 +41352,14 @@ "background": "gray", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2777 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "pink", @@ -33034,11 +41367,14 @@ "clothes": "sleeveless logo t", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2778 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -33047,11 +41383,14 @@ "hat": "cowboy hat", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2779 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -33059,11 +41398,14 @@ "background": "orange", "clothes": "sleeveless logo t", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2780 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "hypnotized", @@ -33071,11 +41413,14 @@ "clothes": "bayc t black", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2781 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "holographic", @@ -33083,22 +41428,28 @@ "background": "gray", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2782 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", "background": "blue", "eyes": "bloodshot", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2783 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "black t", @@ -33106,11 +41457,14 @@ "fur": "death bot", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2784 + }, "metadata_dict": { "eyes": "closed", "background": "blue", @@ -33118,11 +41472,14 @@ "mouth": "small grin", "fur": "dark brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2785 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -33131,22 +41488,28 @@ "eyes": "robot", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2786 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "hat": "seaman's hat", "eyes": "3d", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2787 + }, "metadata_dict": { "fur": "golden brown", "eyes": "zombie", @@ -33154,11 +41517,14 @@ "mouth": "dumbfounded", "background": "aquamarine", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2788 + }, "metadata_dict": { "clothes": "black holes t", "background": "orange", @@ -33166,11 +41532,14 @@ "fur": "brown", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2789 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "brown", @@ -33178,11 +41547,14 @@ "background": "orange", "clothes": "tanktop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2790 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "baby's bonnet", @@ -33191,22 +41563,28 @@ "background": "yellow", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2791 + }, "metadata_dict": { "eyes": "holographic", "fur": "black", "hat": "army hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2792 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -33214,11 +41592,14 @@ "mouth": "bored", "clothes": "admirals coat", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2793 + }, "metadata_dict": { "eyes": "heart", "mouth": "rage", @@ -33226,22 +41607,28 @@ "clothes": "bone necklace", "hat": "commie hat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2794 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "background": "aquamarine", "clothes": "cowboy shirt", "fur": "robot", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2795 + }, "metadata_dict": { "hat": "party hat 2", "fur": "gray", @@ -33249,22 +41636,28 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2796 + }, "metadata_dict": { "fur": "red", "mouth": "bored", "eyes": "bored", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2797 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", @@ -33272,22 +41665,28 @@ "mouth": "bored cigarette", "eyes": "cyborg", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2798 + }, "metadata_dict": { "eyes": "closed", "mouth": "discomfort", "fur": "dark brown", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2799 + }, "metadata_dict": { "mouth": "discomfort", "fur": "golden brown", @@ -33296,11 +41695,14 @@ "clothes": "toga", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2800 + }, "metadata_dict": { "mouth": "bored unshaven dagger", "background": "orange", @@ -33308,33 +41710,42 @@ "hat": "bayc flipped brim", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2801 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", "fur": "dark brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2802 + }, "metadata_dict": { "eyes": "robot", "background": "orange", "mouth": "bored", "fur": "white", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2803 + }, "metadata_dict": { "clothes": "striped tee", "hat": "party hat 1", @@ -33342,11 +41753,14 @@ "fur": "dark brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2804 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -33354,22 +41768,28 @@ "clothes": "black t", "hat": "fisherman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2805 + }, "metadata_dict": { "mouth": "grin", "fur": "red", "clothes": "tanktop", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2806 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored kazoo", @@ -33377,11 +41797,14 @@ "fur": "golden brown", "earring": "gold hoop", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2807 + }, "metadata_dict": { "hat": "horns", "mouth": "grin multicolored", @@ -33389,11 +41812,14 @@ "clothes": "bayc t black", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2808 + }, "metadata_dict": { "clothes": "leather jacket", "eyes": "bored", @@ -33401,11 +41827,14 @@ "background": "purple", "hat": "safari", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2809 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -33414,11 +41843,14 @@ "eyes": "3d", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2810 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -33427,22 +41859,28 @@ "fur": "pink", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2811 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "fur": "dark brown", "eyes": "sleepy", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2812 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -33450,11 +41888,14 @@ "eyes": "bored", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2813 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -33462,11 +41903,14 @@ "clothes": "biker vest", "fur": "noise", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2814 + }, "metadata_dict": { "hat": "girl's hair pink", "mouth": "rage", @@ -33474,11 +41918,14 @@ "clothes": "smoking jacket", "fur": "cheetah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2815 + }, "metadata_dict": { "mouth": "rage", "earring": "silver stud", @@ -33486,11 +41933,14 @@ "eyes": "bloodshot", "background": "orange", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2816 + }, "metadata_dict": { "hat": "bandana blue", "background": "aquamarine", @@ -33498,33 +41948,42 @@ "eyes": "bored", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2817 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "hat": "girl's hair pink", "mouth": "rage", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2818 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", "mouth": "bored unshaven", "fur": "pink", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2819 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -33532,22 +41991,28 @@ "earring": "gold stud", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2820 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "prison jumpsuit", "eyes": "sleepy", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2821 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "phoneme vuh", @@ -33555,32 +42020,41 @@ "background": "orange", "eyes": "bloodshot", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2822 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "background": "orange", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2823 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "background": "blue", "fur": "black", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2824 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "horns", @@ -33589,11 +42063,14 @@ "background": "orange", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2825 + }, "metadata_dict": { "hat": "s&m hat", "earring": "silver stud", @@ -33601,22 +42078,28 @@ "eyes": "bored", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2826 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", "hat": "bayc hat red", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2827 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "jovial", @@ -33624,33 +42107,42 @@ "eyes": "bored", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2828 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "mouth": "phoneme ooo", "background": "aquamarine", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2829 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "mouth": "bored unshaven cigarette", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2830 + }, "metadata_dict": { "eyes": "holographic", "hat": "sushi chef headband", @@ -33658,22 +42150,28 @@ "background": "blue", "mouth": "bored bubblegum", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2831 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", "mouth": "phoneme vuh", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2832 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "bayc t red", @@ -33681,11 +42179,14 @@ "background": "blue", "fur": "pink", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2833 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "red", @@ -33693,11 +42194,14 @@ "background": "orange", "eyes": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2834 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -33706,11 +42210,14 @@ "fur": "brown", "clothes": "bone necklace", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2835 + }, "metadata_dict": { "earring": "diamond stud", "clothes": "leather jacket", @@ -33718,11 +42225,14 @@ "fur": "cheetah", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2836 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -33730,11 +42240,14 @@ "clothes": "leather jacket", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2837 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "irish boho", @@ -33742,11 +42255,14 @@ "clothes": "smoking jacket", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2838 + }, "metadata_dict": { "clothes": "rainbow suspenders", "mouth": "phoneme vuh", @@ -33754,11 +42270,14 @@ "eyes": "robot", "fur": "dark brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2839 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven party horn", @@ -33766,11 +42285,14 @@ "background": "orange", "eyes": "bloodshot", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2840 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -33779,11 +42301,14 @@ "hat": "bowler", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2841 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "black", @@ -33791,22 +42316,28 @@ "background": "yellow", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2842 + }, "metadata_dict": { "mouth": "grin", "eyes": "bored", "fur": "brown", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2843 + }, "metadata_dict": { "eyes": "hypnotized", "earring": "gold hoop", @@ -33815,22 +42346,28 @@ "fur": "brown", "hat": "bunny ears", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2844 + }, "metadata_dict": { "mouth": "rage", "background": "blue", "fur": "dark brown", "eyes": "sleepy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2845 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", @@ -33838,11 +42375,14 @@ "hat": "commie hat", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2846 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -33851,11 +42391,14 @@ "background": "aquamarine", "earring": "gold stud", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2847 + }, "metadata_dict": { "fur": "gray", "mouth": "tongue out", @@ -33863,11 +42406,14 @@ "eyes": "sleepy", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2848 + }, "metadata_dict": { "hat": "s&m hat", "earring": "gold hoop", @@ -33876,11 +42422,14 @@ "eyes": "bored", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2849 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -33888,11 +42437,14 @@ "fur": "black", "hat": "cowboy hat", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2850 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -33901,11 +42453,14 @@ "hat": "fisherman's hat", "fur": "cheetah", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2851 + }, "metadata_dict": { "background": "yellow", "clothes": "biker vest", @@ -33913,11 +42468,14 @@ "eyes": "bloodshot", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2852 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -33925,22 +42483,28 @@ "clothes": "black t", "fur": "dark brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2853 + }, "metadata_dict": { "fur": "tan", "clothes": "prison jumpsuit", "mouth": "bored pipe", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2854 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -33948,22 +42512,28 @@ "fur": "golden brown", "clothes": "rainbow suspenders", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2855 + }, "metadata_dict": { "eyes": "coins", "clothes": "stunt jacket", "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2856 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -33971,22 +42541,28 @@ "clothes": "sailor shirt", "mouth": "bored unshaven cigarette", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2857 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "king's crown", "fur": "black", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2858 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -33994,22 +42570,28 @@ "clothes": "tuxedo tee", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2859 + }, "metadata_dict": { "eyes": "coins", "background": "aquamarine", "mouth": "small grin", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2860 + }, "metadata_dict": { "hat": "irish boho", "fur": "black", @@ -34017,11 +42599,14 @@ "background": "gray", "clothes": "stunt jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2861 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -34029,11 +42614,14 @@ "eyes": "bored", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2862 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", @@ -34041,11 +42629,14 @@ "hat": "fez", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2863 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "dmt", @@ -34053,33 +42644,42 @@ "clothes": "tie dye", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2864 + }, "metadata_dict": { "eyes": "heart", "background": "aquamarine", "fur": "black", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2865 + }, "metadata_dict": { "eyes": "scumbag", "background": "aquamarine", "fur": "pink", "mouth": "bored unshaven kazoo", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2866 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -34087,33 +42687,42 @@ "clothes": "toga", "background": "gray", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2867 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", "earring": "silver stud", "background": "blue", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2868 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", "fur": "dmt", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2869 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", @@ -34121,11 +42730,14 @@ "fur": "dark brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2870 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -34133,11 +42745,14 @@ "hat": "army hat", "clothes": "hip hop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2871 + }, "metadata_dict": { "eyes": "blindfold", "fur": "golden brown", @@ -34145,11 +42760,14 @@ "earring": "silver stud", "clothes": "smoking jacket", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2872 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "rage", @@ -34157,22 +42775,28 @@ "background": "orange", "fur": "dark brown", "clothes": "smoking jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2873 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", "fur": "golden brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2874 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "purple", @@ -34181,11 +42805,14 @@ "clothes": "guayabera", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2875 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -34193,44 +42820,56 @@ "fur": "cheetah", "background": "yellow", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2876 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "bored unshaven", "eyes": "bloodshot", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2877 + }, "metadata_dict": { "fur": "tan", "eyes": "zombie", "mouth": "rage", "hat": "fisherman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2878 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "cyborg", "earring": "silver stud", "background": "aquamarine", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2879 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "pink", @@ -34238,11 +42877,14 @@ "background": "army green", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2880 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "gold stud", @@ -34251,11 +42893,14 @@ "clothes": "bone necklace", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2881 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -34263,11 +42908,14 @@ "clothes": "leather jacket", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2882 + }, "metadata_dict": { "eyes": "x eyes", "fur": "pink", @@ -34275,33 +42923,42 @@ "hat": "bunny ears", "background": "purple", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2883 + }, "metadata_dict": { "mouth": "bored unshaven cigar", "background": "yellow", "clothes": "stunt jacket", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2884 + }, "metadata_dict": { "mouth": "rage", "fur": "pink", "eyes": "bloodshot", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2885 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "pimp coat", @@ -34309,11 +42966,14 @@ "hat": "cowboy hat", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2886 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", @@ -34322,11 +42982,14 @@ "fur": "brown", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2887 + }, "metadata_dict": { "background": "new punk blue", "hat": "trippy captain's hat", @@ -34334,22 +42997,28 @@ "fur": "death bot", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2888 + }, "metadata_dict": { "fur": "gray", "background": "orange", "hat": "girl's hair short", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2889 + }, "metadata_dict": { "hat": "horns", "eyes": "zombie", @@ -34357,11 +43026,14 @@ "fur": "dark brown", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2890 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "seaman's hat", @@ -34369,22 +43041,28 @@ "fur": "black", "mouth": "small grin", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2891 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "jovial", "eyes": "bored", "background": "gray", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2892 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "blue", @@ -34392,44 +43070,56 @@ "background": "orange", "hat": "short mohawk", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2893 + }, "metadata_dict": { "fur": "gray", "mouth": "dumbfounded", "background": "yellow", "clothes": "service", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2894 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", "fur": "brown", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2895 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "blue", "clothes": "tuxedo tee", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2896 + }, "metadata_dict": { "hat": "king's crown", "eyes": "wide eyed", @@ -34437,32 +43127,41 @@ "background": "blue", "fur": "pink", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2897 + }, "metadata_dict": { "background": "purple", "eyes": "closed", "fur": "gray", "mouth": "grin gold grill" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2898 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", "clothes": "sleeveless t", "eyes": "3d", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2899 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -34470,11 +43169,14 @@ "clothes": "toga", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2900 + }, "metadata_dict": { "fur": "golden brown", "hat": "party hat 1", @@ -34482,11 +43184,14 @@ "clothes": "lab coat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2901 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -34494,11 +43199,14 @@ "hat": "horns", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2902 + }, "metadata_dict": { "mouth": "grin", "clothes": "sailor shirt", @@ -34506,11 +43214,14 @@ "background": "orange", "fur": "cheetah", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2903 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "grin", @@ -34518,11 +43229,14 @@ "background": "yellow", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2904 + }, "metadata_dict": { "earring": "silver stud", "mouth": "dumbfounded", @@ -34531,22 +43245,28 @@ "clothes": "toga", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2905 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "brown", "mouth": "bored cigarette", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2906 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "prussian helmet", @@ -34554,11 +43274,14 @@ "eyes": "sleepy", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2907 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -34566,42 +43289,54 @@ "background": "orange", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2908 + }, "metadata_dict": { "mouth": "jovial", "fur": "black", "background": "purple", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2909 + }, "metadata_dict": { "background": "purple", "eyes": "sleepy", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2910 + }, "metadata_dict": { "fur": "brown", "eyes": "heart", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2911 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", @@ -34609,11 +43344,14 @@ "background": "blue", "fur": "dark brown", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2912 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", @@ -34622,44 +43360,56 @@ "hat": "bayc flipped brim", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2913 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "army hat", "background": "gray", "eyes": "crazy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2914 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "fez", "fur": "black", "eyes": "3d", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2915 + }, "metadata_dict": { "mouth": "jovial", "fur": "red", "clothes": "tuxedo tee", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2916 + }, "metadata_dict": { "eyes": "heart", "clothes": "bayc t red", @@ -34668,11 +43418,14 @@ "hat": "fisherman's hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2917 + }, "metadata_dict": { "eyes": "closed", "hat": "halo", @@ -34681,11 +43434,14 @@ "fur": "black", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2918 + }, "metadata_dict": { "background": "blue", "earring": "gold stud", @@ -34693,11 +43449,14 @@ "mouth": "small grin", "hat": "beanie", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2919 + }, "metadata_dict": { "fur": "tan", "clothes": "bandolier", @@ -34705,11 +43464,14 @@ "background": "aquamarine", "eyes": "3d", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2920 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -34718,32 +43480,41 @@ "background": "purple", "fur": "white", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2921 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "golden brown", "hat": "prussian helmet", "mouth": "bored bubblegum" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2922 + }, "metadata_dict": { "fur": "brown", "eyes": "closed", "background": "aquamarine", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2923 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "leather punk jacket", @@ -34752,11 +43523,14 @@ "fur": "brown", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2924 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -34764,11 +43538,14 @@ "eyes": "bored", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2925 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tanktop", @@ -34776,22 +43553,28 @@ "hat": "commie hat", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2926 + }, "metadata_dict": { "fur": "red", "background": "aquamarine", "eyes": "3d", "clothes": "bayc t black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2927 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -34799,11 +43582,14 @@ "clothes": "biker vest", "mouth": "bored unshaven cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2928 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -34811,11 +43597,14 @@ "eyes": "bloodshot", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2929 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "phoneme ooo", @@ -34823,22 +43612,28 @@ "fur": "golden brown", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2930 + }, "metadata_dict": { "eyes": "heart", "hat": "sushi chef headband", "background": "orange", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2931 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -34846,11 +43641,14 @@ "background": "orange", "mouth": "small grin", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2932 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "s&m hat", @@ -34858,11 +43656,14 @@ "background": "gray", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2933 + }, "metadata_dict": { "fur": "cream", "eyes": "sad", @@ -34871,11 +43672,14 @@ "earring": "silver hoop", "hat": "commie hat", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2934 + }, "metadata_dict": { "earring": "gold stud", "hat": "short mohawk", @@ -34883,11 +43687,14 @@ "background": "purple", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2935 + }, "metadata_dict": { "clothes": "rainbow suspenders", "earring": "silver stud", @@ -34895,11 +43702,14 @@ "eyes": "bloodshot", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2936 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -34907,22 +43717,28 @@ "eyes": "3d", "background": "orange", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2937 + }, "metadata_dict": { "fur": "tan", "hat": "stuntman helmet", "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2938 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "cheetah", @@ -34931,21 +43747,27 @@ "earring": "silver hoop", "hat": "fisherman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2939 + }, "metadata_dict": { "mouth": "jovial", "background": "blue", "eyes": "holographic", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2940 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -34953,11 +43775,14 @@ "mouth": "bored unshaven bubblegum", "clothes": "lab coat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2941 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "bayc t red", @@ -34965,11 +43790,14 @@ "fur": "dark brown", "background": "purple", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2942 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -34977,11 +43805,14 @@ "fur": "noise", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2943 + }, "metadata_dict": { "mouth": "grin", "clothes": "rainbow suspenders", @@ -34989,11 +43820,14 @@ "fur": "black", "hat": "bowler", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2944 + }, "metadata_dict": { "mouth": "rage", "background": "blue", @@ -35001,11 +43835,14 @@ "eyes": "sleepy", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2945 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "rage", @@ -35013,11 +43850,14 @@ "hat": "commie hat", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2946 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -35026,11 +43866,14 @@ "earring": "gold stud", "hat": "cowboy hat", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2947 + }, "metadata_dict": { "fur": "black", "hat": "cowboy hat", @@ -35038,11 +43881,14 @@ "mouth": "bored", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2948 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -35050,11 +43896,14 @@ "hat": "vietnam era helmet", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2949 + }, "metadata_dict": { "eyes": "sad", "fur": "black", @@ -35062,22 +43911,28 @@ "mouth": "bored", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2950 + }, "metadata_dict": { "background": "gray", "mouth": "jovial", "eyes": "bored", "hat": "faux hawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2951 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -35085,11 +43940,14 @@ "earring": "silver stud", "fur": "pink", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2952 + }, "metadata_dict": { "mouth": "jovial", "background": "orange", @@ -35097,11 +43955,14 @@ "fur": "death bot", "eyes": "angry", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2953 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -35109,11 +43970,14 @@ "eyes": "bored", "hat": "fisherman's hat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2954 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -35121,11 +43985,14 @@ "clothes": "tuxedo tee", "hat": "fisherman's hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2955 + }, "metadata_dict": { "eyes": "blindfold", "hat": "stuntman helmet", @@ -35133,11 +44000,14 @@ "fur": "black", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2956 + }, "metadata_dict": { "eyes": "bloodshot", "earring": "silver hoop", @@ -35146,11 +44016,14 @@ "background": "purple", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2957 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "hypnotized", @@ -35158,22 +44031,28 @@ "mouth": "grin", "background": "aquamarine", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2958 + }, "metadata_dict": { "eyes": "bloodshot", "earring": "silver hoop", "fur": "cheetah", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2959 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "tweed suit", @@ -35181,44 +44060,56 @@ "eyes": "bloodshot", "background": "purple", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2960 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", "eyes": "holographic", "hat": "cowboy hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2961 + }, "metadata_dict": { "fur": "tan", "eyes": "bored", "background": "yellow", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2962 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", "eyes": "zombie", "background": "aquamarine", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2963 + }, "metadata_dict": { "fur": "robot", "clothes": "sleeveless t", @@ -35226,11 +44117,14 @@ "hat": "bowler", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2964 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -35239,11 +44133,14 @@ "clothes": "black t", "mouth": "rage", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2965 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "diamond stud", @@ -35252,11 +44149,14 @@ "eyes": "3d", "fur": "dark brown", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2966 + }, "metadata_dict": { "fur": "gray", "earring": "silver stud", @@ -35264,11 +44164,14 @@ "clothes": "sleeveless logo t", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2967 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "bored unshaven party horn", @@ -35276,11 +44179,14 @@ "background": "yellow", "fur": "dark brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2968 + }, "metadata_dict": { "hat": "party hat 1", "fur": "dark brown", @@ -35288,44 +44194,56 @@ "background": "purple", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2969 + }, "metadata_dict": { "mouth": "grin multicolored", "eyes": "robot", "fur": "brown", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2970 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", "background": "blue", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2971 + }, "metadata_dict": { "mouth": "bored unshaven kazoo", "eyes": "bored", "background": "army green", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2972 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "dark brown", @@ -35333,22 +44251,28 @@ "background": "gray", "mouth": "bored cigar", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2973 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "golden brown", "earring": "gold hoop", "background": "blue", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2974 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", @@ -35356,22 +44280,28 @@ "fur": "pink", "hat": "girl's hair short", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2975 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat red", "eyes": "sleepy", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2976 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -35380,33 +44310,42 @@ "fur": "red", "background": "orange", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2977 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", "clothes": "prison jumpsuit", "background": "blue", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2978 + }, "metadata_dict": { "clothes": "biker vest", "eyes": "bored", "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2979 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -35414,11 +44353,14 @@ "mouth": "bored", "fur": "white", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2980 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -35427,11 +44369,14 @@ "clothes": "sleeveless logo t", "mouth": "bored unshaven dagger", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2981 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -35439,22 +44384,28 @@ "clothes": "bayc t black", "hat": "girl's hair short", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2982 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "mouth": "bored bubblegum", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2983 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "stuntman helmet", @@ -35462,33 +44413,42 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2984 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "zombie", "background": "orange", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2985 + }, "metadata_dict": { "mouth": "grin", "fur": "brown", "background": "gray", "clothes": "hip hop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2986 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "kings robe", @@ -35497,11 +44457,14 @@ "earring": "cross", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2987 + }, "metadata_dict": { "eyes": "holographic", "hat": "sushi chef headband", @@ -35509,11 +44472,14 @@ "fur": "gray", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2988 + }, "metadata_dict": { "eyes": "scumbag", "hat": "prussian helmet", @@ -35521,11 +44487,14 @@ "fur": "pink", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2989 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored cigarette", @@ -35533,11 +44502,14 @@ "fur": "pink", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2990 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -35546,11 +44518,14 @@ "hat": "bunny ears", "earring": "cross", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2991 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -35559,33 +44534,42 @@ "mouth": "bored cigarette", "clothes": "caveman pelt", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2992 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", "eyes": "sleepy", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2993 + }, "metadata_dict": { "eyes": "heart", "fur": "dark brown", "hat": "bayc flipped brim", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2994 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "irish boho", @@ -35593,21 +44577,27 @@ "mouth": "dumbfounded", "background": "blue", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2995 + }, "metadata_dict": { "background": "aquamarine", "fur": "tan", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2996 + }, "metadata_dict": { "hat": "laurel wreath", "clothes": "vietnam jacket", @@ -35615,22 +44605,28 @@ "fur": "cheetah", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2997 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "phoneme vuh", "fur": "dark brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2998 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "prison jumpsuit", @@ -35638,11 +44634,14 @@ "hat": "army hat", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 2999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 2999 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -35650,11 +44649,14 @@ "hat": "stuntman helmet", "background": "aquamarine", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3000 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -35663,22 +44665,28 @@ "eyes": "3d", "earring": "silver hoop", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3001 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "black t", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3002 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", @@ -35686,11 +44694,14 @@ "hat": "bunny ears", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3003 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", @@ -35698,22 +44709,28 @@ "eyes": "bloodshot", "clothes": "sleeveless logo t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3004 + }, "metadata_dict": { "eyes": "closed", "hat": "short mohawk", "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3005 + }, "metadata_dict": { "eyes": "closed", "hat": "bandana blue", @@ -35722,11 +44739,14 @@ "earring": "gold stud", "fur": "pink", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3006 + }, "metadata_dict": { "hat": "horns", "background": "blue", @@ -35734,11 +44754,14 @@ "clothes": "bayc t black", "mouth": "bored unshaven cigar", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3007 + }, "metadata_dict": { "eyes": "closed", "clothes": "lumberjack shirt", @@ -35746,11 +44769,14 @@ "fur": "golden brown", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3008 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -35759,11 +44785,14 @@ "clothes": "tanktop", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3009 + }, "metadata_dict": { "hat": "irish boho", "eyes": "zombie", @@ -35772,22 +44801,28 @@ "clothes": "leather jacket", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3010 + }, "metadata_dict": { "fur": "dmt", "eyes": "coins", "mouth": "dumbfounded", "background": "blue", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3011 + }, "metadata_dict": { "background": "gray", "mouth": "grin", @@ -35795,11 +44830,14 @@ "eyes": "bloodshot", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3012 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", @@ -35807,11 +44845,14 @@ "background": "purple", "mouth": "phoneme wah", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3013 + }, "metadata_dict": { "hat": "horns", "background": "aquamarine", @@ -35819,11 +44860,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3014 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bloodshot", @@ -35831,11 +44875,14 @@ "earring": "silver hoop", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3015 + }, "metadata_dict": { "background": "aquamarine", "hat": "short mohawk", @@ -35843,22 +44890,28 @@ "fur": "white", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3016 + }, "metadata_dict": { "fur": "tan", "background": "aquamarine", "eyes": "bloodshot", "clothes": "bayc t black", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3017 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven bubblegum", @@ -35866,22 +44919,28 @@ "clothes": "tweed suit", "background": "blue", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3018 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "hat": "king's crown", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3019 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", @@ -35889,22 +44948,28 @@ "earring": "gold hoop", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3020 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", "fur": "red", "background": "orange", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3021 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "phoneme vuh", @@ -35912,11 +44977,14 @@ "hat": "army hat", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3022 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin diamond grill", @@ -35924,11 +44992,14 @@ "background": "yellow", "clothes": "guayabera", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3023 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "gray", @@ -35936,11 +45007,14 @@ "background": "aquamarine", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3024 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -35948,11 +45022,14 @@ "fur": "black", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3025 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", @@ -35960,11 +45037,14 @@ "fur": "golden brown", "hat": "army hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3026 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -35972,22 +45052,28 @@ "fur": "dmt", "mouth": "dumbfounded", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3027 + }, "metadata_dict": { "fur": "cream", "hat": "stuntman helmet", "background": "blue", "mouth": "small grin", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3028 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -35995,11 +45081,14 @@ "fur": "dark brown", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3029 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -36007,11 +45096,14 @@ "fur": "brown", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3030 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -36019,11 +45111,14 @@ "background": "aquamarine", "clothes": "leather jacket", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3031 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -36031,11 +45126,14 @@ "hat": "army hat", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3032 + }, "metadata_dict": { "fur": "tan", "clothes": "blue dress", @@ -36043,11 +45141,14 @@ "hat": "fez", "mouth": "tongue out", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3033 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "blue", @@ -36055,11 +45156,14 @@ "fur": "cheetah", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3034 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -36068,22 +45172,28 @@ "hat": "beanie", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3035 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", "fur": "black", "hat": "bayc flipped brim", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3036 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -36092,66 +45202,84 @@ "earring": "silver hoop", "clothes": "tanktop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3037 + }, "metadata_dict": { "eyes": "heart", "fur": "dark brown", "mouth": "bored", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3038 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "dmt", "background": "aquamarine", "eyes": "3d", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3039 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "holographic", "earring": "diamond stud", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3040 + }, "metadata_dict": { "background": "blue", "mouth": "small grin", "fur": "brown", "clothes": "guayabera", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3041 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "clothes": "toga", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3042 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "grin", @@ -36160,11 +45288,14 @@ "background": "purple", "fur": "white", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3043 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "diamond stud", @@ -36173,11 +45304,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3044 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", @@ -36186,33 +45320,42 @@ "clothes": "tanktop", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3045 + }, "metadata_dict": { "eyes": "zombie", "hat": "fez", "mouth": "dumbfounded", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3046 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "fur": "golden brown", "eyes": "robot", "background": "orange", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3047 + }, "metadata_dict": { "clothes": "bandolier", "fur": "black", @@ -36221,11 +45364,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3048 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "phoneme ooo", @@ -36234,11 +45380,14 @@ "earring": "silver hoop", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3049 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -36247,11 +45396,14 @@ "earring": "silver stud", "clothes": "bayc t black", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3050 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -36260,22 +45412,28 @@ "earring": "gold stud", "eyes": "3d", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3051 + }, "metadata_dict": { "earring": "silver hoop", "fur": "cheetah", "background": "yellow", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3052 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black t", @@ -36283,11 +45441,14 @@ "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3053 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "robot", @@ -36295,22 +45456,28 @@ "fur": "dark brown", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3054 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "dumbfounded", "background": "blue", "fur": "pink", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3055 + }, "metadata_dict": { "fur": "tan", "earring": "silver hoop", @@ -36319,22 +45486,28 @@ "hat": "army hat", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3056 + }, "metadata_dict": { "clothes": "rainbow suspenders", "eyes": "bored", "background": "purple", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3057 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored pipe", @@ -36342,11 +45515,14 @@ "eyes": "bored", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3058 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -36354,11 +45530,14 @@ "background": "yellow", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3059 + }, "metadata_dict": { "mouth": "grin", "background": "orange", @@ -36366,11 +45545,14 @@ "hat": "short mohawk", "eyes": "bored", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3060 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin", @@ -36379,11 +45561,14 @@ "eyes": "3d", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3061 + }, "metadata_dict": { "clothes": "bandolier", "earring": "silver stud", @@ -36391,33 +45576,42 @@ "background": "purple", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3062 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "orange", "eyes": "blue beams", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3063 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", "background": "purple", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3064 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "sleeveless t", @@ -36425,11 +45619,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3065 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "gold hoop", @@ -36437,11 +45634,14 @@ "mouth": "bored", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3066 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cheetah", @@ -36449,32 +45649,41 @@ "hat": "cowboy hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3067 + }, "metadata_dict": { "eyes": "blindfold", "fur": "red", "background": "blue", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3068 + }, "metadata_dict": { "mouth": "jovial", "background": "army green", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3069 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -36482,22 +45691,28 @@ "mouth": "dumbfounded", "fur": "black", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3070 + }, "metadata_dict": { "clothes": "service", "mouth": "phoneme ooo", "eyes": "angry", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3071 + }, "metadata_dict": { "eyes": "blindfold", "earring": "silver stud", @@ -36506,11 +45721,14 @@ "hat": "bunny ears", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3072 + }, "metadata_dict": { "clothes": "striped tee", "background": "aquamarine", @@ -36518,11 +45736,14 @@ "eyes": "bored", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3073 + }, "metadata_dict": { "eyes": "heart", "earring": "diamond stud", @@ -36531,11 +45752,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3074 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -36543,11 +45767,14 @@ "earring": "gold hoop", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3075 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -36555,11 +45782,14 @@ "fur": "tan", "mouth": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3076 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "party hat 1", @@ -36567,11 +45797,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3077 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -36579,11 +45812,14 @@ "fur": "black", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3078 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "prison jumpsuit", @@ -36591,22 +45827,28 @@ "fur": "black", "eyes": "3d", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3079 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "work vest", "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3080 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -36614,11 +45856,14 @@ "fur": "cream", "mouth": "phoneme ooo", "hat": "fez" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3081 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -36626,11 +45871,14 @@ "earring": "silver hoop", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3082 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "bored", @@ -36638,22 +45886,28 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3083 + }, "metadata_dict": { "mouth": "grin", "fur": "pink", "background": "purple", "eyes": "crazy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3084 + }, "metadata_dict": { "fur": "cream", "clothes": "puffy vest", @@ -36661,11 +45915,14 @@ "mouth": "dumbfounded", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3085 + }, "metadata_dict": { "background": "new punk blue", "fur": "brown", @@ -36673,22 +45930,28 @@ "clothes": "stunt jacket", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3086 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", "eyes": "zombie", "hat": "bayc flipped brim", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3087 + }, "metadata_dict": { "fur": "tan", "clothes": "bayc t red", @@ -36696,11 +45959,14 @@ "mouth": "bored", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3088 + }, "metadata_dict": { "eyes": "closed", "hat": "horns", @@ -36708,11 +45974,14 @@ "mouth": "grin", "background": "orange", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3089 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -36720,22 +45989,28 @@ "hat": "cowboy hat", "fur": "death bot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3090 + }, "metadata_dict": { "eyes": "zombie", "background": "blue", "mouth": "bored", "fur": "white", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3091 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "sunglasses", @@ -36743,11 +46018,14 @@ "hat": "army hat", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3092 + }, "metadata_dict": { "background": "gray", "fur": "dark brown", @@ -36755,22 +46033,28 @@ "clothes": "toga", "mouth": "bored unshaven cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3093 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "background": "blue", "hat": "army hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3094 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -36778,11 +46062,14 @@ "clothes": "black holes t", "eyes": "robot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3095 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "work vest", @@ -36790,11 +46077,14 @@ "fur": "brown", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3096 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -36802,22 +46092,28 @@ "background": "aquamarine", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3097 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "bayc hat black", "mouth": "phoneme oh", "fur": "black", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3098 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -36825,22 +46121,28 @@ "clothes": "tuxedo tee", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3099 + }, "metadata_dict": { "eyes": "zombie", "clothes": "smoking jacket", "fur": "dark brown", "mouth": "small grin", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3100 + }, "metadata_dict": { "hat": "laurel wreath", "clothes": "sailor shirt", @@ -36849,11 +46151,14 @@ "earring": "silver hoop", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3101 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "robot", @@ -36861,22 +46166,28 @@ "fur": "dark brown", "hat": "short mohawk", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3102 + }, "metadata_dict": { "fur": "tan", "clothes": "prison jumpsuit", "mouth": "phoneme vuh", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3103 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -36884,22 +46195,28 @@ "mouth": "bored unshaven pipe", "background": "aquamarine", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3104 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "purple", "clothes": "navy striped tee", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3105 + }, "metadata_dict": { "eyes": "closed", "clothes": "bandolier", @@ -36907,11 +46224,14 @@ "fur": "solid gold", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3106 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", @@ -36920,22 +46240,28 @@ "mouth": "bored", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3107 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", "clothes": "cowboy shirt", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3108 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "sailor shirt", @@ -36943,11 +46269,14 @@ "mouth": "bored unshaven kazoo", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3109 + }, "metadata_dict": { "mouth": "phoneme vuh", "earring": "silver stud", @@ -36955,11 +46284,14 @@ "eyes": "bored", "background": "gray", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3110 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", @@ -36967,11 +46299,14 @@ "clothes": "sleeveless logo t", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3111 + }, "metadata_dict": { "earring": "diamond stud", "mouth": "rage", @@ -36980,32 +46315,41 @@ "hat": "commie hat", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3112 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "eyes": "bored", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3113 + }, "metadata_dict": { "mouth": "grin", "fur": "tan", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3114 + }, "metadata_dict": { "clothes": "striped tee", "fur": "black", @@ -37013,22 +46357,28 @@ "hat": "bayc hat red", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3115 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", "mouth": "bored unshaven cigarette", "background": "aquamarine", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3116 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -37036,22 +46386,28 @@ "background": "aquamarine", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3117 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "fur": "brown", "clothes": "prom dress", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3118 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -37059,11 +46415,14 @@ "earring": "gold stud", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3119 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "gray", @@ -37071,11 +46430,14 @@ "clothes": "prison jumpsuit", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3120 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "jovial", @@ -37083,11 +46445,14 @@ "eyes": "angry", "clothes": "bone tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3121 + }, "metadata_dict": { "hat": "horns", "mouth": "phoneme ooo", @@ -37095,11 +46460,14 @@ "clothes": "prison jumpsuit", "background": "blue", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3122 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -37108,11 +46476,14 @@ "hat": "fisherman's hat", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3123 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", @@ -37120,11 +46491,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3124 + }, "metadata_dict": { "mouth": "discomfort", "background": "blue", @@ -37132,11 +46506,14 @@ "hat": "fisherman's hat", "clothes": "stunt jacket", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3125 + }, "metadata_dict": { "fur": "black", "hat": "army hat", @@ -37144,21 +46521,27 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3126 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", "background": "orange", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3127 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "blindfold", @@ -37166,11 +46549,14 @@ "hat": "army hat", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3128 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "lumberjack shirt", @@ -37179,11 +46565,14 @@ "fur": "brown", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3129 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -37191,11 +46580,14 @@ "eyes": "bored", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3130 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "gray", @@ -37204,42 +46596,54 @@ "eyes": "bloodshot", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3131 + }, "metadata_dict": { "eyes": "sleepy", "background": "orange", "fur": "dark brown", "mouth": "bored unshaven" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3132 + }, "metadata_dict": { "background": "aquamarine", "mouth": "grin", "fur": "pink", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3133 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "aquamarine", "fur": "red", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3134 + }, "metadata_dict": { "clothes": "striped tee", "earring": "silver stud", @@ -37248,33 +46652,42 @@ "hat": "vietnam era helmet", "fur": "white", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3135 + }, "metadata_dict": { "eyes": "zombie", "mouth": "jovial", "fur": "pink", "background": "orange", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3136 + }, "metadata_dict": { "background": "aquamarine", "hat": "ww2 pilot helm", "eyes": "bored", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3137 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -37282,33 +46695,42 @@ "hat": "girl's hair pink", "mouth": "small grin", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3138 + }, "metadata_dict": { "background": "orange", "clothes": "bayc t black", "fur": "brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3139 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "phoneme vuh", "background": "blue", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3140 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -37316,11 +46738,14 @@ "eyes": "bloodshot", "hat": "short mohawk", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3141 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -37328,43 +46753,55 @@ "hat": "short mohawk", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3142 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", "fur": "dark brown", "eyes": "bored", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3143 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "eyes": "3d", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3144 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "background": "army green", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3145 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -37372,11 +46809,14 @@ "clothes": "leather jacket", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3146 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "bored pipe", @@ -37384,11 +46824,14 @@ "hat": "bayc flipped brim", "fur": "death bot", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3147 + }, "metadata_dict": { "fur": "tan", "clothes": "rainbow suspenders", @@ -37396,11 +46839,14 @@ "mouth": "rage", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3148 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -37408,11 +46854,14 @@ "background": "blue", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3149 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored bubblegum", @@ -37420,11 +46869,14 @@ "eyes": "blue beams", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3150 + }, "metadata_dict": { "eyes": "holographic", "hat": "horns", @@ -37433,11 +46885,14 @@ "earring": "silver hoop", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3151 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "irish boho", @@ -37445,33 +46900,42 @@ "fur": "black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3152 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", "hat": "king's crown", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3153 + }, "metadata_dict": { "earring": "diamond stud", "background": "yellow", "mouth": "bored cigar", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3154 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -37479,11 +46943,14 @@ "hat": "faux hawk", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3155 + }, "metadata_dict": { "clothes": "striped tee", "fur": "blue", @@ -37491,22 +46958,28 @@ "background": "orange", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3156 + }, "metadata_dict": { "background": "orange", "fur": "brown", "hat": "vietnam era helmet", "mouth": "bored cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3157 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "bored unshaven", @@ -37514,11 +46987,14 @@ "clothes": "tweed suit", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3158 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -37526,32 +47002,41 @@ "eyes": "robot", "fur": "black", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3159 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", "background": "yellow", "mouth": "bored pizza", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3160 + }, "metadata_dict": { "eyes": "robot", "background": "army green", "fur": "blue", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3161 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -37560,21 +47045,27 @@ "fur": "dark brown", "hat": "girl's hair short", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3162 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3163 + }, "metadata_dict": { "hat": "prussian helmet", "background": "blue", @@ -37582,11 +47073,14 @@ "fur": "brown", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3164 + }, "metadata_dict": { "eyes": "closed", "hat": "party hat 2", @@ -37594,11 +47088,14 @@ "fur": "pink", "clothes": "lab coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3165 + }, "metadata_dict": { "clothes": "rainbow suspenders", "background": "yellow", @@ -37607,11 +47104,14 @@ "fur": "brown", "hat": "beanie", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3166 + }, "metadata_dict": { "background": "new punk blue", "hat": "laurel wreath", @@ -37619,11 +47119,14 @@ "mouth": "bored bubblegum", "fur": "brown", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3167 + }, "metadata_dict": { "eyes": "coins", "clothes": "guayabera", @@ -37632,11 +47135,14 @@ "hat": "vietnam era helmet", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3168 + }, "metadata_dict": { "hat": "s&m hat", "earring": "silver stud", @@ -37644,11 +47150,14 @@ "fur": "black", "eyes": "bored", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3169 + }, "metadata_dict": { "mouth": "discomfort", "hat": "stuntman helmet", @@ -37657,33 +47166,42 @@ "fur": "dark brown", "earring": "silver hoop", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3170 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", "clothes": "lumberjack shirt", "fur": "black", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3171 + }, "metadata_dict": { "mouth": "bored pipe", "background": "orange", "hat": "short mohawk", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3172 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "wool turtleneck", @@ -37692,21 +47210,27 @@ "fur": "dark brown", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3173 + }, "metadata_dict": { "background": "gray", "fur": "gray", "mouth": "bored", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3174 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "party hat 2", @@ -37714,11 +47238,14 @@ "clothes": "biker vest", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3175 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "tan", @@ -37726,22 +47253,28 @@ "eyes": "3d", "background": "gray", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3176 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "mouth": "dumbfounded", "background": "blue", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3177 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -37749,11 +47282,14 @@ "clothes": "tuxedo tee", "hat": "cowboy hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3178 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "dark brown", @@ -37761,11 +47297,14 @@ "clothes": "lab coat", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3179 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", @@ -37773,11 +47312,14 @@ "fur": "cheetah", "mouth": "bored unshaven cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3180 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -37785,22 +47327,28 @@ "eyes": "holographic", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3181 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin multicolored", "eyes": "bored", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3182 + }, "metadata_dict": { "fur": "tan", "clothes": "striped tee", @@ -37808,22 +47356,28 @@ "hat": "army hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3183 + }, "metadata_dict": { "eyes": "x eyes", "hat": "irish boho", "fur": "gray", "mouth": "bored pipe", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3184 + }, "metadata_dict": { "mouth": "grin", "clothes": "blue dress", @@ -37832,11 +47386,14 @@ "earring": "silver hoop", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3185 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -37845,11 +47402,14 @@ "clothes": "toga", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3186 + }, "metadata_dict": { "clothes": "tuxedo tee", "background": "yellow", @@ -37857,11 +47417,14 @@ "hat": "halo", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3187 + }, "metadata_dict": { "eyes": "closed", "clothes": "space suit", @@ -37870,11 +47433,14 @@ "background": "aquamarine", "fur": "black", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3188 + }, "metadata_dict": { "mouth": "jovial", "fur": "dark brown", @@ -37882,22 +47448,28 @@ "eyes": "sleepy", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3189 + }, "metadata_dict": { "mouth": "bored cigar", "background": "aquamarine", "eyes": "sleepy", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3190 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -37906,11 +47478,14 @@ "mouth": "small grin", "background": "purple", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3191 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "dumbfounded", @@ -37918,11 +47493,14 @@ "hat": "girl's hair short", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3192 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin diamond grill", @@ -37930,11 +47508,14 @@ "hat": "fisherman's hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3193 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", @@ -37942,11 +47523,14 @@ "hat": "beanie", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3194 + }, "metadata_dict": { "eyes": "heart", "background": "blue", @@ -37954,11 +47538,14 @@ "mouth": "bored", "clothes": "stunt jacket", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3195 + }, "metadata_dict": { "eyes": "heart", "hat": "irish boho", @@ -37966,11 +47553,14 @@ "clothes": "tuxedo tee", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3196 + }, "metadata_dict": { "clothes": "prom dress", "mouth": "phoneme vuh", @@ -37978,11 +47568,14 @@ "fur": "dark brown", "eyes": "bloodshot", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3197 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -37991,11 +47584,14 @@ "eyes": "bloodshot", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3198 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -38003,11 +47599,14 @@ "eyes": "bored", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3199 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "phoneme vuh", @@ -38016,22 +47615,28 @@ "hat": "bayc hat red", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3200 + }, "metadata_dict": { "mouth": "grin", "clothes": "sailor shirt", "eyes": "bloodshot", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3201 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", @@ -38040,11 +47645,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3202 + }, "metadata_dict": { "eyes": "closed", "clothes": "bandolier", @@ -38052,11 +47660,14 @@ "hat": "vietnam era helmet", "mouth": "bored unshaven kazoo", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3203 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "eyepatch", @@ -38064,11 +47675,14 @@ "fur": "golden brown", "background": "aquamarine", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3204 + }, "metadata_dict": { "eyes": "coins", "clothes": "rainbow suspenders", @@ -38076,11 +47690,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3205 + }, "metadata_dict": { "hat": "girl's hair short", "earring": "silver stud", @@ -38089,11 +47706,14 @@ "mouth": "tongue out", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3206 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "golden brown", @@ -38101,11 +47721,14 @@ "clothes": "black t", "background": "aquamarine", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3207 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -38113,11 +47736,14 @@ "fur": "dark brown", "clothes": "bayc t black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3208 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -38125,11 +47751,14 @@ "fur": "black", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3209 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", @@ -38138,22 +47767,28 @@ "background": "blue", "hat": "fisherman's hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3210 + }, "metadata_dict": { "fur": "cream", "mouth": "rage", "hat": "fez", "background": "purple", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3211 + }, "metadata_dict": { "clothes": "bandolier", "fur": "gray", @@ -38162,22 +47797,28 @@ "eyes": "bored", "hat": "bayc hat red", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3212 + }, "metadata_dict": { "eyes": "3d", "fur": "brown", "background": "yellow", "hat": "safari", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3213 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "lumberjack shirt", @@ -38186,11 +47827,14 @@ "eyes": "3d", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3214 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "zombie", @@ -38198,33 +47842,42 @@ "fur": "dark brown", "clothes": "stunt jacket", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3215 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", "mouth": "jovial", "background": "blue", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3216 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "mouth": "rage", "hat": "bunny ears", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3217 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", @@ -38232,22 +47885,28 @@ "fur": "golden brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3218 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "sleepy", "fur": "dark brown", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3219 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -38256,32 +47915,41 @@ "mouth": "bored unshaven cigar", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3220 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "party hat 1", "eyes": "robot", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3221 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "mouth": "bored", "eyes": "blindfold" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3222 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -38289,11 +47957,14 @@ "hat": "fisherman's hat", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3223 + }, "metadata_dict": { "hat": "horns", "clothes": "tweed suit", @@ -38302,11 +47973,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3224 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "laurel wreath", @@ -38314,11 +47988,14 @@ "background": "blue", "fur": "black", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3225 + }, "metadata_dict": { "clothes": "black t", "mouth": "dumbfounded", @@ -38326,11 +48003,14 @@ "fur": "dark brown", "hat": "short mohawk", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3226 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -38338,11 +48018,14 @@ "mouth": "jovial", "clothes": "biker vest", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3227 + }, "metadata_dict": { "hat": "sushi chef headband", "earring": "silver stud", @@ -38350,11 +48033,14 @@ "mouth": "tongue out", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3228 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "cream", @@ -38363,22 +48049,28 @@ "eyes": "robot", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3229 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", "eyes": "bored", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3230 + }, "metadata_dict": { "eyes": "heart", "earring": "silver stud", @@ -38386,11 +48078,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3231 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -38399,22 +48094,28 @@ "earring": "silver stud", "hat": "bayc hat red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3232 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", "hat": "bayc flipped brim", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3233 + }, "metadata_dict": { "mouth": "grin", "fur": "brown", @@ -38422,11 +48123,14 @@ "eyes": "bored", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3234 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -38435,21 +48139,27 @@ "eyes": "bloodshot", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3235 + }, "metadata_dict": { "fur": "tan", "eyes": "holographic", "background": "army green", "mouth": "rage" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3236 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -38457,11 +48167,14 @@ "eyes": "bloodshot", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3237 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "party hat 1", @@ -38469,11 +48182,14 @@ "fur": "pink", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3238 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "closed", @@ -38482,11 +48198,14 @@ "fur": "dark brown", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3239 + }, "metadata_dict": { "fur": "tan", "clothes": "bone necklace", @@ -38494,11 +48213,14 @@ "eyes": "crazy", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3240 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", @@ -38507,44 +48229,56 @@ "eyes": "bored", "hat": "bowler", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3241 + }, "metadata_dict": { "fur": "golden brown", "clothes": "tie dye", "mouth": "bored unshaven cigar", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3242 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "dumbfounded", "fur": "red", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3243 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "zombie", "mouth": "bored unshaven bubblegum", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3244 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "gold hoop", @@ -38553,11 +48287,14 @@ "clothes": "prom dress", "hat": "commie hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3245 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "fez", @@ -38565,11 +48302,14 @@ "mouth": "jovial", "background": "blue", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3246 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -38577,11 +48317,14 @@ "clothes": "bone necklace", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3247 + }, "metadata_dict": { "eyes": "heart", "fur": "dark brown", @@ -38589,11 +48332,14 @@ "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3248 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "blindfold", @@ -38601,22 +48347,28 @@ "fur": "dark brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3249 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "sailor shirt", "fur": "brown", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3250 + }, "metadata_dict": { "clothes": "black t", "mouth": "bored unshaven pipe", @@ -38624,11 +48376,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3251 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", @@ -38637,22 +48392,28 @@ "fur": "pink", "hat": "bayc flipped brim", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3252 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "eyes": "bloodshot", "clothes": "tuxedo tee", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3253 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -38660,11 +48421,14 @@ "earring": "silver stud", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3254 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -38672,44 +48436,56 @@ "hat": "fez", "mouth": "bored unshaven pipe", "fur": "pink" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3255 + }, "metadata_dict": { "clothes": "service", "mouth": "bored pipe", "eyes": "sleepy", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3256 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", "background": "purple", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3257 + }, "metadata_dict": { "clothes": "smoking jacket", "fur": "dark brown", "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3258 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "discomfort", @@ -38718,22 +48494,28 @@ "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3259 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven party horn", "hat": "girl's hair pink", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3260 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "heart", @@ -38741,11 +48523,14 @@ "earring": "gold stud", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3261 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -38753,11 +48538,14 @@ "hat": "fisherman's hat", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3262 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -38765,11 +48553,14 @@ "clothes": "black t", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3263 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -38778,11 +48569,14 @@ "hat": "short mohawk", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3264 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme oh", @@ -38790,22 +48584,28 @@ "hat": "seaman's hat", "background": "orange", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3265 + }, "metadata_dict": { "fur": "dmt", "mouth": "rage", "clothes": "bayc t black", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3266 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "new punk blue", @@ -38813,22 +48613,28 @@ "clothes": "sleeveless t", "fur": "dark brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3267 + }, "metadata_dict": { "eyes": "zombie", "mouth": "dumbfounded", "fur": "pink", "earring": "silver hoop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3268 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "seaman's hat", @@ -38836,11 +48642,14 @@ "fur": "death bot", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3269 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -38849,11 +48658,14 @@ "earring": "silver hoop", "clothes": "lab coat", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3270 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "zombie", @@ -38861,11 +48673,14 @@ "fur": "brown", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3271 + }, "metadata_dict": { "fur": "cream", "clothes": "lumberjack shirt", @@ -38874,11 +48689,14 @@ "background": "gray", "hat": "safari", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3272 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin multicolored", @@ -38886,11 +48704,14 @@ "clothes": "black t", "fur": "red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3273 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -38899,11 +48720,14 @@ "fur": "brown", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3274 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -38911,11 +48735,14 @@ "eyes": "bored", "earring": "silver hoop", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3275 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -38924,11 +48751,14 @@ "earring": "silver stud", "background": "orange", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3276 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -38937,11 +48767,14 @@ "mouth": "dumbfounded", "eyes": "3d", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3277 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "blindfold", @@ -38949,11 +48782,14 @@ "hat": "fez", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3278 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "kings robe", @@ -38961,11 +48797,14 @@ "eyes": "coins", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3279 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -38974,11 +48813,14 @@ "earring": "silver stud", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3280 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -38986,22 +48828,28 @@ "background": "aquamarine", "clothes": "cowboy shirt", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3281 + }, "metadata_dict": { "clothes": "sailor shirt", "eyes": "sleepy", "fur": "pink", "mouth": "small grin", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3282 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold stud", @@ -39010,33 +48858,42 @@ "background": "gray", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3283 + }, "metadata_dict": { "clothes": "black t", "eyes": "bored", "fur": "brown", "background": "yellow", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3284 + }, "metadata_dict": { "fur": "cream", "clothes": "rainbow suspenders", "eyes": "robot", "background": "yellow", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3285 + }, "metadata_dict": { "clothes": "striped tee", "hat": "party hat 1", @@ -39044,11 +48901,14 @@ "mouth": "bored", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3286 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -39056,21 +48916,27 @@ "clothes": "tweed suit", "background": "orange", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3287 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "robot", "background": "purple", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3288 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -39078,11 +48944,14 @@ "hat": "spinner hat", "fur": "pink", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3289 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "horns", @@ -39090,33 +48959,42 @@ "mouth": "bored unshaven cigar", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3290 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", "background": "gray", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3291 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "sailor shirt", "fur": "dark brown", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3292 + }, "metadata_dict": { "eyes": "closed", "clothes": "bandolier", @@ -39124,22 +49002,28 @@ "background": "aquamarine", "fur": "dark brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3293 + }, "metadata_dict": { "hat": "party hat 1", "background": "orange", "eyes": "bored", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3294 + }, "metadata_dict": { "hat": "irish boho", "clothes": "tweed suit", @@ -39147,11 +49031,14 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3295 + }, "metadata_dict": { "clothes": "rainbow suspenders", "mouth": "phoneme vuh", @@ -39159,11 +49046,14 @@ "background": "purple", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3296 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -39171,11 +49061,14 @@ "clothes": "biker vest", "hat": "bayc flipped brim", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3297 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -39184,11 +49077,14 @@ "background": "orange", "hat": "bayc flipped brim", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3298 + }, "metadata_dict": { "clothes": "work vest", "fur": "noise", @@ -39196,22 +49092,28 @@ "hat": "beanie", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3299 + }, "metadata_dict": { "hat": "irish boho", "fur": "pink", "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3300 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", @@ -39219,11 +49121,14 @@ "earring": "silver stud", "background": "blue", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3301 + }, "metadata_dict": { "clothes": "black t", "earring": "silver stud", @@ -39231,11 +49136,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3302 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -39243,11 +49151,14 @@ "fur": "brown", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3303 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -39255,33 +49166,42 @@ "earring": "silver hoop", "clothes": "prom dress", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3304 + }, "metadata_dict": { "eyes": "zombie", "fur": "brown", "background": "gray", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3305 + }, "metadata_dict": { "clothes": "tweed suit", "mouth": "dumbfounded", "fur": "dark brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3306 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -39289,11 +49209,14 @@ "eyes": "bloodshot", "fur": "dark brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3307 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -39302,11 +49225,14 @@ "earring": "silver hoop", "background": "yellow", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3308 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin multicolored", @@ -39314,11 +49240,14 @@ "fur": "dark brown", "hat": "vietnam era helmet", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3309 + }, "metadata_dict": { "mouth": "phoneme l", "background": "blue", @@ -39326,11 +49255,14 @@ "fur": "brown", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3310 + }, "metadata_dict": { "fur": "tan", "mouth": "bored kazoo", @@ -39338,11 +49270,14 @@ "clothes": "toga", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3311 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "fez", @@ -39350,11 +49285,14 @@ "fur": "red", "background": "aquamarine", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3312 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -39362,22 +49300,28 @@ "fur": "noise", "clothes": "sleeveless logo t", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3313 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "eyes": "bloodshot", "hat": "faux hawk", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3314 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", @@ -39386,43 +49330,55 @@ "mouth": "bored", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3315 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", "eyes": "robot", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3316 + }, "metadata_dict": { "clothes": "black holes t", "fur": "black", "eyes": "bored", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3317 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored pipe", "fur": "dark brown", "eyes": "hypnotized" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3318 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -39431,11 +49387,14 @@ "clothes": "tanktop", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3319 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "black t", @@ -39443,11 +49402,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3320 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "bloodshot", @@ -39455,11 +49417,14 @@ "background": "gray", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3321 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -39468,11 +49433,14 @@ "fur": "brown", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3322 + }, "metadata_dict": { "eyes": "coins", "hat": "short mohawk", @@ -39480,22 +49448,28 @@ "fur": "noise", "mouth": "small grin", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3323 + }, "metadata_dict": { "fur": "dmt", "eyes": "bored", "background": "yellow", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3324 + }, "metadata_dict": { "clothes": "sailor shirt", "earring": "gold stud", @@ -39504,11 +49478,14 @@ "background": "purple", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3325 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored bubblegum", @@ -39516,11 +49493,14 @@ "hat": "army hat", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3326 + }, "metadata_dict": { "clothes": "black t", "mouth": "bored unshaven party horn", @@ -39529,33 +49509,42 @@ "eyes": "3d", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3327 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "mouth": "bored cigarette", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3328 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "hat": "army hat", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3329 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -39563,11 +49552,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3330 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "zombie", @@ -39575,11 +49567,14 @@ "hat": "girl's hair short", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3331 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", @@ -39588,11 +49583,14 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3332 + }, "metadata_dict": { "mouth": "grin", "eyes": "robot", @@ -39600,11 +49598,14 @@ "background": "orange", "earring": "silver hoop", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3333 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "seaman's hat", @@ -39612,22 +49613,28 @@ "earring": "silver stud", "background": "purple", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3334 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme vuh", "hat": "short mohawk", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3335 + }, "metadata_dict": { "mouth": "grin multicolored", "background": "orange", @@ -39636,11 +49643,14 @@ "eyes": "bored", "fur": "robot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3336 + }, "metadata_dict": { "earring": "gold hoop", "fur": "black", @@ -39648,11 +49658,14 @@ "background": "orange", "hat": "army hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3337 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -39660,11 +49673,14 @@ "earring": "silver hoop", "hat": "cowboy hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3338 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -39672,11 +49688,14 @@ "eyes": "bored", "background": "gray", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3339 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "coins", @@ -39684,11 +49703,14 @@ "background": "orange", "hat": "safari", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3340 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -39697,11 +49719,14 @@ "earring": "silver hoop", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3341 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -39709,11 +49734,14 @@ "hat": "faux hawk", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3342 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -39721,11 +49749,14 @@ "fur": "pink", "hat": "fisherman's hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3343 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -39734,11 +49765,14 @@ "clothes": "lab coat", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3344 + }, "metadata_dict": { "fur": "tan", "clothes": "lumberjack shirt", @@ -39746,22 +49780,28 @@ "background": "blue", "mouth": "small grin", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3345 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", "fur": "black", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3346 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "golden brown", @@ -39769,33 +49809,42 @@ "background": "aquamarine", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3347 + }, "metadata_dict": { "eyes": "closed", "clothes": "bandolier", "fur": "cream", "mouth": "dumbfounded", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3348 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", "fur": "black", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3349 + }, "metadata_dict": { "fur": "black", "clothes": "tie dye", @@ -39803,11 +49852,14 @@ "background": "yellow", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3350 + }, "metadata_dict": { "eyes": "closed", "fur": "brown", @@ -39815,11 +49867,14 @@ "mouth": "bored cigarette", "hat": "halo", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3351 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "aquamarine", @@ -39827,11 +49882,14 @@ "clothes": "prom dress", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3352 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -39839,11 +49897,14 @@ "fur": "black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3353 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "prison jumpsuit", @@ -39851,11 +49912,14 @@ "background": "aquamarine", "fur": "cheetah", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3354 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", @@ -39863,11 +49927,14 @@ "earring": "gold stud", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3355 + }, "metadata_dict": { "fur": "tan", "earring": "diamond stud", @@ -39876,21 +49943,27 @@ "background": "gray", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3356 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven cigarette", "eyes": "scumbag", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3357 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "rainbow suspenders", @@ -39898,22 +49971,28 @@ "hat": "cowboy hat", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3358 + }, "metadata_dict": { "clothes": "bandolier", "background": "orange", "fur": "dark brown", "eyes": "sleepy", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3359 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored cigar", @@ -39921,11 +50000,14 @@ "background": "yellow", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3360 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", @@ -39933,11 +50015,14 @@ "eyes": "bored", "clothes": "toga", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3361 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -39946,11 +50031,14 @@ "mouth": "bored unshaven cigarette", "clothes": "bone necklace", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3362 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "rainbow suspenders", @@ -39958,11 +50046,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3363 + }, "metadata_dict": { "clothes": "smoking jacket", "eyes": "3d", @@ -39970,11 +50061,14 @@ "fur": "pink", "background": "gray", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3364 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin diamond grill", @@ -39983,11 +50077,14 @@ "earring": "silver hoop", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3365 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "red", @@ -39996,11 +50093,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3366 + }, "metadata_dict": { "eyes": "sunglasses", "earring": "gold hoop", @@ -40008,11 +50108,14 @@ "hat": "bayc flipped brim", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3367 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -40020,33 +50123,42 @@ "background": "blue", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3368 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", "fur": "red", "background": "orange", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3369 + }, "metadata_dict": { "fur": "tan", "eyes": "blindfold", "background": "blue", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3370 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -40054,11 +50166,14 @@ "clothes": "leather jacket", "mouth": "bored unshaven kazoo", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3371 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -40066,11 +50181,14 @@ "fur": "dark brown", "clothes": "stunt jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3372 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "bandolier", @@ -40079,11 +50197,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3373 + }, "metadata_dict": { "fur": "tan", "eyes": "holographic", @@ -40091,11 +50212,14 @@ "hat": "fez", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3374 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "trippy", @@ -40103,11 +50227,14 @@ "hat": "bayc flipped brim", "mouth": "bored pizza", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3375 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored bubblegum", @@ -40115,11 +50242,14 @@ "eyes": "sleepy", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3376 + }, "metadata_dict": { "hat": "party hat 2", "fur": "red", @@ -40127,11 +50257,14 @@ "clothes": "leather jacket", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3377 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", @@ -40139,33 +50272,42 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3378 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "wool turtleneck", "background": "blue", "fur": "noise", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3379 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "death bot", "mouth": "phoneme wah", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3380 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -40173,22 +50315,28 @@ "clothes": "leather jacket", "hat": "safari", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3381 + }, "metadata_dict": { "background": "gray", "mouth": "grin", "fur": "brown", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3382 + }, "metadata_dict": { "hat": "irish boho", "mouth": "phoneme ooo", @@ -40197,11 +50345,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3383 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -40209,11 +50360,14 @@ "background": "aquamarine", "mouth": "jovial", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3384 + }, "metadata_dict": { "eyes": "closed", "mouth": "tongue out", @@ -40221,11 +50375,14 @@ "fur": "golden brown", "clothes": "toga", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3385 + }, "metadata_dict": { "eyes": "laser eyes", "earring": "silver stud", @@ -40233,11 +50390,14 @@ "fur": "dark brown", "hat": "bayc flipped brim", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3386 + }, "metadata_dict": { "mouth": "discomfort", "hat": "s&m hat", @@ -40246,22 +50406,28 @@ "clothes": "prison jumpsuit", "earring": "silver stud", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3387 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", "fur": "golden brown", "clothes": "leather jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3388 + }, "metadata_dict": { "hat": "party hat 2", "fur": "cream", @@ -40269,33 +50435,42 @@ "mouth": "bored unshaven cigarette", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3389 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "black", "background": "gray", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3390 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", "eyes": "coins", "hat": "prussian helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3391 + }, "metadata_dict": { "clothes": "striped tee", "earring": "gold hoop", @@ -40303,11 +50478,14 @@ "fur": "dark brown", "eyes": "bloodshot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3392 + }, "metadata_dict": { "fur": "cream", "hat": "sushi chef headband", @@ -40315,11 +50493,14 @@ "eyes": "bloodshot", "clothes": "toga", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3393 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "gray", @@ -40327,11 +50508,14 @@ "clothes": "tie dye", "eyes": "bloodshot", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3394 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "rage", @@ -40339,11 +50523,14 @@ "eyes": "bored", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3395 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "prison jumpsuit", @@ -40351,33 +50538,42 @@ "fur": "black", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3396 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", "eyes": "robot", "background": "gray", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3397 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", "fur": "red", "eyes": "bored", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3398 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven party horn", @@ -40386,11 +50582,14 @@ "earring": "gold stud", "eyes": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3399 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -40398,11 +50597,14 @@ "hat": "bowler", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3400 + }, "metadata_dict": { "hat": "irish boho", "mouth": "bored unshaven party horn", @@ -40410,22 +50612,28 @@ "eyes": "bloodshot", "fur": "brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3401 + }, "metadata_dict": { "mouth": "bored pipe", "eyes": "bloodshot", "fur": "brown", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3402 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -40434,11 +50642,14 @@ "background": "yellow", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3403 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "grin", @@ -40446,11 +50657,14 @@ "eyes": "coins", "earring": "silver stud", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3404 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "tweed suit", @@ -40458,11 +50672,14 @@ "background": "gray", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3405 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -40471,11 +50688,14 @@ "mouth": "bored bubblegum", "background": "orange", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3406 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -40484,11 +50704,14 @@ "hat": "army hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3407 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -40496,22 +50719,28 @@ "mouth": "bored unshaven cigar", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3408 + }, "metadata_dict": { "fur": "tan", "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3409 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -40520,21 +50749,27 @@ "fur": "pink", "clothes": "lab coat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3410 + }, "metadata_dict": { "fur": "gray", "mouth": "bored pipe", "background": "purple", "eyes": "scumbag" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3411 + }, "metadata_dict": { "background": "new punk blue", "hat": "trippy captain's hat", @@ -40542,22 +50777,28 @@ "fur": "dark brown", "mouth": "bored cigarette", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3412 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "fur": "tan", "mouth": "jovial", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3413 + }, "metadata_dict": { "fur": "black", "background": "orange", @@ -40565,11 +50806,14 @@ "clothes": "pimp coat", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3414 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "s&m hat", @@ -40578,21 +50822,27 @@ "background": "blue", "eyes": "bored", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3415 + }, "metadata_dict": { "background": "aquamarine", "fur": "death bot", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3416 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "coins", @@ -40601,11 +50851,14 @@ "earring": "gold stud", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3417 + }, "metadata_dict": { "fur": "gray", "earring": "gold hoop", @@ -40614,11 +50867,14 @@ "hat": "girl's hair short", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3418 + }, "metadata_dict": { "eyes": "closed", "hat": "bandana blue", @@ -40626,11 +50882,14 @@ "background": "orange", "mouth": "bored cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3419 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -40638,11 +50897,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3420 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -40650,11 +50912,14 @@ "fur": "black", "background": "yellow", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3421 + }, "metadata_dict": { "eyes": "coins", "earring": "gold stud", @@ -40662,11 +50927,14 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3422 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "sushi chef headband", @@ -40674,11 +50942,14 @@ "background": "aquamarine", "eyes": "robot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3423 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -40686,22 +50957,28 @@ "earring": "silver hoop", "hat": "vietnam era helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3424 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "blue dress", "background": "gray", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3425 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -40709,11 +50986,14 @@ "hat": "fez", "background": "orange", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3426 + }, "metadata_dict": { "background": "aquamarine", "fur": "red", @@ -40721,11 +51001,14 @@ "hat": "beanie", "eyes": "crazy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3427 + }, "metadata_dict": { "background": "gray", "eyes": "coins", @@ -40734,11 +51017,14 @@ "hat": "bayc flipped brim", "fur": "cheetah", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3428 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -40746,11 +51032,14 @@ "hat": "beanie", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3429 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin gold grill", @@ -40758,22 +51047,28 @@ "fur": "brown", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3430 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "clothes": "blue dress", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3431 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "blue", @@ -40781,21 +51076,27 @@ "fur": "dark brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3432 + }, "metadata_dict": { "mouth": "jovial", "background": "yellow", "fur": "robot", "eyes": "closed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3433 + }, "metadata_dict": { "eyes": "closed", "earring": "silver stud", @@ -40803,11 +51104,14 @@ "background": "aquamarine", "mouth": "bored unshaven cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3434 + }, "metadata_dict": { "eyes": "coins", "mouth": "small grin", @@ -40815,11 +51119,14 @@ "fur": "brown", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3435 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "wool turtleneck", @@ -40827,11 +51134,14 @@ "background": "aquamarine", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3436 + }, "metadata_dict": { "eyes": "scumbag", "earring": "gold hoop", @@ -40840,11 +51150,14 @@ "hat": "bayc hat red", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3437 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "irish boho", @@ -40852,22 +51165,28 @@ "clothes": "smoking jacket", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3438 + }, "metadata_dict": { "eyes": "closed", "fur": "black", "background": "orange", "mouth": "small grin", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3439 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -40875,11 +51194,14 @@ "background": "aquamarine", "clothes": "bayc t black", "fur": "solid gold" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3440 + }, "metadata_dict": { "background": "blue", "clothes": "biker vest", @@ -40887,11 +51209,14 @@ "hat": "vietnam era helmet", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3441 + }, "metadata_dict": { "eyes": "sad", "background": "orange", @@ -40900,11 +51225,14 @@ "mouth": "bored cigar", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3442 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "wool turtleneck", @@ -40913,11 +51241,14 @@ "background": "aquamarine", "eyes": "3d", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3443 + }, "metadata_dict": { "clothes": "lab coat", "background": "aquamarine", @@ -40925,22 +51256,28 @@ "eyes": "bored", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3444 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", "fur": "pink", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3445 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "dumbfounded", @@ -40949,11 +51286,14 @@ "eyes": "bored", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3446 + }, "metadata_dict": { "fur": "cheetah", "clothes": "sailor shirt", @@ -40962,11 +51302,14 @@ "eyes": "robot", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3447 + }, "metadata_dict": { "fur": "dmt", "hat": "beanie", @@ -40974,11 +51317,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3448 + }, "metadata_dict": { "hat": "baby's bonnet", "background": "aquamarine", @@ -40987,22 +51333,28 @@ "clothes": "toga", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3449 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "party hat 1", "fur": "red", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3450 + }, "metadata_dict": { "eyes": "coins", "hat": "vietnam era helmet", @@ -41010,11 +51362,14 @@ "mouth": "small grin", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3451 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -41022,11 +51377,14 @@ "background": "orange", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3452 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless t", @@ -41034,11 +51392,14 @@ "background": "yellow", "hat": "police motorcycle helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3453 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "eyes": "robot", @@ -41046,11 +51407,14 @@ "fur": "cheetah", "background": "purple", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3454 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "gray", @@ -41059,44 +51423,56 @@ "eyes": "bored", "background": "yellow", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3455 + }, "metadata_dict": { "eyes": "zombie", "mouth": "bored party horn", "background": "orange", "hat": "fisherman's hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3456 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black t", "mouth": "phoneme vuh", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3457 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored unshaven cigarette", "fur": "white", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3458 + }, "metadata_dict": { "eyes": "heart", "hat": "party hat 2", @@ -41104,11 +51480,14 @@ "clothes": "black holes t", "fur": "golden brown", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3459 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", @@ -41116,11 +51495,14 @@ "hat": "fez", "clothes": "prison jumpsuit", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3460 + }, "metadata_dict": { "background": "yellow", "fur": "red", @@ -41129,22 +51511,28 @@ "eyes": "bored", "earring": "silver hoop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3461 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", "clothes": "tanktop", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3462 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "phoneme ooo", @@ -41152,33 +51540,42 @@ "fur": "pink", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3463 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "hat": "short mohawk", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3464 + }, "metadata_dict": { "eyes": "scumbag", "fur": "gray", "background": "orange", "hat": "bayc flipped brim", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3465 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -41187,11 +51584,14 @@ "fur": "black", "clothes": "smoking jacket", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3466 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", @@ -41199,11 +51599,14 @@ "clothes": "biker vest", "hat": "cowboy hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3467 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "sleepy", @@ -41212,11 +51615,14 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3468 + }, "metadata_dict": { "clothes": "cowboy shirt", "background": "purple", @@ -41224,11 +51630,14 @@ "fur": "cheetah", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3469 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -41236,11 +51645,14 @@ "clothes": "leather jacket", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3470 + }, "metadata_dict": { "eyes": "holographic", "hat": "s&m hat", @@ -41248,11 +51660,14 @@ "fur": "black", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3471 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather jacket", @@ -41260,11 +51675,14 @@ "fur": "dark brown", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3472 + }, "metadata_dict": { "eyes": "closed", "clothes": "lumberjack shirt", @@ -41272,22 +51690,28 @@ "fur": "dark brown", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3473 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", "clothes": "lumberjack shirt", "mouth": "phoneme ooo", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3474 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -41295,11 +51719,14 @@ "eyes": "bored", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3475 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "tan", @@ -41308,11 +51735,14 @@ "mouth": "phoneme vuh", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3476 + }, "metadata_dict": { "eyes": "closed", "mouth": "discomfort", @@ -41320,11 +51750,14 @@ "clothes": "tweed suit", "background": "orange", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3477 + }, "metadata_dict": { "eyes": "closed", "clothes": "space suit", @@ -41332,11 +51765,14 @@ "background": "yellow", "fur": "black", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3478 + }, "metadata_dict": { "eyes": "scumbag", "background": "aquamarine", @@ -41344,11 +51780,14 @@ "clothes": "biker vest", "hat": "girl's hair short", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3479 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -41356,11 +51795,14 @@ "clothes": "work vest", "background": "aquamarine", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3480 + }, "metadata_dict": { "clothes": "guayabera", "hat": "cowboy hat", @@ -41368,11 +51810,14 @@ "mouth": "bored", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3481 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -41380,22 +51825,28 @@ "eyes": "bloodshot", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3482 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "grin", "eyes": "bored", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3483 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "clothes": "tie dye", @@ -41404,22 +51855,28 @@ "hat": "short mohawk", "eyes": "bored", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3484 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "black t", "eyes": "bored", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3485 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "seaman's hat", @@ -41427,11 +51884,14 @@ "fur": "white", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3486 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -41439,22 +51899,28 @@ "mouth": "dumbfounded", "hat": "bowler", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3487 + }, "metadata_dict": { "eyes": "blindfold", "fur": "red", "mouth": "small grin", "hat": "ww2 pilot helm", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3488 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -41462,22 +51928,28 @@ "background": "orange", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3489 + }, "metadata_dict": { "eyes": "eyepatch", "background": "orange", "fur": "dark brown", "clothes": "lab coat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3490 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -41485,22 +51957,28 @@ "fur": "black", "clothes": "tanktop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3491 + }, "metadata_dict": { "fur": "tan", "mouth": "bored party horn", "eyes": "bloodshot", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3492 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -41508,11 +51986,14 @@ "eyes": "wide eyed", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3493 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -41520,11 +52001,14 @@ "fur": "black", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3494 + }, "metadata_dict": { "hat": "stuntman helmet", "background": "orange", @@ -41532,22 +52016,28 @@ "fur": "death bot", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3495 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "dark brown", "eyes": "bored", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3496 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -41555,11 +52045,14 @@ "hat": "vietnam era helmet", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3497 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "black", @@ -41567,11 +52060,14 @@ "clothes": "biker vest", "eyes": "3d", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3498 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "sleepy", @@ -41579,11 +52075,14 @@ "clothes": "sleeveless logo t", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3499 + }, "metadata_dict": { "hat": "horns", "clothes": "tie dye", @@ -41591,11 +52090,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3500 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "coins", @@ -41604,11 +52106,14 @@ "hat": "cowboy hat", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3501 + }, "metadata_dict": { "hat": "party hat 2", "fur": "dmt", @@ -41617,22 +52122,28 @@ "earring": "gold stud", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3502 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "holographic", "hat": "bandana blue", "background": "blue", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3503 + }, "metadata_dict": { "hat": "irish boho", "background": "blue", @@ -41640,11 +52151,14 @@ "fur": "death bot", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3504 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sailor shirt", @@ -41653,22 +52167,28 @@ "eyes": "bored", "background": "purple", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3505 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", "background": "orange", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3506 + }, "metadata_dict": { "eyes": "closed", "hat": "girl's hair pink", @@ -41676,22 +52196,28 @@ "fur": "black", "background": "blue", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3507 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", "background": "orange", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3508 + }, "metadata_dict": { "mouth": "discomfort", "background": "blue", @@ -41700,11 +52226,14 @@ "earring": "silver hoop", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3509 + }, "metadata_dict": { "eyes": "closed", "hat": "ww2 pilot helm", @@ -41712,22 +52241,28 @@ "background": "gray", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3510 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "black", "background": "orange", "eyes": "sleepy", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3511 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -41735,22 +52270,28 @@ "background": "gray", "hat": "safari", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3512 + }, "metadata_dict": { "fur": "tan", "eyes": "robot", "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3513 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -41758,21 +52299,27 @@ "clothes": "tanktop", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3514 + }, "metadata_dict": { "eyes": "heart", "background": "army green", "fur": "blue", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3515 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "rainbow suspenders", @@ -41781,11 +52328,14 @@ "background": "orange", "hat": "safari", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3516 + }, "metadata_dict": { "mouth": "discomfort", "earring": "silver stud", @@ -41793,11 +52343,14 @@ "eyes": "sleepy", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3517 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "phoneme vuh", @@ -41805,44 +52358,56 @@ "clothes": "smoking jacket", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3518 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "zombie", "background": "gray", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3519 + }, "metadata_dict": { "eyes": "closed", "background": "yellow", "fur": "dark brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3520 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", "background": "aquamarine", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3521 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "black", @@ -41851,11 +52416,14 @@ "earring": "cross", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3522 + }, "metadata_dict": { "background": "orange", "eyes": "bloodshot", @@ -41863,22 +52431,28 @@ "fur": "brown", "hat": "vietnam era helmet", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3523 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "clothes": "black t", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3524 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -41886,11 +52460,14 @@ "eyes": "zombie", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3525 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -41899,33 +52476,42 @@ "hat": "faux hawk", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3526 + }, "metadata_dict": { "eyes": "x eyes", "background": "gray", "mouth": "bored unshaven cigarette", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3527 + }, "metadata_dict": { "background": "blue", "fur": "black", "clothes": "biker vest", "mouth": "bored unshaven kazoo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3528 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", @@ -41934,11 +52520,14 @@ "fur": "dark brown", "hat": "bunny ears", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3529 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven party horn", @@ -41947,11 +52536,14 @@ "hat": "bayc hat red", "clothes": "guayabera", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3530 + }, "metadata_dict": { "fur": "tan", "mouth": "bored dagger", @@ -41959,22 +52551,28 @@ "eyes": "bloodshot", "background": "gray", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3531 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", "background": "orange", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3532 + }, "metadata_dict": { "hat": "fez", "fur": "black", @@ -41982,11 +52580,14 @@ "clothes": "sleeveless logo t", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3533 + }, "metadata_dict": { "clothes": "work vest", "background": "aquamarine", @@ -41994,11 +52595,14 @@ "fur": "dark brown", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3534 + }, "metadata_dict": { "clothes": "rainbow suspenders", "mouth": "dumbfounded", @@ -42006,11 +52610,14 @@ "eyes": "bloodshot", "hat": "faux hawk", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3535 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven cigarette", @@ -42019,11 +52626,14 @@ "background": "gray", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3536 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -42031,11 +52641,14 @@ "earring": "gold stud", "eyes": "3d", "clothes": "tie dye" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3537 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "aquamarine", @@ -42043,33 +52656,42 @@ "hat": "cowboy hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3538 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "hat": "seaman's hat", "mouth": "tongue out", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3539 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "eyes": "3d", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3540 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "sailor shirt", @@ -42078,22 +52700,28 @@ "hat": "fisherman's hat", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3541 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "fur": "black", "clothes": "biker vest", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3542 + }, "metadata_dict": { "eyes": "heart", "clothes": "rainbow suspenders", @@ -42101,11 +52729,14 @@ "background": "orange", "fur": "cheetah", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3543 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -42113,11 +52744,14 @@ "eyes": "bloodshot", "clothes": "tanktop", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3544 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -42126,11 +52760,14 @@ "clothes": "biker vest", "eyes": "3d", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3545 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", @@ -42138,11 +52775,14 @@ "background": "orange", "clothes": "bone necklace", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3546 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -42150,11 +52790,14 @@ "eyes": "zombie", "clothes": "tweed suit", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3547 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -42162,22 +52805,28 @@ "hat": "short mohawk", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3548 + }, "metadata_dict": { "hat": "s&m hat", "fur": "dmt", "mouth": "bored unshaven cigarette", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3549 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -42185,11 +52834,14 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3550 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -42197,11 +52849,14 @@ "fur": "red", "eyes": "bloodshot", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3551 + }, "metadata_dict": { "fur": "dmt", "background": "aquamarine", @@ -42209,22 +52864,28 @@ "eyes": "bored", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3552 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "background": "purple", "eyes": "sleepy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3553 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored party horn", @@ -42233,22 +52894,28 @@ "earring": "silver hoop", "fur": "cheetah", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3554 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "brown", "background": "purple", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3555 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -42257,11 +52924,14 @@ "hat": "cowboy hat", "fur": "cheetah", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3556 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "small grin", @@ -42269,11 +52939,14 @@ "hat": "beanie", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3557 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin", @@ -42282,11 +52955,14 @@ "background": "yellow", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3558 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -42294,11 +52970,14 @@ "hat": "cowboy hat", "background": "gray", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3559 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -42307,11 +52986,14 @@ "clothes": "sailor shirt", "fur": "black", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3560 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "scumbag", @@ -42319,22 +53001,28 @@ "fur": "noise", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3561 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "fur": "dark brown", "clothes": "bayc t black", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3562 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -42342,11 +53030,14 @@ "background": "blue", "hat": "bayc flipped brim", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3563 + }, "metadata_dict": { "fur": "cream", "hat": "army hat", @@ -42354,11 +53045,14 @@ "mouth": "bored unshaven dagger", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3564 + }, "metadata_dict": { "mouth": "grin", "earring": "silver stud", @@ -42366,11 +53060,14 @@ "fur": "dark brown", "clothes": "toga", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3565 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "striped tee", @@ -42378,22 +53075,28 @@ "fur": "black", "background": "yellow", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3566 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "mouth": "jovial", "eyes": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3567 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -42401,11 +53104,14 @@ "fur": "gray", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3568 + }, "metadata_dict": { "clothes": "striped tee", "hat": "seaman's hat", @@ -42413,66 +53119,84 @@ "mouth": "bored pipe", "eyes": "robot", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3569 + }, "metadata_dict": { "mouth": "bored cigarette", "clothes": "prison jumpsuit", "background": "blue", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3570 + }, "metadata_dict": { "fur": "gray", "mouth": "phoneme vuh", "eyes": "bloodshot", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3571 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", "hat": "party hat 1", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3572 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", "eyes": "coins", "background": "aquamarine", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3573 + }, "metadata_dict": { "fur": "black", "clothes": "biker vest", "background": "purple", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3574 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", @@ -42480,11 +53204,14 @@ "clothes": "lab coat", "hat": "commie hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3575 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -42492,33 +53219,42 @@ "fur": "dark brown", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3576 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "brown", "background": "orange", "hat": "bayc flipped brim", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3577 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", "fur": "white", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3578 + }, "metadata_dict": { "clothes": "striped tee", "hat": "bandana blue", @@ -42526,33 +53262,42 @@ "background": "gray", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3579 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "hat": "seaman's hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3580 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "background": "yellow", "fur": "white", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3581 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "gray", @@ -42561,11 +53306,14 @@ "clothes": "bayc t black", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3582 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "bone tee", @@ -42573,11 +53321,14 @@ "hat": "cowboy hat", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3583 + }, "metadata_dict": { "background": "gray", "fur": "gray", @@ -42585,11 +53336,14 @@ "clothes": "tanktop", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3584 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin diamond grill", @@ -42597,22 +53351,28 @@ "fur": "dark brown", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3585 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "dumbfounded", "background": "gray", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3586 + }, "metadata_dict": { "mouth": "rage", "clothes": "biker vest", @@ -42620,11 +53380,14 @@ "hat": "bayc flipped brim", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3587 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", @@ -42633,11 +53396,14 @@ "hat": "fisherman's hat", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3588 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "pink", @@ -42645,11 +53411,14 @@ "mouth": "bored", "eyes": "angry", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3589 + }, "metadata_dict": { "background": "gray", "mouth": "grin", @@ -42657,22 +53426,28 @@ "eyes": "3d", "clothes": "bayc t black", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3590 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "dark brown", "background": "gray", "clothes": "navy striped tee", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3591 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -42681,11 +53456,14 @@ "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3592 + }, "metadata_dict": { "fur": "cream", "clothes": "space suit", @@ -42693,11 +53471,14 @@ "eyes": "3d", "hat": "beanie", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3593 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "zombie", @@ -42706,11 +53487,14 @@ "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3594 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "background": "blue", @@ -42718,33 +53502,42 @@ "earring": "silver hoop", "eyes": "sleepy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3595 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", "background": "gray", "clothes": "work vest", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3596 + }, "metadata_dict": { "fur": "golden brown", "background": "aquamarine", "hat": "ww2 pilot helm", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3597 + }, "metadata_dict": { "mouth": "discomfort", "fur": "red", @@ -42753,11 +53546,14 @@ "eyes": "angry", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3598 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "gray", @@ -42765,22 +53561,28 @@ "hat": "army hat", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3599 + }, "metadata_dict": { "fur": "golden brown", "mouth": "small grin", "background": "purple", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3600 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -42788,11 +53590,14 @@ "clothes": "pimp coat", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3601 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "dumbfounded", @@ -42800,44 +53605,56 @@ "hat": "halo", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3602 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", "clothes": "biker vest", "mouth": "tongue out", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3603 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "fur": "black", "eyes": "3d", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3604 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "bored", "fur": "brown", "background": "yellow", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3605 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -42845,21 +53662,27 @@ "clothes": "prison jumpsuit", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3606 + }, "metadata_dict": { "fur": "brown", "eyes": "closed", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3607 + }, "metadata_dict": { "hat": "irish boho", "clothes": "smoking jacket", @@ -42867,33 +53690,42 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3608 + }, "metadata_dict": { "fur": "black", "background": "orange", "mouth": "small grin", "clothes": "tanktop", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3609 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", "hat": "ww2 pilot helm", "mouth": "bored unshaven dagger", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3610 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "holographic", @@ -42901,11 +53733,14 @@ "background": "orange", "mouth": "bored unshaven cigar", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3611 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "bandana blue", @@ -42913,11 +53748,14 @@ "background": "yellow", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3612 + }, "metadata_dict": { "fur": "tan", "clothes": "wool turtleneck", @@ -42926,11 +53764,14 @@ "hat": "fez", "background": "aquamarine", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3613 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -42938,11 +53779,14 @@ "fur": "golden brown", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3614 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "coins", @@ -42950,11 +53794,14 @@ "background": "orange", "fur": "noise", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3615 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", @@ -42963,11 +53810,14 @@ "background": "purple", "hat": "safari", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3616 + }, "metadata_dict": { "eyes": "heart", "background": "blue", @@ -42975,11 +53825,14 @@ "hat": "girl's hair short", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3617 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "leather punk jacket", @@ -42987,11 +53840,14 @@ "mouth": "bored bubblegum", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3618 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -42999,21 +53855,27 @@ "background": "yellow", "earring": "cross", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3619 + }, "metadata_dict": { "fur": "brown", "eyes": "3d", "background": "orange", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3620 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "closed", @@ -43021,11 +53883,14 @@ "fur": "cheetah", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3621 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -43033,11 +53898,14 @@ "eyes": "robot", "clothes": "biker vest", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3622 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -43045,11 +53913,14 @@ "background": "yellow", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3623 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "grin", @@ -43058,11 +53929,14 @@ "fur": "cheetah", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3624 + }, "metadata_dict": { "background": "new punk blue", "hat": "vietnam era helmet", @@ -43070,11 +53944,14 @@ "clothes": "bone necklace", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3625 + }, "metadata_dict": { "hat": "fez", "clothes": "biker vest", @@ -43082,11 +53959,14 @@ "mouth": "small grin", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3626 + }, "metadata_dict": { "mouth": "grin", "eyes": "robot", @@ -43094,11 +53974,14 @@ "clothes": "leather jacket", "fur": "dark brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3627 + }, "metadata_dict": { "clothes": "wool turtleneck", "earring": "diamond stud", @@ -43107,11 +53990,14 @@ "fur": "dark brown", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3628 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", @@ -43119,22 +54005,28 @@ "background": "blue", "hat": "ww2 pilot helm", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3629 + }, "metadata_dict": { "fur": "golden brown", "background": "aquamarine", "hat": "short mohawk", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3630 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cream", @@ -43142,22 +54034,28 @@ "mouth": "grin multicolored", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3631 + }, "metadata_dict": { "fur": "cream", "clothes": "prison jumpsuit", "background": "aquamarine", "eyes": "3d", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3632 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "golden brown", @@ -43165,11 +54063,14 @@ "clothes": "tie dye", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3633 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "fez", @@ -43177,22 +54078,28 @@ "mouth": "bored cigarette", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3634 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "black", "clothes": "guayabera", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3635 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "party hat 1", @@ -43200,11 +54107,14 @@ "fur": "dark brown", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3636 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black t", @@ -43212,33 +54122,42 @@ "hat": "army hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3637 + }, "metadata_dict": { "eyes": "sad", "background": "army green", "mouth": "bored", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3638 + }, "metadata_dict": { "clothes": "sailor shirt", "background": "aquamarine", "fur": "dark brown", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3639 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -43247,11 +54166,14 @@ "background": "yellow", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3640 + }, "metadata_dict": { "fur": "red", "background": "purple", @@ -43259,11 +54181,14 @@ "mouth": "small grin", "eyes": "sleepy", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3641 + }, "metadata_dict": { "clothes": "striped tee", "fur": "gray", @@ -43271,11 +54196,14 @@ "eyes": "3d", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3642 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "prison jumpsuit", @@ -43284,22 +54212,28 @@ "fur": "pink", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3643 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "bored", "background": "gray", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3644 + }, "metadata_dict": { "fur": "dmt", "hat": "girl's hair pink", @@ -43307,11 +54241,14 @@ "eyes": "bloodshot", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3645 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", @@ -43320,11 +54257,14 @@ "earring": "silver hoop", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3646 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -43332,11 +54272,14 @@ "mouth": "bored unshaven kazoo", "clothes": "stunt jacket", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3647 + }, "metadata_dict": { "eyes": "hypnotized", "background": "blue", @@ -43344,11 +54287,14 @@ "mouth": "bored", "fur": "white", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3648 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", @@ -43356,11 +54302,14 @@ "fur": "brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3649 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -43368,11 +54317,14 @@ "hat": "seaman's hat", "clothes": "prison jumpsuit", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3650 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -43380,11 +54332,14 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3651 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -43392,11 +54347,14 @@ "hat": "commie hat", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3652 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -43404,11 +54362,14 @@ "clothes": "black t", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3653 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "rainbow suspenders", @@ -43416,11 +54377,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3654 + }, "metadata_dict": { "eyes": "heart", "background": "blue", @@ -43428,22 +54392,28 @@ "hat": "bayc flipped brim", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3655 + }, "metadata_dict": { "hat": "police motorcycle helmet", "background": "blue", "fur": "dark brown", "eyes": "bloodshot", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3656 + }, "metadata_dict": { "mouth": "jovial", "clothes": "cowboy shirt", @@ -43451,11 +54421,14 @@ "hat": "cowboy hat", "fur": "cheetah", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3657 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t red", @@ -43463,11 +54436,14 @@ "eyes": "3d", "mouth": "tongue out", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3658 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -43475,11 +54451,14 @@ "earring": "gold hoop", "clothes": "tie dye", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3659 + }, "metadata_dict": { "eyes": "blindfold", "hat": "spinner hat", @@ -43487,11 +54466,14 @@ "background": "gray", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3660 + }, "metadata_dict": { "hat": "king's crown", "mouth": "rage", @@ -43500,11 +54482,14 @@ "fur": "dark brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3661 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", @@ -43512,11 +54497,14 @@ "fur": "brown", "hat": "bowler", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3662 + }, "metadata_dict": { "hat": "fisherman's hat", "clothes": "work vest", @@ -43524,11 +54512,14 @@ "fur": "death bot", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3663 + }, "metadata_dict": { "hat": "irish boho", "earring": "gold hoop", @@ -43537,11 +54528,14 @@ "fur": "brown", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3664 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven bubblegum", @@ -43550,21 +54544,27 @@ "eyes": "bored", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3665 + }, "metadata_dict": { "background": "gray", "fur": "black", "eyes": "coins", "mouth": "bored unshaven" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3666 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -43572,11 +54572,14 @@ "clothes": "black suit", "mouth": "phoneme vuh", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3667 + }, "metadata_dict": { "clothes": "sleeveless logo t", "fur": "dark brown", @@ -43584,22 +54587,28 @@ "mouth": "bored unshaven cigarette", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3668 + }, "metadata_dict": { "fur": "golden brown", "eyes": "zombie", "earring": "silver stud", "background": "aquamarine", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3669 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -43607,11 +54616,14 @@ "mouth": "rage", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3670 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "stuntman helmet", @@ -43619,11 +54631,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3671 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", @@ -43632,11 +54647,14 @@ "clothes": "smoking jacket", "hat": "girl's hair short", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3672 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -43645,44 +54663,56 @@ "clothes": "biker vest", "earring": "silver hoop", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3673 + }, "metadata_dict": { "eyes": "zombie", "mouth": "dumbfounded", "background": "orange", "fur": "dark brown", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3674 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", "background": "blue", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3675 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "yellow", "eyes": "crazy", "fur": "robot", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3676 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -43690,11 +54720,14 @@ "fur": "black", "hat": "cowboy hat", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3677 + }, "metadata_dict": { "eyes": "closed", "hat": "bandana blue", @@ -43703,11 +54736,14 @@ "background": "aquamarine", "fur": "black", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3678 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -43716,66 +54752,84 @@ "hat": "cowboy hat", "background": "gray", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3679 + }, "metadata_dict": { "clothes": "blue dress", "eyes": "coins", "background": "blue", "fur": "pink", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3680 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored pizza", "background": "purple", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3681 + }, "metadata_dict": { "fur": "golden brown", "mouth": "phoneme ooo", "eyes": "bored", "clothes": "lab coat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3682 + }, "metadata_dict": { "eyes": "closed", "background": "blue", "mouth": "bored", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3683 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "background": "orange", "eyes": "bloodshot", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3684 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -43784,11 +54838,14 @@ "hat": "fez", "fur": "dark brown", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3685 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "black holes t", @@ -43797,22 +54854,28 @@ "eyes": "bloodshot", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3686 + }, "metadata_dict": { "background": "gray", "eyes": "zombie", "mouth": "bored party horn", "earring": "silver stud", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3687 + }, "metadata_dict": { "hat": "horns", "earring": "gold hoop", @@ -43820,11 +54883,14 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3688 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored unshaven bubblegum", @@ -43832,22 +54898,28 @@ "earring": "silver hoop", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3689 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "robot", "fur": "black", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3690 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -43855,11 +54927,14 @@ "hat": "bunny ears", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3691 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -43868,11 +54943,14 @@ "earring": "gold stud", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3692 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme vuh", @@ -43881,11 +54959,14 @@ "clothes": "caveman pelt", "fur": "zombie", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3693 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -43893,22 +54974,28 @@ "hat": "bayc flipped brim", "background": "yellow", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3694 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "bored", "fur": "white", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3695 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", @@ -43917,11 +55004,14 @@ "earring": "silver hoop", "hat": "girl's hair short", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3696 + }, "metadata_dict": { "mouth": "grin diamond grill", "earring": "gold stud", @@ -43930,11 +55020,14 @@ "hat": "bayc flipped brim", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3697 + }, "metadata_dict": { "hat": "horns", "clothes": "black holes t", @@ -43942,33 +55035,42 @@ "background": "orange", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3698 + }, "metadata_dict": { "background": "blue", "fur": "dark brown", "eyes": "bloodshot", "mouth": "tongue out", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3699 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", "background": "purple", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3700 + }, "metadata_dict": { "clothes": "sailor shirt", "earring": "silver stud", @@ -43976,11 +55078,14 @@ "background": "purple", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3701 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "prison jumpsuit", @@ -43988,11 +55093,14 @@ "mouth": "small grin", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3702 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "space suit", @@ -44000,11 +55108,14 @@ "background": "aquamarine", "fur": "dark brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3703 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -44012,22 +55123,28 @@ "fur": "dark brown", "clothes": "bayc t black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3704 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", "background": "aquamarine", "hat": "bunny ears", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3705 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "irish boho", @@ -44036,11 +55153,14 @@ "fur": "black", "eyes": "bored", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3706 + }, "metadata_dict": { "fur": "golden brown", "clothes": "leather jacket", @@ -44049,11 +55169,14 @@ "earring": "silver hoop", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3707 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "black holes t", @@ -44061,11 +55184,14 @@ "background": "orange", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3708 + }, "metadata_dict": { "hat": "horns", "mouth": "rage", @@ -44073,11 +55199,14 @@ "fur": "dark brown", "clothes": "lab coat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3709 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -44085,33 +55214,42 @@ "fur": "brown", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3710 + }, "metadata_dict": { "fur": "brown", "clothes": "tie dye", "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3711 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", "fur": "dark brown", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3712 + }, "metadata_dict": { "background": "new punk blue", "hat": "sea captain's hat", @@ -44119,44 +55257,56 @@ "fur": "dark brown", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3713 + }, "metadata_dict": { "fur": "cream", "clothes": "sleeveless t", "eyes": "robot", "mouth": "tongue out", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3714 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "space suit", "fur": "dark brown", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3715 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", "fur": "gray", "mouth": "small grin", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3716 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -44164,22 +55314,28 @@ "clothes": "smoking jacket", "earring": "silver hoop", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3717 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "zombie", "mouth": "small grin", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3718 + }, "metadata_dict": { "background": "gray", "clothes": "black holes t", @@ -44187,11 +55343,14 @@ "fur": "noise", "mouth": "bored unshaven cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3719 + }, "metadata_dict": { "eyes": "holographic", "mouth": "phoneme ooo", @@ -44200,11 +55359,14 @@ "clothes": "biker vest", "hat": "beanie", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3720 + }, "metadata_dict": { "mouth": "grin", "fur": "black", @@ -44212,11 +55374,14 @@ "clothes": "hip hop", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3721 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "fez", @@ -44224,11 +55389,14 @@ "fur": "pink", "eyes": "angry", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3722 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "earring": "gold hoop", @@ -44236,11 +55404,14 @@ "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3723 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -44248,11 +55419,14 @@ "hat": "stuntman helmet", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3724 + }, "metadata_dict": { "clothes": "caveman pelt", "fur": "golden brown", @@ -44260,11 +55434,14 @@ "mouth": "jovial", "eyes": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3725 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather punk jacket", @@ -44272,11 +55449,14 @@ "hat": "bayc flipped brim", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3726 + }, "metadata_dict": { "eyes": "x eyes", "hat": "horns", @@ -44284,11 +55464,14 @@ "fur": "golden brown", "background": "aquamarine", "mouth": "jovial" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3727 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "phoneme ooo", @@ -44296,11 +55479,14 @@ "fur": "dark brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3728 + }, "metadata_dict": { "clothes": "bone tee", "background": "aquamarine", @@ -44308,11 +55494,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3729 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -44321,11 +55510,14 @@ "clothes": "cowboy shirt", "earring": "gold stud", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3730 + }, "metadata_dict": { "eyes": "heart", "background": "gray", @@ -44334,11 +55526,14 @@ "earring": "silver hoop", "fur": "brown", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3731 + }, "metadata_dict": { "mouth": "rage", "background": "blue", @@ -44347,11 +55542,14 @@ "hat": "fisherman's hat", "fur": "brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3732 + }, "metadata_dict": { "mouth": "grin diamond grill", "background": "aquamarine", @@ -44359,11 +55557,14 @@ "clothes": "biker vest", "eyes": "bloodshot", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3733 + }, "metadata_dict": { "hat": "s&m hat", "earring": "silver stud", @@ -44371,11 +55572,14 @@ "eyes": "robot", "fur": "dark brown", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3734 + }, "metadata_dict": { "background": "new punk blue", "hat": "cowboy hat", @@ -44383,22 +55587,28 @@ "clothes": "prom dress", "mouth": "bored cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3735 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "fur": "dmt", "eyes": "3d", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3736 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", @@ -44406,43 +55616,55 @@ "background": "blue", "hat": "bowler", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3737 + }, "metadata_dict": { "fur": "tan", "hat": "fez", "background": "blue", "eyes": "robot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3738 + }, "metadata_dict": { "mouth": "grin diamond grill", "fur": "pink", "background": "orange", "clothes": "stunt jacket", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3739 + }, "metadata_dict": { "background": "aquamarine", "eyes": "sleepy", "mouth": "bored", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3740 + }, "metadata_dict": { "fur": "blue", "mouth": "grin multicolored", @@ -44451,11 +55673,14 @@ "clothes": "biker vest", "hat": "safari", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3741 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -44463,33 +55688,42 @@ "background": "blue", "hat": "spinner hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3742 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", "background": "aquamarine", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3743 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "dark brown", "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3744 + }, "metadata_dict": { "hat": "baby's bonnet", "eyes": "coins", @@ -44498,11 +55732,14 @@ "earring": "silver hoop", "background": "gray", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3745 + }, "metadata_dict": { "fur": "black", "earring": "silver hoop", @@ -44510,11 +55747,14 @@ "clothes": "prom dress", "mouth": "phoneme wah", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3746 + }, "metadata_dict": { "fur": "gray", "background": "blue", @@ -44522,11 +55762,14 @@ "hat": "beanie", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3747 + }, "metadata_dict": { "hat": "horns", "eyes": "hypnotized", @@ -44535,11 +55778,14 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3748 + }, "metadata_dict": { "mouth": "bored cigar", "clothes": "blue dress", @@ -44548,11 +55794,14 @@ "hat": "bowler", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3749 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "black t", @@ -44560,22 +55809,28 @@ "fur": "solid gold", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3750 + }, "metadata_dict": { "background": "new punk blue", "clothes": "work vest", "fur": "dark brown", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3751 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", @@ -44584,11 +55839,14 @@ "clothes": "tanktop", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3752 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "gray", @@ -44596,22 +55854,28 @@ "eyes": "robot", "background": "yellow", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3753 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", "clothes": "lab coat", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3754 + }, "metadata_dict": { "background": "purple", "eyes": "3d", @@ -44619,11 +55883,14 @@ "earring": "silver hoop", "fur": "brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3755 + }, "metadata_dict": { "fur": "golden brown", "mouth": "grin", @@ -44631,11 +55898,14 @@ "clothes": "work vest", "background": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3756 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -44644,11 +55914,14 @@ "clothes": "leather jacket", "earring": "gold stud", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3757 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -44656,11 +55929,14 @@ "clothes": "biker vest", "fur": "dark brown", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3758 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -44668,11 +55944,14 @@ "fur": "cream", "clothes": "sailor shirt", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3759 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -44681,11 +55960,14 @@ "earring": "silver hoop", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3760 + }, "metadata_dict": { "clothes": "prison jumpsuit", "eyes": "bored", @@ -44693,11 +55975,14 @@ "mouth": "bored", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3761 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "black", @@ -44705,11 +55990,14 @@ "hat": "faux hawk", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3762 + }, "metadata_dict": { "fur": "red", "background": "blue", @@ -44717,11 +56005,14 @@ "mouth": "bored unshaven cigar", "clothes": "hip hop", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3763 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "sleeveless t", @@ -44729,11 +56020,14 @@ "eyes": "bloodshot", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3764 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "eyepatch", @@ -44741,11 +56035,14 @@ "background": "gray", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3765 + }, "metadata_dict": { "background": "new punk blue", "clothes": "prom dress", @@ -44753,22 +56050,28 @@ "hat": "bowler", "fur": "death bot", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3766 + }, "metadata_dict": { "fur": "tan", "clothes": "sailor shirt", "background": "blue", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3767 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -44776,11 +56079,14 @@ "background": "yellow", "hat": "commie hat", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3768 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -44788,11 +56094,14 @@ "hat": "short mohawk", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3769 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -44800,11 +56109,14 @@ "hat": "girl's hair short", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3770 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -44813,22 +56125,28 @@ "earring": "silver hoop", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3771 + }, "metadata_dict": { "eyes": "holographic", "clothes": "bandolier", "fur": "gray", "mouth": "grin diamond grill", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3772 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -44836,11 +56154,14 @@ "hat": "short mohawk", "earring": "silver hoop", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3773 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -44849,22 +56170,28 @@ "fur": "pink", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3774 + }, "metadata_dict": { "mouth": "rage", "fur": "pink", "clothes": "tuxedo tee", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3775 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -44872,11 +56199,14 @@ "eyes": "bored", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3776 + }, "metadata_dict": { "clothes": "black t", "earring": "gold stud", @@ -44885,11 +56215,14 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3777 + }, "metadata_dict": { "hat": "irish boho", "earring": "silver stud", @@ -44898,33 +56231,42 @@ "background": "purple", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3778 + }, "metadata_dict": { "background": "aquamarine", "clothes": "pimp coat", "mouth": "small grin", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3779 + }, "metadata_dict": { "fur": "gray", "eyes": "coins", "mouth": "bored unshaven pipe", "background": "blue", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3780 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "blue", @@ -44932,11 +56274,14 @@ "fur": "brown", "earring": "cross", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3781 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -44944,11 +56289,14 @@ "eyes": "3d", "earring": "silver hoop", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3782 + }, "metadata_dict": { "fur": "dmt", "clothes": "rainbow suspenders", @@ -44956,11 +56304,14 @@ "background": "yellow", "hat": "safari", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3783 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", @@ -44968,11 +56319,14 @@ "eyes": "bored", "mouth": "bored pizza", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3784 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -44980,11 +56334,14 @@ "background": "aquamarine", "hat": "bayc flipped brim", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3785 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "irish boho", @@ -44993,11 +56350,14 @@ "fur": "dark brown", "background": "gray", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3786 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -45005,11 +56365,14 @@ "mouth": "tongue out", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3787 + }, "metadata_dict": { "fur": "dmt", "clothes": "black t", @@ -45017,11 +56380,14 @@ "hat": "ww2 pilot helm", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3788 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "sailor shirt", @@ -45029,11 +56395,14 @@ "hat": "beanie", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3789 + }, "metadata_dict": { "eyes": "heart", "clothes": "lumberjack shirt", @@ -45041,11 +56410,14 @@ "background": "aquamarine", "fur": "dark brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3790 + }, "metadata_dict": { "hat": "stuntman helmet", "earring": "silver stud", @@ -45054,11 +56426,14 @@ "clothes": "tuxedo tee", "eyes": "angry", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3791 + }, "metadata_dict": { "clothes": "striped tee", "background": "blue", @@ -45066,11 +56441,14 @@ "mouth": "bored", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3792 + }, "metadata_dict": { "eyes": "x eyes", "hat": "bayc hat black", @@ -45079,11 +56457,14 @@ "background": "aquamarine", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3793 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -45091,11 +56472,14 @@ "fur": "red", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3794 + }, "metadata_dict": { "hat": "seaman's hat", "background": "aquamarine", @@ -45103,11 +56487,14 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3795 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "grin", @@ -45115,11 +56502,14 @@ "clothes": "bayc t black", "hat": "vietnam era helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3796 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -45128,11 +56518,14 @@ "hat": "bayc flipped brim", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3797 + }, "metadata_dict": { "background": "new punk blue", "hat": "laurel wreath", @@ -45140,11 +56533,14 @@ "earring": "silver hoop", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3798 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "gold hoop", @@ -45153,11 +56549,14 @@ "fur": "pink", "clothes": "biker vest", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3799 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -45165,11 +56564,14 @@ "mouth": "grin", "fur": "pink", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3800 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -45177,11 +56579,14 @@ "eyes": "bloodshot", "mouth": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3801 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -45190,11 +56595,14 @@ "hat": "spinner hat", "fur": "black", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3802 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "black", @@ -45202,43 +56610,55 @@ "eyes": "bored", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3803 + }, "metadata_dict": { "eyes": "robot", "fur": "dark brown", "clothes": "toga", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3804 + }, "metadata_dict": { "fur": "dmt", "eyes": "heart", "background": "orange", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3805 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", "clothes": "smoking jacket", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3806 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -45246,11 +56666,14 @@ "clothes": "sailor shirt", "mouth": "dumbfounded", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3807 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -45258,11 +56681,14 @@ "fur": "brown", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3808 + }, "metadata_dict": { "earring": "gold hoop", "hat": "fez", @@ -45271,11 +56697,14 @@ "background": "orange", "clothes": "tanktop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3809 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", @@ -45284,11 +56713,14 @@ "hat": "short mohawk", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3810 + }, "metadata_dict": { "fur": "tan", "hat": "girl's hair pink", @@ -45296,11 +56728,14 @@ "eyes": "bored", "mouth": "bored unshaven cigar", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3811 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "prison jumpsuit", @@ -45308,11 +56743,14 @@ "fur": "dark brown", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3812 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "rainbow suspenders", @@ -45321,11 +56759,14 @@ "earring": "silver hoop", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3813 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -45333,22 +56774,28 @@ "eyes": "bored", "fur": "brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3814 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored party horn", "eyes": "bloodshot", "clothes": "prom dress", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3815 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", @@ -45357,11 +56804,14 @@ "background": "blue", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3816 + }, "metadata_dict": { "mouth": "grin", "hat": "baby's bonnet", @@ -45369,11 +56819,14 @@ "fur": "dark brown", "clothes": "sleeveless logo t", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3817 + }, "metadata_dict": { "eyes": "heart", "hat": "fez", @@ -45381,11 +56834,14 @@ "clothes": "smoking jacket", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3818 + }, "metadata_dict": { "background": "orange", "eyes": "bored", @@ -45393,11 +56849,14 @@ "hat": "bowler", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3819 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "beanie", @@ -45405,11 +56864,14 @@ "background": "yellow", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3820 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -45417,22 +56879,28 @@ "earring": "silver hoop", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3821 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", "clothes": "bayc t black", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3822 + }, "metadata_dict": { "fur": "tan", "hat": "seaman's hat", @@ -45440,11 +56908,14 @@ "clothes": "tanktop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3823 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "party hat 1", @@ -45452,11 +56923,14 @@ "fur": "dark brown", "clothes": "sleeveless logo t", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3824 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "dumbfounded", @@ -45465,11 +56939,14 @@ "hat": "short mohawk", "background": "gray", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3825 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -45477,33 +56954,42 @@ "clothes": "tuxedo tee", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3826 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "blue", "mouth": "bored", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3827 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven pipe", "hat": "vietnam era helmet", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3828 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -45511,32 +56997,41 @@ "mouth": "bored unshaven pipe", "clothes": "guayabera", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3829 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "eyes": "eyepatch", "mouth": "bored party horn" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3830 + }, "metadata_dict": { "fur": "cream", "eyes": "zombie", "mouth": "rage", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3831 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -45544,11 +57039,14 @@ "earring": "gold hoop", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3832 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -45556,11 +57054,14 @@ "clothes": "black holes t", "background": "gray", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3833 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "silver stud", @@ -45569,44 +57070,56 @@ "hat": "cowboy hat", "fur": "brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3834 + }, "metadata_dict": { "hat": "s&m hat", "fur": "gray", "eyes": "bloodshot", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3835 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", "clothes": "lab coat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3836 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "work vest", "background": "orange", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3837 + }, "metadata_dict": { "hat": "stuntman helmet", "background": "aquamarine", @@ -45614,11 +57127,14 @@ "clothes": "bayc t black", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3838 + }, "metadata_dict": { "hat": "fez", "fur": "dark brown", @@ -45626,11 +57142,14 @@ "eyes": "crazy", "mouth": "phoneme wah", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3839 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -45638,11 +57157,14 @@ "fur": "noise", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3840 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "silver stud", @@ -45651,11 +57173,14 @@ "hat": "vietnam era helmet", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3841 + }, "metadata_dict": { "earring": "gold stud", "fur": "dark brown", @@ -45663,22 +57188,28 @@ "mouth": "bored", "eyes": "cyborg", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3842 + }, "metadata_dict": { "eyes": "heart", "hat": "fez", "fur": "cheetah", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3843 + }, "metadata_dict": { "background": "gray", "fur": "death bot", @@ -45686,33 +57217,42 @@ "eyes": "crazy", "hat": "halo", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3844 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", "fur": "red", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3845 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", "earring": "gold hoop", "background": "blue", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3846 + }, "metadata_dict": { "eyes": "heart", "hat": "irish boho", @@ -45720,11 +57260,14 @@ "fur": "red", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3847 + }, "metadata_dict": { "eyes": "closed", "hat": "laurel wreath", @@ -45732,11 +57275,14 @@ "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3848 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "rage", @@ -45744,11 +57290,14 @@ "clothes": "biker vest", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3849 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", @@ -45756,11 +57305,14 @@ "mouth": "phoneme vuh", "hat": "army hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3850 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "grin diamond grill", @@ -45768,11 +57320,14 @@ "eyes": "bored", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3851 + }, "metadata_dict": { "hat": "party hat 2", "background": "aquamarine", @@ -45780,22 +57335,28 @@ "eyes": "bored", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3852 + }, "metadata_dict": { "eyes": "scumbag", "fur": "gray", "background": "orange", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3853 + }, "metadata_dict": { "earring": "silver stud", "eyes": "bloodshot", @@ -45803,11 +57364,14 @@ "mouth": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3854 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", @@ -45815,21 +57379,27 @@ "background": "gray", "hat": "vietnam era helmet", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3855 + }, "metadata_dict": { "fur": "golden brown", "eyes": "heart", "mouth": "grin", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3856 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -45838,11 +57408,14 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3857 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -45850,11 +57423,14 @@ "hat": "fez", "background": "blue", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3858 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -45863,11 +57439,14 @@ "clothes": "guayabera", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3859 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -45875,22 +57454,28 @@ "background": "blue", "fur": "black", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3860 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "red", "clothes": "tanktop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3861 + }, "metadata_dict": { "clothes": "leather jacket", "fur": "black", @@ -45898,11 +57483,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3862 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored dagger", @@ -45910,11 +57498,14 @@ "fur": "cream", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3863 + }, "metadata_dict": { "background": "orange", "clothes": "guayabera", @@ -45922,11 +57513,14 @@ "fur": "solid gold", "eyes": "sleepy", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3864 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "bored bubblegum", @@ -45934,11 +57528,14 @@ "eyes": "bored", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3865 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", @@ -45946,21 +57543,27 @@ "background": "orange", "hat": "bayc hat red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3866 + }, "metadata_dict": { "fur": "dark brown", "background": "orange", "eyes": "bloodshot", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3867 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin", @@ -45969,11 +57572,14 @@ "earring": "silver hoop", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3868 + }, "metadata_dict": { "eyes": "heart", "clothes": "tie dye", @@ -45981,11 +57587,14 @@ "mouth": "bored cigarette", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3869 + }, "metadata_dict": { "fur": "brown", "hat": "fez", @@ -45993,11 +57602,14 @@ "mouth": "bored unshaven cigarette", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3870 + }, "metadata_dict": { "fur": "cream", "mouth": "grin diamond grill", @@ -46005,11 +57617,14 @@ "clothes": "biker vest", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3871 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -46018,11 +57633,14 @@ "earring": "silver stud", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3872 + }, "metadata_dict": { "eyes": "zombie", "clothes": "sailor shirt", @@ -46030,22 +57648,28 @@ "fur": "pink", "mouth": "small grin", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3873 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "hat": "faux hawk", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3874 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -46053,11 +57677,14 @@ "eyes": "coins", "clothes": "smoking jacket", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3875 + }, "metadata_dict": { "mouth": "grin", "fur": "dmt", @@ -46065,11 +57692,14 @@ "hat": "short mohawk", "clothes": "toga", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3876 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", @@ -46077,11 +57707,14 @@ "clothes": "tuxedo tee", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3877 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -46089,11 +57722,14 @@ "eyes": "bored", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3878 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -46102,11 +57738,14 @@ "earring": "silver hoop", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3879 + }, "metadata_dict": { "hat": "sushi chef headband", "earring": "diamond stud", @@ -46115,32 +57754,41 @@ "eyes": "bored", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3880 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3881 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", "fur": "black", "clothes": "guayabera", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3882 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -46148,11 +57796,14 @@ "mouth": "grin", "fur": "dark brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3883 + }, "metadata_dict": { "hat": "stuntman helmet", "clothes": "work vest", @@ -46160,11 +57811,14 @@ "mouth": "bored", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3884 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -46172,11 +57826,14 @@ "fur": "black", "hat": "spinner hat", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3885 + }, "metadata_dict": { "clothes": "striped tee", "fur": "dmt", @@ -46184,11 +57841,14 @@ "background": "aquamarine", "earring": "silver stud", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3886 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "leather jacket", @@ -46197,22 +57857,28 @@ "hat": "fisherman's hat", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3887 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "prison jumpsuit", "mouth": "phoneme vuh", "fur": "pink", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3888 + }, "metadata_dict": { "background": "new punk blue", "mouth": "jovial", @@ -46220,22 +57886,28 @@ "clothes": "sleeveless logo t", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3889 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "black", "mouth": "bored pizza", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3890 + }, "metadata_dict": { "fur": "tan", "eyes": "holographic", @@ -46243,22 +57915,28 @@ "clothes": "sleeveless t", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3891 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "pink", "eyes": "bored", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3892 + }, "metadata_dict": { "background": "blue", "clothes": "tuxedo tee", @@ -46266,11 +57944,14 @@ "earring": "cross", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3893 + }, "metadata_dict": { "fur": "brown", "hat": "fez", @@ -46278,22 +57959,28 @@ "mouth": "bored", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3894 + }, "metadata_dict": { "eyes": "3d", "background": "orange", "fur": "pink", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3895 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -46301,11 +57988,14 @@ "fur": "dmt", "hat": "fez", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3896 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -46313,22 +58003,28 @@ "clothes": "biker vest", "mouth": "small grin", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3897 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "tan", "mouth": "grin", "background": "aquamarine", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3898 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "fez", @@ -46336,11 +58032,14 @@ "fur": "dark brown", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3899 + }, "metadata_dict": { "clothes": "sailor shirt", "background": "blue", @@ -46348,11 +58047,14 @@ "hat": "bowler", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3900 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "irish boho", @@ -46360,11 +58062,14 @@ "background": "aquamarine", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3901 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -46372,11 +58077,14 @@ "fur": "black", "background": "orange", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3902 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -46384,33 +58092,42 @@ "clothes": "tuxedo tee", "mouth": "bored unshaven cigar", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3903 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "bored", "fur": "brown", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3904 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "gray", "fur": "dark brown", "mouth": "bored unshaven cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3905 + }, "metadata_dict": { "eyes": "coins", "clothes": "bone necklace", @@ -46418,11 +58135,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigarette", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3906 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", @@ -46430,11 +58150,14 @@ "eyes": "bored", "hat": "vietnam era helmet", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3907 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "gold hoop", @@ -46443,11 +58166,14 @@ "fur": "dark brown", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3908 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -46455,44 +58181,56 @@ "background": "blue", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3909 + }, "metadata_dict": { "background": "orange", "eyes": "bored", "hat": "cowboy hat", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3910 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", "clothes": "tanktop", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3911 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "stuntman helmet", "background": "aquamarine", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3912 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -46500,11 +58238,14 @@ "hat": "beanie", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3913 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme vuh", @@ -46513,22 +58254,28 @@ "hat": "spinner hat", "eyes": "bored", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3914 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "grin diamond grill", "fur": "black", "background": "gray", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3915 + }, "metadata_dict": { "eyes": "heart", "hat": "sushi chef headband", @@ -46536,22 +58283,28 @@ "clothes": "sailor shirt", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3916 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", "hat": "party hat 1", "eyes": "robot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3917 + }, "metadata_dict": { "hat": "party hat 2", "fur": "golden brown", @@ -46559,11 +58312,14 @@ "background": "aquamarine", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3918 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", @@ -46571,22 +58327,28 @@ "background": "purple", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3919 + }, "metadata_dict": { "fur": "tan", "clothes": "bandolier", "mouth": "bored bubblegum", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3920 + }, "metadata_dict": { "fur": "tan", "mouth": "rage", @@ -46594,33 +58356,42 @@ "eyes": "bloodshot", "earring": "silver hoop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3921 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "hat": "seaman's hat", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3922 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", "fur": "dark brown", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3923 + }, "metadata_dict": { "eyes": "heart", "clothes": "blue dress", @@ -46629,11 +58400,14 @@ "earring": "silver hoop", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3924 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "golden brown", @@ -46641,11 +58415,14 @@ "background": "orange", "eyes": "3d", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3925 + }, "metadata_dict": { "clothes": "striped tee", "hat": "fez", @@ -46653,11 +58430,14 @@ "fur": "dark brown", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3926 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -46665,22 +58445,28 @@ "background": "blue", "hat": "short mohawk", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3927 + }, "metadata_dict": { "mouth": "discomfort", "fur": "golden brown", "background": "orange", "eyes": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3928 + }, "metadata_dict": { "eyes": "heart", "background": "orange", @@ -46688,11 +58474,14 @@ "fur": "solid gold", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3929 + }, "metadata_dict": { "fur": "black", "earring": "silver hoop", @@ -46700,11 +58489,14 @@ "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3930 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "tan", @@ -46712,11 +58504,14 @@ "background": "orange", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3931 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme ooo", @@ -46725,11 +58520,14 @@ "earring": "silver hoop", "hat": "fisherman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3932 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -46737,11 +58535,14 @@ "fur": "golden brown", "hat": "army hat", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3933 + }, "metadata_dict": { "hat": "irish boho", "fur": "golden brown", @@ -46749,33 +58550,42 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3934 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "mouth": "phoneme vuh", "fur": "black", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3935 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven cigarette", "eyes": "sleepy", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3936 + }, "metadata_dict": { "background": "blue", "clothes": "tie dye", @@ -46783,22 +58593,28 @@ "mouth": "bored unshaven cigar", "hat": "vietnam era helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3937 + }, "metadata_dict": { "mouth": "phoneme l", "background": "blue", "fur": "black", "hat": "short mohawk", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3938 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -46806,11 +58622,14 @@ "fur": "golden brown", "eyes": "zombie", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3939 + }, "metadata_dict": { "mouth": "dumbfounded", "earring": "silver stud", @@ -46818,11 +58637,14 @@ "background": "yellow", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3940 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -46830,11 +58652,14 @@ "mouth": "bored unshaven cigar", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3941 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "seaman's hat", @@ -46843,11 +58668,14 @@ "background": "blue", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3942 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "king's crown", @@ -46855,11 +58683,14 @@ "background": "yellow", "clothes": "stunt jacket", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3943 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black suit", @@ -46867,22 +58698,28 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3944 + }, "metadata_dict": { "eyes": "robot", "fur": "dark brown", "background": "yellow", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3945 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "dumbfounded", @@ -46890,11 +58727,14 @@ "background": "orange", "hat": "short mohawk", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3946 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -46902,11 +58742,14 @@ "fur": "dark brown", "earring": "silver hoop", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3947 + }, "metadata_dict": { "eyes": "heart", "hat": "stuntman helmet", @@ -46915,11 +58758,14 @@ "clothes": "biker vest", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3948 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "bayc t black", @@ -46927,11 +58773,14 @@ "eyes": "sleepy", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3949 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -46939,11 +58788,14 @@ "eyes": "coins", "background": "aquamarine", "clothes": "smoking jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3950 + }, "metadata_dict": { "eyes": "heart", "clothes": "puffy vest", @@ -46951,11 +58803,14 @@ "mouth": "tongue out", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3951 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "striped tee", @@ -46963,32 +58818,41 @@ "fur": "cream", "mouth": "grin", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3952 + }, "metadata_dict": { "fur": "cream", "eyes": "robot", "hat": "short mohawk", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3953 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "eyes": "crazy", "fur": "cream", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3954 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -46996,11 +58860,14 @@ "earring": "silver stud", "mouth": "bored unshaven cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3955 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -47009,11 +58876,14 @@ "eyes": "bored", "mouth": "tongue out", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3956 + }, "metadata_dict": { "fur": "black", "background": "orange", @@ -47021,22 +58891,28 @@ "hat": "short mohawk", "clothes": "toga", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3957 + }, "metadata_dict": { "fur": "golden brown", "background": "gray", "hat": "vietnam era helmet", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3958 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "work vest", @@ -47044,11 +58920,14 @@ "background": "gray", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3959 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -47057,22 +58936,28 @@ "background": "purple", "hat": "safari", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3960 + }, "metadata_dict": { "mouth": "rage", "eyes": "3d", "fur": "cheetah", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3961 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "sushi chef headband", @@ -47080,11 +58965,14 @@ "background": "aquamarine", "fur": "brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3962 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "golden brown", @@ -47093,11 +58981,14 @@ "hat": "beanie", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3963 + }, "metadata_dict": { "fur": "black", "clothes": "smoking jacket", @@ -47105,22 +58996,28 @@ "background": "purple", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3964 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", "fur": "dark brown", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3965 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -47128,11 +59025,14 @@ "mouth": "phoneme vuh", "clothes": "tuxedo tee", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3966 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -47140,11 +59040,14 @@ "background": "blue", "hat": "short mohawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3967 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -47152,22 +59055,28 @@ "mouth": "bored unshaven cigar", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3968 + }, "metadata_dict": { "fur": "gray", "clothes": "admirals coat", "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3969 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -47175,11 +59084,14 @@ "hat": "army hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3970 + }, "metadata_dict": { "clothes": "striped tee", "background": "aquamarine", @@ -47188,11 +59100,14 @@ "eyes": "sleepy", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3971 + }, "metadata_dict": { "hat": "sushi chef headband", "earring": "diamond stud", @@ -47201,11 +59116,14 @@ "fur": "dark brown", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3972 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", @@ -47213,11 +59131,14 @@ "hat": "commie hat", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3973 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -47225,11 +59146,14 @@ "clothes": "biker vest", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3974 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -47238,11 +59162,14 @@ "earring": "gold hoop", "background": "orange", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3975 + }, "metadata_dict": { "eyes": "sad", "mouth": "dumbfounded", @@ -47251,11 +59178,14 @@ "earring": "silver hoop", "hat": "fisherman's hat", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3976 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "clothes": "sailor shirt", @@ -47263,11 +59193,14 @@ "eyes": "bored", "background": "gray", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3977 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "gray", @@ -47276,11 +59209,14 @@ "eyes": "robot", "clothes": "bayc t black", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3978 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "dark brown", @@ -47288,11 +59224,14 @@ "clothes": "sleeveless logo t", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3979 + }, "metadata_dict": { "eyes": "heart", "clothes": "prison jumpsuit", @@ -47300,11 +59239,14 @@ "background": "aquamarine", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3980 + }, "metadata_dict": { "fur": "cream", "clothes": "leather jacket", @@ -47312,11 +59254,14 @@ "hat": "girl's hair short", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3981 + }, "metadata_dict": { "fur": "pink", "eyes": "bloodshot", @@ -47325,11 +59270,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3982 + }, "metadata_dict": { "clothes": "striped tee", "earring": "gold hoop", @@ -47338,22 +59286,28 @@ "fur": "black", "hat": "army hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3983 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bloodshot", "hat": "fisherman's hat", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3984 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "scumbag", @@ -47361,11 +59315,14 @@ "background": "orange", "hat": "girl's hair short", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3985 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored cigarette", @@ -47373,33 +59330,42 @@ "hat": "army hat", "background": "purple", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3986 + }, "metadata_dict": { "eyes": "heart", "hat": "s&m hat", "background": "gray", "mouth": "grin", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3987 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", "mouth": "dumbfounded", "clothes": "leather jacket", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3988 + }, "metadata_dict": { "fur": "tan", "eyes": "bloodshot", @@ -47407,11 +59373,14 @@ "background": "yellow", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3989 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", @@ -47419,11 +59388,14 @@ "mouth": "bored", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3990 + }, "metadata_dict": { "hat": "horns", "background": "purple", @@ -47432,11 +59404,14 @@ "clothes": "stunt jacket", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3991 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin multicolored", @@ -47444,11 +59419,14 @@ "background": "yellow", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3992 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -47456,11 +59434,14 @@ "hat": "spinner hat", "fur": "pink", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3993 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -47468,11 +59449,14 @@ "clothes": "tuxedo tee", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3994 + }, "metadata_dict": { "eyes": "heart", "clothes": "biker vest", @@ -47480,33 +59464,42 @@ "background": "orange", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3995 + }, "metadata_dict": { "background": "blue", "fur": "black", "hat": "commie hat", "mouth": "bored cigar", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3996 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "tongue out", "fur": "cheetah", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3997 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "dumbfounded", @@ -47514,11 +59507,14 @@ "hat": "beanie", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3998 + }, "metadata_dict": { "eyes": "bloodshot", "earring": "silver hoop", @@ -47527,11 +59523,14 @@ "background": "army green", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 3999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 3999 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -47539,11 +59538,14 @@ "earring": "silver stud", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4000 + }, "metadata_dict": { "mouth": "grin", "clothes": "stunt jacket", @@ -47551,11 +59553,14 @@ "hat": "cowboy hat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4001 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "striped tee", @@ -47563,11 +59568,14 @@ "fur": "pink", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4002 + }, "metadata_dict": { "fur": "golden brown", "background": "purple", @@ -47576,11 +59584,14 @@ "eyes": "crazy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4003 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "striped tee", @@ -47589,11 +59600,14 @@ "earring": "silver hoop", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4004 + }, "metadata_dict": { "fur": "dmt", "hat": "fez", @@ -47601,11 +59615,14 @@ "background": "yellow", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4005 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -47614,11 +59631,14 @@ "hat": "cowboy hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4006 + }, "metadata_dict": { "earring": "silver stud", "background": "aquamarine", @@ -47626,22 +59646,28 @@ "hat": "army hat", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4007 + }, "metadata_dict": { "clothes": "black holes t", "fur": "gray", "background": "orange", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4008 + }, "metadata_dict": { "clothes": "kings robe", "hat": "girl's hair pink", @@ -47649,11 +59675,14 @@ "fur": "dark brown", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4009 + }, "metadata_dict": { "background": "orange", "hat": "short mohawk", @@ -47661,11 +59690,14 @@ "earring": "silver hoop", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4010 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -47673,44 +59705,56 @@ "earring": "gold stud", "hat": "safari", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4011 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "orange", "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4012 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "rage", "fur": "brown", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4013 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "clothes": "work vest", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4014 + }, "metadata_dict": { "clothes": "black suit", "eyes": "bored", @@ -47718,11 +59762,14 @@ "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4015 + }, "metadata_dict": { "eyes": "holographic", "clothes": "caveman pelt", @@ -47730,11 +59777,14 @@ "hat": "girl's hair pink", "mouth": "small grin", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4016 + }, "metadata_dict": { "clothes": "bone necklace", "fur": "black", @@ -47742,33 +59792,42 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4017 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", "background": "purple", "clothes": "guayabera", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4018 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "new punk blue", "eyes": "blindfold", "hat": "short mohawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4019 + }, "metadata_dict": { "fur": "cream", "mouth": "rage", @@ -47776,33 +59835,42 @@ "hat": "bowler", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4020 + }, "metadata_dict": { "eyes": "scumbag", "background": "aquamarine", "fur": "black", "mouth": "small grin", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4021 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "sleeveless t", "background": "aquamarine", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4022 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven cigarette", @@ -47810,11 +59878,14 @@ "clothes": "tanktop", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4023 + }, "metadata_dict": { "mouth": "rage", "clothes": "leather jacket", @@ -47822,32 +59893,41 @@ "hat": "bowler", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4024 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "phoneme vuh", "background": "orange", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4025 + }, "metadata_dict": { "background": "blue", "mouth": "bored", "fur": "robot", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4026 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", @@ -47856,11 +59936,14 @@ "fur": "black", "earring": "silver hoop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4027 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -47869,11 +59952,14 @@ "hat": "faux hawk", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4028 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -47882,11 +59968,14 @@ "background": "gray", "fur": "white", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4029 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -47894,11 +59983,14 @@ "mouth": "jovial", "background": "aquamarine", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4030 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -47907,11 +59999,14 @@ "fur": "brown", "background": "yellow", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4031 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "vietnam era helmet", @@ -47920,11 +60015,14 @@ "background": "yellow", "clothes": "stunt jacket", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4032 + }, "metadata_dict": { "mouth": "discomfort", "hat": "horns", @@ -47932,33 +60030,42 @@ "fur": "black", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4033 + }, "metadata_dict": { "background": "gray", "eyes": "coins", "clothes": "bayc t black", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4034 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "tan", "clothes": "black t", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4035 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -47967,11 +60074,14 @@ "eyes": "sleepy", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4036 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "puffy vest", @@ -47979,11 +60089,14 @@ "fur": "brown", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4037 + }, "metadata_dict": { "clothes": "tie dye", "eyes": "bloodshot", @@ -47991,32 +60104,41 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4038 + }, "metadata_dict": { "fur": "golden brown", "hat": "short mohawk", "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4039 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", "mouth": "bored", "fur": "cream" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4040 + }, "metadata_dict": { "background": "orange", "hat": "army hat", @@ -48024,11 +60146,14 @@ "earring": "silver hoop", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4041 + }, "metadata_dict": { "fur": "red", "hat": "bayc flipped brim", @@ -48036,11 +60161,14 @@ "mouth": "bored", "clothes": "hip hop", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4042 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", @@ -48049,22 +60177,28 @@ "mouth": "tongue out", "clothes": "bone necklace", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4043 + }, "metadata_dict": { "mouth": "grin", "eyes": "bored", "hat": "fisherman's hat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4044 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", @@ -48072,11 +60206,14 @@ "hat": "bayc flipped brim", "eyes": "bored", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4045 + }, "metadata_dict": { "fur": "golden brown", "clothes": "tweed suit", @@ -48084,11 +60221,14 @@ "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4046 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "scumbag", @@ -48097,11 +60237,14 @@ "clothes": "sailor shirt", "hat": "short mohawk", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4047 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "rage", @@ -48110,11 +60253,14 @@ "clothes": "biker vest", "hat": "army hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4048 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -48123,22 +60269,28 @@ "clothes": "rainbow suspenders", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4049 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", "fur": "black", "background": "orange", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4050 + }, "metadata_dict": { "fur": "tan", "clothes": "tweed suit", @@ -48146,33 +60298,42 @@ "background": "orange", "hat": "army hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4051 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "background": "aquamarine", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4052 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", "eyes": "bored", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4053 + }, "metadata_dict": { "clothes": "cowboy shirt", "fur": "black", @@ -48180,11 +60341,14 @@ "background": "gray", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4054 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", @@ -48192,11 +60356,14 @@ "fur": "dmt", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4055 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -48205,11 +60372,14 @@ "fur": "brown", "mouth": "phoneme wah", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4056 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "lumberjack shirt", @@ -48218,22 +60388,28 @@ "earring": "gold stud", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4057 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "pink", "background": "yellow", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4058 + }, "metadata_dict": { "clothes": "bandolier", "fur": "dmt", @@ -48242,22 +60418,28 @@ "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4059 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "phoneme vuh", "background": "gray", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4060 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -48266,11 +60448,14 @@ "fur": "black", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4061 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -48278,11 +60463,14 @@ "eyes": "3d", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4062 + }, "metadata_dict": { "eyes": "robot", "background": "orange", @@ -48290,11 +60478,14 @@ "hat": "faux hawk", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4063 + }, "metadata_dict": { "fur": "cream", "hat": "irish boho", @@ -48302,11 +60493,14 @@ "clothes": "guayabera", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4064 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -48315,22 +60509,28 @@ "clothes": "guayabera", "earring": "cross", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4065 + }, "metadata_dict": { "background": "new punk blue", "fur": "cheetah", "mouth": "bored", "clothes": "hip hop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4066 + }, "metadata_dict": { "hat": "king's crown", "mouth": "dumbfounded", @@ -48338,11 +60538,14 @@ "eyes": "sleepy", "fur": "white", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4067 + }, "metadata_dict": { "mouth": "bored dagger", "earring": "diamond stud", @@ -48350,11 +60553,14 @@ "background": "blue", "fur": "black", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4068 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "silver stud", @@ -48362,42 +60568,54 @@ "eyes": "bored", "background": "gray", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4069 + }, "metadata_dict": { "eyes": "heart", "background": "orange", "fur": "white", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4070 + }, "metadata_dict": { "background": "yellow", "fur": "tan", "mouth": "bored unshaven", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4071 + }, "metadata_dict": { "eyes": "heart", "hat": "girl's hair pink", "background": "yellow", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4072 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -48405,11 +60623,14 @@ "fur": "brown", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4073 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -48418,11 +60639,14 @@ "hat": "beanie", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4074 + }, "metadata_dict": { "background": "new punk blue", "fur": "brown", @@ -48431,11 +60655,14 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4075 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "gray", @@ -48443,11 +60670,14 @@ "fur": "brown", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4076 + }, "metadata_dict": { "background": "new punk blue", "hat": "irish boho", @@ -48456,11 +60686,14 @@ "fur": "cheetah", "mouth": "bored cigarette", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4077 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "blue", @@ -48468,11 +60701,14 @@ "background": "blue", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4078 + }, "metadata_dict": { "mouth": "grin", "fur": "cheetah", @@ -48480,11 +60716,14 @@ "background": "gray", "hat": "commie hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4079 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "gray", @@ -48492,33 +60731,42 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4080 + }, "metadata_dict": { "fur": "red", "background": "gray", "hat": "beanie", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4081 + }, "metadata_dict": { "fur": "golden brown", "hat": "bowler", "mouth": "bored cigarette", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4082 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "gold hoop", @@ -48527,22 +60775,28 @@ "clothes": "smoking jacket", "fur": "dark brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4083 + }, "metadata_dict": { "clothes": "striped tee", "fur": "black", "background": "gray", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4084 + }, "metadata_dict": { "mouth": "discomfort", "hat": "baby's bonnet", @@ -48551,11 +60805,14 @@ "background": "yellow", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4085 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -48563,11 +60820,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4086 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "scumbag", @@ -48575,11 +60835,14 @@ "background": "blue", "fur": "dark brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4087 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -48588,11 +60851,14 @@ "earring": "gold stud", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4088 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "grin multicolored", @@ -48600,11 +60866,14 @@ "clothes": "biker vest", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4089 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", @@ -48612,11 +60881,14 @@ "hat": "fisherman's hat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4090 + }, "metadata_dict": { "fur": "dmt", "mouth": "bored unshaven pipe", @@ -48624,11 +60896,14 @@ "clothes": "guayabera", "hat": "cowboy hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4091 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored party horn", @@ -48636,11 +60911,14 @@ "fur": "dark brown", "clothes": "lab coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4092 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "silver stud", @@ -48649,11 +60927,14 @@ "fur": "white", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4093 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -48661,11 +60942,14 @@ "hat": "seaman's hat", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4094 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "phoneme ooo", @@ -48673,11 +60957,14 @@ "earring": "gold stud", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4095 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -48685,11 +60972,14 @@ "fur": "red", "eyes": "bloodshot", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4096 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", @@ -48698,44 +60988,56 @@ "mouth": "phoneme vuh", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4097 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "dumbfounded", "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4098 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", "fur": "gray", "earring": "silver stud", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4099 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "hat": "baby's bonnet", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4100 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme ooo", @@ -48743,32 +61045,41 @@ "background": "blue", "fur": "cheetah", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4101 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "fur": "noise", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4102 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "dark brown", "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4103 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "tie dye", @@ -48776,11 +61087,14 @@ "fur": "brown", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4104 + }, "metadata_dict": { "earring": "silver stud", "fur": "pink", @@ -48789,22 +61103,28 @@ "background": "gray", "hat": "commie hat", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4105 + }, "metadata_dict": { "eyes": "heart", "background": "gray", "mouth": "bored", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4106 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "dumbfounded", @@ -48812,22 +61132,28 @@ "hat": "bayc flipped brim", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4107 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", "eyes": "scumbag", "background": "aquamarine", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4108 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "black suit", @@ -48835,22 +61161,28 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4109 + }, "metadata_dict": { "mouth": "jovial", "fur": "brown", "background": "yellow", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4110 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "irish boho", @@ -48858,22 +61190,28 @@ "fur": "dark brown", "clothes": "hip hop", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4111 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "bored", "hat": "fisherman's hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4112 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bone tee", @@ -48881,11 +61219,14 @@ "background": "gray", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4113 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -48893,11 +61234,14 @@ "eyes": "bloodshot", "fur": "brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4114 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -48905,11 +61249,14 @@ "eyes": "robot", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4115 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -48918,11 +61265,14 @@ "fur": "brown", "hat": "bunny ears", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4116 + }, "metadata_dict": { "hat": "party hat 2", "fur": "cream", @@ -48930,11 +61280,14 @@ "background": "aquamarine", "eyes": "bloodshot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4117 + }, "metadata_dict": { "fur": "cream", "hat": "s&m hat", @@ -48943,11 +61296,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4118 + }, "metadata_dict": { "mouth": "grin", "fur": "cheetah", @@ -48955,11 +61311,14 @@ "hat": "beanie", "clothes": "caveman pelt", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4119 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", @@ -48967,11 +61326,14 @@ "fur": "brown", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4120 + }, "metadata_dict": { "earring": "gold hoop", "background": "aquamarine", @@ -48979,11 +61341,14 @@ "eyes": "bored", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4121 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -48991,11 +61356,14 @@ "clothes": "tie dye", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4122 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "work vest", @@ -49004,22 +61372,28 @@ "earring": "silver hoop", "eyes": "bored", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4123 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "mouth": "phoneme ooo", "hat": "seaman's hat", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4124 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "irish boho", @@ -49027,11 +61401,14 @@ "clothes": "smoking jacket", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4125 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", @@ -49040,11 +61417,14 @@ "clothes": "smoking jacket", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4126 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "gray", @@ -49052,11 +61432,14 @@ "background": "gray", "clothes": "stunt jacket", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4127 + }, "metadata_dict": { "hat": "s&m hat", "fur": "dmt", @@ -49064,22 +61447,28 @@ "clothes": "admirals coat", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4128 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored unshaven cigar", "eyes": "sleepy", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4129 + }, "metadata_dict": { "clothes": "blue dress", "fur": "golden brown", @@ -49087,11 +61476,14 @@ "background": "orange", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4130 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "sailor shirt", @@ -49099,11 +61491,14 @@ "background": "orange", "mouth": "bored pizza", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4131 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -49111,11 +61506,14 @@ "hat": "bayc flipped brim", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4132 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", @@ -49123,11 +61521,14 @@ "background": "gray", "hat": "bowler", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4133 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "brown", @@ -49135,11 +61536,14 @@ "hat": "army hat", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4134 + }, "metadata_dict": { "clothes": "work vest", "mouth": "bored pipe", @@ -49147,21 +61551,27 @@ "hat": "fisherman's hat", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4135 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "crazy", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4136 + }, "metadata_dict": { "hat": "stuntman helmet", "clothes": "prison jumpsuit", @@ -49170,11 +61580,14 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4137 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "bloodshot", @@ -49182,22 +61595,28 @@ "fur": "cheetah", "background": "purple", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4138 + }, "metadata_dict": { "mouth": "grin", "clothes": "rainbow suspenders", "background": "blue", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4139 + }, "metadata_dict": { "fur": "brown", "earring": "diamond stud", @@ -49206,22 +61625,28 @@ "background": "yellow", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4140 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "tie dye", "mouth": "tongue out", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4141 + }, "metadata_dict": { "eyes": "closed", "hat": "fez", @@ -49229,44 +61654,56 @@ "earring": "silver stud", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4142 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "background": "purple", "clothes": "toga", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4143 + }, "metadata_dict": { "eyes": "coins", "mouth": "rage", "fur": "pink", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4144 + }, "metadata_dict": { "background": "blue", "mouth": "bored bubblegum", "eyes": "sleepy", "fur": "white", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4145 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -49274,11 +61711,14 @@ "earring": "silver hoop", "background": "purple", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4146 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", @@ -49286,11 +61726,14 @@ "background": "orange", "hat": "army hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4147 + }, "metadata_dict": { "background": "aquamarine", "fur": "noise", @@ -49298,22 +61741,28 @@ "clothes": "bone necklace", "hat": "bunny ears", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4148 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored unshaven pipe", "fur": "black", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4149 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "black", @@ -49321,21 +61770,27 @@ "background": "purple", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4150 + }, "metadata_dict": { "background": "orange", "mouth": "phoneme wah", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4151 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -49344,11 +61799,14 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4152 + }, "metadata_dict": { "clothes": "striped tee", "fur": "gray", @@ -49357,11 +61815,14 @@ "mouth": "bored", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4153 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -49369,42 +61830,54 @@ "eyes": "bloodshot", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4154 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "gray", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4155 + }, "metadata_dict": { "fur": "cheetah", "background": "blue", "mouth": "bored", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4156 + }, "metadata_dict": { "fur": "golden brown", "eyes": "3d", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4157 + }, "metadata_dict": { "fur": "golden brown", "clothes": "bayc t black", @@ -49412,32 +61885,41 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4158 + }, "metadata_dict": { "mouth": "jovial", "clothes": "biker vest", "eyes": "3d", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4159 + }, "metadata_dict": { "fur": "cheetah", "mouth": "bored", "background": "army green", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4160 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", @@ -49445,11 +61927,14 @@ "background": "aquamarine", "earring": "silver hoop", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4161 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -49457,11 +61942,14 @@ "eyes": "blindfold", "fur": "black", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4162 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme l", @@ -49469,11 +61957,14 @@ "clothes": "tweed suit", "hat": "stuntman helmet", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4163 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "golden brown", @@ -49481,11 +61972,14 @@ "eyes": "bloodshot", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4164 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -49493,11 +61987,14 @@ "background": "aquamarine", "earring": "silver hoop", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4165 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", @@ -49506,11 +62003,14 @@ "clothes": "tie dye", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4166 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", @@ -49518,11 +62018,14 @@ "hat": "army hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4167 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven", @@ -49530,22 +62033,28 @@ "earring": "silver hoop", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4168 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "eyes": "3d", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4169 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", @@ -49553,11 +62062,14 @@ "clothes": "toga", "fur": "death bot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4170 + }, "metadata_dict": { "fur": "black", "eyes": "3d", @@ -49566,11 +62078,14 @@ "hat": "girl's hair short", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4171 + }, "metadata_dict": { "mouth": "phoneme wah", "clothes": "smoking jacket", @@ -49578,22 +62093,28 @@ "fur": "brown", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4172 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored unshaven cigarette", "background": "purple", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4173 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -49602,11 +62123,14 @@ "hat": "bunny ears", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4174 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", @@ -49615,22 +62139,28 @@ "mouth": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4175 + }, "metadata_dict": { "eyes": "x eyes", "hat": "bayc hat black", "background": "gray", "fur": "brown", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4176 + }, "metadata_dict": { "eyes": "closed", "clothes": "tweed suit", @@ -49638,11 +62168,14 @@ "background": "gray", "hat": "bowler", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4177 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black suit", @@ -49651,11 +62184,14 @@ "eyes": "bored", "hat": "bayc hat red", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4178 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -49664,11 +62200,14 @@ "earring": "silver hoop", "clothes": "guayabera", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4179 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", @@ -49676,11 +62215,14 @@ "hat": "army hat", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4180 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -49688,11 +62230,14 @@ "eyes": "bored", "clothes": "pimp coat", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4181 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -49701,11 +62246,14 @@ "background": "gray", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4182 + }, "metadata_dict": { "hat": "s&m hat", "fur": "black", @@ -49714,11 +62262,14 @@ "background": "yellow", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4183 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "grin", @@ -49727,11 +62278,14 @@ "earring": "silver stud", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4184 + }, "metadata_dict": { "clothes": "tweed suit", "fur": "black", @@ -49739,11 +62293,14 @@ "eyes": "bored", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4185 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -49751,22 +62308,28 @@ "eyes": "3d", "earring": "cross", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4186 + }, "metadata_dict": { "mouth": "discomfort", "fur": "golden brown", "eyes": "bored", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4187 + }, "metadata_dict": { "eyes": "closed", "fur": "dmt", @@ -49774,22 +62337,28 @@ "hat": "faux hawk", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4188 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "background": "gray", "fur": "robot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4189 + }, "metadata_dict": { "mouth": "grin", "background": "orange", @@ -49798,11 +62367,14 @@ "earring": "cross", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4190 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -49810,22 +62382,28 @@ "mouth": "phoneme vuh", "eyes": "bored", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4191 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "background": "blue", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4192 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -49833,11 +62411,14 @@ "eyes": "bloodshot", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4193 + }, "metadata_dict": { "background": "aquamarine", "hat": "spinner hat", @@ -49845,11 +62426,14 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4194 + }, "metadata_dict": { "background": "gray", "earring": "silver stud", @@ -49857,22 +62441,28 @@ "fur": "brown", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4195 + }, "metadata_dict": { "background": "gray", "fur": "black", "clothes": "smoking jacket", "mouth": "bored unshaven cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4196 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "rainbow suspenders", @@ -49881,22 +62471,28 @@ "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4197 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "blindfold", "background": "orange", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4198 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "fez", @@ -49904,22 +62500,28 @@ "fur": "red", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4199 + }, "metadata_dict": { "fur": "pink", "eyes": "bloodshot", "mouth": "bored", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4200 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -49927,11 +62529,14 @@ "clothes": "prison jumpsuit", "background": "aquamarine", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4201 + }, "metadata_dict": { "hat": "girl's hair pink", "earring": "silver stud", @@ -49940,22 +62545,28 @@ "clothes": "lab coat", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4202 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored cigarette", "fur": "dark brown", "eyes": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4203 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "bored unshaven party horn", @@ -49963,32 +62574,41 @@ "fur": "brown", "hat": "bowler", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4204 + }, "metadata_dict": { "eyes": "heart", "fur": "black", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4205 + }, "metadata_dict": { "eyes": "closed", "background": "orange", "fur": "brown", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4206 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "wool turtleneck", @@ -49996,11 +62616,14 @@ "background": "orange", "eyes": "bloodshot", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4207 + }, "metadata_dict": { "eyes": "holographic", "fur": "golden brown", @@ -50009,11 +62632,14 @@ "clothes": "tanktop", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4208 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "golden brown", @@ -50021,11 +62647,14 @@ "earring": "gold hoop", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4209 + }, "metadata_dict": { "clothes": "blue dress", "background": "blue", @@ -50033,11 +62662,14 @@ "mouth": "tongue out", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4210 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -50045,11 +62677,14 @@ "fur": "black", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4211 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -50058,21 +62693,27 @@ "fur": "black", "earring": "silver hoop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4212 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "background": "orange", "eyes": "bloodshot", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4213 + }, "metadata_dict": { "eyes": "holographic", "fur": "cream", @@ -50080,11 +62721,14 @@ "mouth": "phoneme vuh", "earring": "gold stud", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4214 + }, "metadata_dict": { "eyes": "holographic", "mouth": "dumbfounded", @@ -50092,22 +62736,28 @@ "fur": "noise", "hat": "cowboy hat", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4215 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "eyepatch", "mouth": "grin diamond grill", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4216 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "aquamarine", @@ -50115,11 +62765,14 @@ "eyes": "bored", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4217 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "bone tee", @@ -50127,44 +62780,56 @@ "background": "gray", "eyes": "cyborg", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4218 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "fur": "golden brown", "hat": "king's crown", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4219 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "blindfold", "background": "aquamarine", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4220 + }, "metadata_dict": { "hat": "spinner hat", "mouth": "small grin", "fur": "white", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4221 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -50172,22 +62837,28 @@ "eyes": "angry", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4222 + }, "metadata_dict": { "fur": "pink", "eyes": "bored", "hat": "girl's hair short", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4223 + }, "metadata_dict": { "mouth": "phoneme wah", "earring": "silver stud", @@ -50196,11 +62867,14 @@ "background": "purple", "eyes": "angry", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4224 + }, "metadata_dict": { "fur": "gray", "background": "aquamarine", @@ -50208,11 +62882,14 @@ "mouth": "bored bubblegum", "hat": "cowboy hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4225 + }, "metadata_dict": { "mouth": "bored cigarette", "clothes": "prison jumpsuit", @@ -50220,11 +62897,14 @@ "hat": "fisherman's hat", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4226 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -50232,11 +62912,14 @@ "hat": "army hat", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4227 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -50244,22 +62927,28 @@ "hat": "cowboy hat", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4228 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", "mouth": "dumbfounded", "fur": "brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4229 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", @@ -50267,43 +62956,55 @@ "background": "purple", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4230 + }, "metadata_dict": { "fur": "tan", "hat": "horns", "mouth": "bored party horn", "background": "orange", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4231 + }, "metadata_dict": { "background": "blue", "fur": "pink", "eyes": "sunglasses", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4232 + }, "metadata_dict": { "clothes": "black holes t", "background": "blue", "fur": "black", "mouth": "bored unshaven cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4233 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -50312,11 +63013,14 @@ "hat": "fisherman's hat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4234 + }, "metadata_dict": { "hat": "sea captain's hat", "mouth": "jovial", @@ -50324,33 +63028,42 @@ "eyes": "crazy", "fur": "zombie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4235 + }, "metadata_dict": { "mouth": "bored bubblegum", "clothes": "smoking jacket", "eyes": "3d", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4236 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", "clothes": "toga", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4237 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -50358,55 +63071,70 @@ "fur": "dark brown", "hat": "girl's hair short", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4238 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin diamond grill", "background": "orange", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4239 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", "fur": "black", "mouth": "bored pizza", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4240 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored unshaven pipe", "clothes": "sleeveless logo t", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4241 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "dumbfounded", "background": "blue", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4242 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -50415,43 +63143,55 @@ "earring": "gold stud", "fur": "dark brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4243 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored party horn", "background": "blue", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4244 + }, "metadata_dict": { "fur": "brown", "background": "blue", "mouth": "bored party horn", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4245 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", "mouth": "bored unshaven", "hat": "party hat 1", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4246 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -50459,11 +63199,14 @@ "background": "aquamarine", "hat": "cowboy hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4247 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "dumbfounded", @@ -50471,11 +63214,14 @@ "hat": "army hat", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4248 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", @@ -50484,11 +63230,14 @@ "earring": "gold hoop", "clothes": "tweed suit", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4249 + }, "metadata_dict": { "clothes": "bandolier", "hat": "sushi chef headband", @@ -50496,22 +63245,28 @@ "fur": "brown", "mouth": "phoneme wah", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4250 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "robot", "fur": "black", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4251 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -50519,21 +63274,27 @@ "clothes": "biker vest", "background": "orange", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4252 + }, "metadata_dict": { "eyes": "zombie", "mouth": "bored unshaven", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4253 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -50541,11 +63302,14 @@ "clothes": "sleeveless t", "hat": "spinner hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4254 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "kings robe", @@ -50554,11 +63318,14 @@ "earring": "gold stud", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4255 + }, "metadata_dict": { "fur": "cream", "background": "blue", @@ -50566,11 +63333,14 @@ "eyes": "bored", "mouth": "tongue out", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4256 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "red", @@ -50578,11 +63348,14 @@ "hat": "bayc flipped brim", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4257 + }, "metadata_dict": { "background": "aquamarine", "mouth": "jovial", @@ -50590,11 +63363,14 @@ "clothes": "tie dye", "hat": "faux hawk", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4258 + }, "metadata_dict": { "eyes": "holographic", "clothes": "blue dress", @@ -50603,11 +63379,14 @@ "background": "blue", "earring": "gold stud", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4259 + }, "metadata_dict": { "fur": "cream", "background": "blue", @@ -50616,11 +63395,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4260 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "cowboy shirt", @@ -50628,11 +63410,14 @@ "background": "blue", "fur": "dark brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4261 + }, "metadata_dict": { "clothes": "striped tee", "earring": "silver stud", @@ -50641,11 +63426,14 @@ "background": "yellow", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4262 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored cigarette", @@ -50654,11 +63442,14 @@ "hat": "army hat", "fur": "white", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4263 + }, "metadata_dict": { "eyes": "coins", "fur": "dark brown", @@ -50666,11 +63457,14 @@ "clothes": "bone necklace", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4264 + }, "metadata_dict": { "clothes": "space suit", "fur": "dmt", @@ -50678,11 +63472,14 @@ "mouth": "dumbfounded", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4265 + }, "metadata_dict": { "eyes": "coins", "hat": "fez", @@ -50690,22 +63487,28 @@ "clothes": "work vest", "background": "blue", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4266 + }, "metadata_dict": { "eyes": "blindfold", "fur": "red", "background": "blue", "clothes": "smoking jacket", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4267 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", @@ -50713,33 +63516,42 @@ "eyes": "bored", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4268 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "pink", "mouth": "small grin", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4269 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", "eyes": "coins", "fur": "black", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4270 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -50747,11 +63559,14 @@ "clothes": "pimp coat", "mouth": "bored unshaven cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4271 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "red", @@ -50759,11 +63574,14 @@ "eyes": "bored", "clothes": "sleeveless logo t", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4272 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -50771,44 +63589,56 @@ "background": "orange", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4273 + }, "metadata_dict": { "background": "orange", "eyes": "bloodshot", "mouth": "bored pizza", "fur": "brown", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4274 + }, "metadata_dict": { "background": "blue", "eyes": "robot", "hat": "bayc flipped brim", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4275 + }, "metadata_dict": { "fur": "cream", "hat": "horns", "eyes": "hypnotized", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4276 + }, "metadata_dict": { "hat": "bandana blue", "eyes": "blindfold", @@ -50816,11 +63646,14 @@ "clothes": "smoking jacket", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4277 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -50828,22 +63661,28 @@ "hat": "faux hawk", "clothes": "sleeveless logo t", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4278 + }, "metadata_dict": { "hat": "fez", "mouth": "dumbfounded", "background": "blue", "eyes": "bloodshot", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4279 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -50851,11 +63690,14 @@ "eyes": "3d", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4280 + }, "metadata_dict": { "fur": "cream", "eyes": "blindfold", @@ -50864,22 +63706,28 @@ "clothes": "toga", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4281 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "background": "aquamarine", "eyes": "blue beams", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4282 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -50887,11 +63735,14 @@ "clothes": "rainbow suspenders", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4283 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -50899,11 +63750,14 @@ "hat": "short mohawk", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4284 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", @@ -50911,11 +63765,14 @@ "background": "orange", "earring": "silver hoop", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4285 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", @@ -50923,11 +63780,14 @@ "hat": "bunny ears", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4286 + }, "metadata_dict": { "eyes": "closed", "earring": "silver stud", @@ -50935,22 +63795,28 @@ "clothes": "smoking jacket", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4287 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "mouth": "bored unshaven", "clothes": "service", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4288 + }, "metadata_dict": { "mouth": "phoneme vuh", "earring": "silver stud", @@ -50959,11 +63825,14 @@ "fur": "dark brown", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4289 + }, "metadata_dict": { "hat": "baby's bonnet", "earring": "silver stud", @@ -50971,11 +63840,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4290 + }, "metadata_dict": { "fur": "red", "earring": "gold stud", @@ -50984,11 +63856,14 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4291 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -50996,44 +63871,56 @@ "fur": "black", "eyes": "3d", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4292 + }, "metadata_dict": { "hat": "s&m hat", "fur": "gray", "eyes": "bored", "mouth": "bored unshaven cigar", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4293 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "dark brown", "background": "gray", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4294 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", "hat": "seaman's hat", "background": "orange", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4295 + }, "metadata_dict": { "fur": "cream", "hat": "irish boho", @@ -51041,21 +63928,27 @@ "mouth": "grin", "background": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4296 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4297 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "sleeveless t", @@ -51063,11 +63956,14 @@ "background": "blue", "hat": "spinner hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4298 + }, "metadata_dict": { "mouth": "grin", "clothes": "tanktop", @@ -51075,11 +63971,14 @@ "fur": "brown", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4299 + }, "metadata_dict": { "clothes": "kings robe", "fur": "tan", @@ -51087,11 +63986,14 @@ "hat": "bunny ears", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4300 + }, "metadata_dict": { "fur": "tan", "clothes": "tie dye", @@ -51099,11 +64001,14 @@ "hat": "spinner hat", "background": "yellow", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4301 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -51111,11 +64016,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4302 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -51124,22 +64032,28 @@ "earring": "silver hoop", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4303 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "bored cigarette", "eyes": "blindfold", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4304 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -51147,11 +64061,14 @@ "clothes": "tuxedo tee", "hat": "bunny ears", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4305 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "golden brown", @@ -51159,33 +64076,42 @@ "clothes": "tie dye", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4306 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "phoneme vuh", "hat": "fisherman's hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4307 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "dark brown", "eyes": "bored", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4308 + }, "metadata_dict": { "fur": "tan", "mouth": "rage", @@ -51193,22 +64119,28 @@ "hat": "commie hat", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4309 + }, "metadata_dict": { "eyes": "holographic", "fur": "golden brown", "clothes": "lab coat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4310 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -51217,11 +64149,14 @@ "earring": "silver hoop", "eyes": "bored", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4311 + }, "metadata_dict": { "eyes": "heart", "earring": "gold hoop", @@ -51229,11 +64164,14 @@ "fur": "pink", "background": "orange", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4312 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -51241,11 +64179,14 @@ "fur": "pink", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4313 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bored", @@ -51253,11 +64194,14 @@ "hat": "commie hat", "fur": "white", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4314 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", @@ -51266,11 +64210,14 @@ "hat": "beanie", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4315 + }, "metadata_dict": { "eyes": "closed", "clothes": "prison jumpsuit", @@ -51278,11 +64225,14 @@ "mouth": "tongue out", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4316 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -51290,11 +64240,14 @@ "hat": "vietnam era helmet", "background": "purple", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4317 + }, "metadata_dict": { "mouth": "grin", "eyes": "3d", @@ -51302,11 +64255,14 @@ "background": "orange", "hat": "short mohawk", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4318 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", @@ -51314,11 +64270,14 @@ "mouth": "small grin", "fur": "brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4319 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "black t", @@ -51326,11 +64285,14 @@ "eyes": "bloodshot", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4320 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "new punk blue", @@ -51338,33 +64300,42 @@ "fur": "tan", "hat": "spinner hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4321 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme vuh", "background": "aquamarine", "eyes": "robot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4322 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", "fur": "red", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4323 + }, "metadata_dict": { "hat": "s&m hat", "background": "yellow", @@ -51372,44 +64343,56 @@ "mouth": "bored cigar", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4324 + }, "metadata_dict": { "eyes": "heart", "hat": "s&m hat", "mouth": "grin", "background": "orange", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4325 + }, "metadata_dict": { "clothes": "black t", "fur": "dark brown", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4326 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", "background": "blue", "fur": "brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4327 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -51417,11 +64400,14 @@ "mouth": "bored unshaven kazoo", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4328 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -51429,11 +64415,14 @@ "hat": "spinner hat", "background": "orange", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4329 + }, "metadata_dict": { "earring": "diamond stud", "mouth": "dumbfounded", @@ -51442,11 +64431,14 @@ "background": "purple", "hat": "safari", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4330 + }, "metadata_dict": { "clothes": "black t", "mouth": "dumbfounded", @@ -51454,11 +64446,14 @@ "eyes": "sleepy", "hat": "commie hat", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4331 + }, "metadata_dict": { "background": "gray", "clothes": "rainbow suspenders", @@ -51466,11 +64461,14 @@ "hat": "fisherman's hat", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4332 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -51478,11 +64476,14 @@ "background": "gray", "hat": "halo", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4333 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -51490,11 +64491,14 @@ "fur": "red", "eyes": "robot", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4334 + }, "metadata_dict": { "hat": "bayc flipped brim", "eyes": "bored", @@ -51502,11 +64506,14 @@ "background": "army green", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4335 + }, "metadata_dict": { "clothes": "striped tee", "earring": "diamond stud", @@ -51514,11 +64521,14 @@ "fur": "brown", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4336 + }, "metadata_dict": { "clothes": "striped tee", "earring": "gold hoop", @@ -51527,11 +64537,14 @@ "eyes": "bored", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4337 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -51539,11 +64552,14 @@ "fur": "gray", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4338 + }, "metadata_dict": { "hat": "party hat 1", "earring": "gold stud", @@ -51551,11 +64567,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4339 + }, "metadata_dict": { "fur": "cream", "hat": "prussian helmet", @@ -51563,11 +64582,14 @@ "eyes": "bloodshot", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4340 + }, "metadata_dict": { "eyes": "closed", "fur": "black", @@ -51575,11 +64597,14 @@ "mouth": "small grin", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4341 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored kazoo", @@ -51587,11 +64612,14 @@ "fur": "black", "eyes": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4342 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -51600,11 +64628,14 @@ "background": "purple", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4343 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "closed", @@ -51612,11 +64643,14 @@ "mouth": "dumbfounded", "background": "aquamarine", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4344 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -51624,11 +64658,14 @@ "hat": "s&m hat", "fur": "brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4345 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -51636,21 +64673,27 @@ "mouth": "dumbfounded", "eyes": "robot", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4346 + }, "metadata_dict": { "fur": "red", "eyes": "heart", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4347 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "stunt jacket", @@ -51658,22 +64701,28 @@ "background": "gray", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4348 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "faux hawk", "background": "purple", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4349 + }, "metadata_dict": { "eyes": "coins", "clothes": "sailor shirt", @@ -51681,55 +64730,70 @@ "hat": "vietnam era helmet", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4350 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "heart", "fur": "black", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4351 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven party horn", "background": "aquamarine", "eyes": "bloodshot", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4352 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "red", "hat": "girl's hair short", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4353 + }, "metadata_dict": { "fur": "dmt", "eyes": "bloodshot", "hat": "bowler", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4354 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin", @@ -51737,32 +64801,41 @@ "fur": "brown", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4355 + }, "metadata_dict": { "fur": "tan", "mouth": "bored", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4356 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "background": "orange", "eyes": "bloodshot", "hat": "bayc hat red", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4357 + }, "metadata_dict": { "hat": "irish boho", "fur": "dmt", @@ -51771,22 +64844,28 @@ "eyes": "bored", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4358 + }, "metadata_dict": { "fur": "tan", "background": "aquamarine", "eyes": "bored", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4359 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -51795,11 +64874,14 @@ "earring": "silver hoop", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4360 + }, "metadata_dict": { "hat": "party hat 1", "background": "aquamarine", @@ -51807,11 +64889,14 @@ "eyes": "3d", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4361 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -51820,33 +64905,42 @@ "earring": "silver hoop", "hat": "girl's hair short", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4362 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "hat": "irish boho", "fur": "pink", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4363 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", "mouth": "grin multicolored", "hat": "seaman's hat", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4364 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin", @@ -51854,22 +64948,28 @@ "eyes": "angry", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4365 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "scumbag", "fur": "white", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4366 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "golden brown", @@ -51878,11 +64978,14 @@ "mouth": "bored", "hat": "commie hat", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4367 + }, "metadata_dict": { "eyes": "heart", "clothes": "blue dress", @@ -51890,22 +64993,28 @@ "mouth": "bored unshaven pipe", "background": "blue", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4368 + }, "metadata_dict": { "fur": "cream", "clothes": "lumberjack shirt", "eyes": "bloodshot", "mouth": "bored pizza", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4369 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "scumbag", @@ -51913,22 +65022,28 @@ "fur": "brown", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4370 + }, "metadata_dict": { "fur": "tan", "eyes": "3d", "mouth": "bored", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4371 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "tan", @@ -51936,22 +65051,28 @@ "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4372 + }, "metadata_dict": { "mouth": "grin", "fur": "dark brown", "eyes": "bored", "clothes": "tanktop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4373 + }, "metadata_dict": { "earring": "silver stud", "mouth": "jovial", @@ -51959,11 +65080,14 @@ "eyes": "bored", "hat": "bowler", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4374 + }, "metadata_dict": { "fur": "dmt", "background": "aquamarine", @@ -51971,11 +65095,14 @@ "mouth": "tongue out", "hat": "beanie", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4375 + }, "metadata_dict": { "mouth": "grin diamond grill", "clothes": "biker vest", @@ -51983,11 +65110,14 @@ "eyes": "bored", "hat": "cowboy hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4376 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "new punk blue", @@ -51995,11 +65125,14 @@ "hat": "bowler", "eyes": "sleepy", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4377 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -52007,11 +65140,14 @@ "hat": "bayc flipped brim", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4378 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -52020,11 +65156,14 @@ "clothes": "navy striped tee", "mouth": "bored cigar", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4379 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -52032,11 +65171,14 @@ "mouth": "phoneme ooo", "hat": "beanie", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4380 + }, "metadata_dict": { "fur": "trippy", "clothes": "black t", @@ -52044,11 +65186,14 @@ "background": "orange", "hat": "short mohawk", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4381 + }, "metadata_dict": { "mouth": "discomfort", "fur": "golden brown", @@ -52056,11 +65201,14 @@ "background": "orange", "hat": "bayc flipped brim", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4382 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -52068,11 +65216,14 @@ "background": "yellow", "clothes": "stunt jacket", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4383 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -52080,11 +65231,14 @@ "hat": "fisherman's hat", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4384 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -52092,11 +65246,14 @@ "hat": "girl's hair short", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4385 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "purple", @@ -52104,11 +65261,14 @@ "mouth": "bored", "clothes": "navy striped tee", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4386 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "bone necklace", @@ -52116,22 +65276,28 @@ "hat": "safari", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4387 + }, "metadata_dict": { "fur": "gray", "clothes": "black t", "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4388 + }, "metadata_dict": { "eyes": "holographic", "fur": "golden brown", @@ -52139,11 +65305,14 @@ "hat": "fez", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4389 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "grin multicolored", @@ -52151,11 +65320,14 @@ "hat": "fisherman's hat", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4390 + }, "metadata_dict": { "background": "gray", "eyes": "zombie", @@ -52163,32 +65335,41 @@ "fur": "brown", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4391 + }, "metadata_dict": { "fur": "red", "mouth": "jovial", "background": "blue", "hat": "bayc hat red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4392 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven", "eyes": "3d", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4393 + }, "metadata_dict": { "fur": "cheetah", "eyes": "coins", @@ -52196,11 +65377,14 @@ "background": "aquamarine", "mouth": "tongue out", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4394 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -52208,11 +65392,14 @@ "clothes": "leather jacket", "mouth": "bored bubblegum", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4395 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "closed", @@ -52221,11 +65408,14 @@ "hat": "short mohawk", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4396 + }, "metadata_dict": { "eyes": "coins", "fur": "pink", @@ -52233,43 +65423,55 @@ "mouth": "bored unshaven cigar", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4397 + }, "metadata_dict": { "fur": "brown", "mouth": "grin", "eyes": "coins", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4398 + }, "metadata_dict": { "fur": "gray", "mouth": "rage", "background": "blue", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4399 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "black", "clothes": "toga", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4400 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme oh", @@ -52277,11 +65479,14 @@ "fur": "solid gold", "hat": "fisherman's hat", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4401 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -52290,11 +65495,14 @@ "earring": "silver hoop", "hat": "fisherman's hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4402 + }, "metadata_dict": { "mouth": "grin", "fur": "red", @@ -52302,22 +65510,28 @@ "clothes": "tie dye", "eyes": "bloodshot", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4403 + }, "metadata_dict": { "hat": "laurel wreath", "eyes": "coins", "mouth": "phoneme vuh", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4404 + }, "metadata_dict": { "mouth": "bored cigarette", "earring": "silver hoop", @@ -52325,22 +65539,28 @@ "fur": "white", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4405 + }, "metadata_dict": { "fur": "gray", "background": "aquamarine", "hat": "army hat", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4406 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "jovial", @@ -52349,11 +65569,14 @@ "background": "purple", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4407 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -52362,11 +65585,14 @@ "earring": "silver hoop", "hat": "vietnam era helmet", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4408 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -52374,22 +65600,28 @@ "eyes": "bored", "clothes": "tanktop", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4409 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "bayc t red", "eyes": "bloodshot", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4410 + }, "metadata_dict": { "fur": "tan", "earring": "silver hoop", @@ -52397,11 +65629,14 @@ "background": "purple", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4411 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "black t", @@ -52409,22 +65644,28 @@ "background": "gray", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4412 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", "mouth": "jovial", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4413 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin multicolored", @@ -52433,11 +65674,14 @@ "earring": "silver hoop", "clothes": "pimp coat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4414 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "tie dye", @@ -52445,11 +65689,14 @@ "mouth": "tongue out", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4415 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored unshaven party horn", @@ -52457,11 +65704,14 @@ "background": "orange", "hat": "commie hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4416 + }, "metadata_dict": { "fur": "golden brown", "hat": "girl's hair pink", @@ -52469,11 +65719,14 @@ "eyes": "3d", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4417 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "black holes t", @@ -52481,21 +65734,27 @@ "background": "purple", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4418 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "laser eyes", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4419 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -52504,22 +65763,28 @@ "background": "gray", "mouth": "bored cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4420 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", "hat": "army hat", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4421 + }, "metadata_dict": { "fur": "golden brown", "background": "aquamarine", @@ -52527,11 +65792,14 @@ "hat": "beanie", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4422 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -52540,11 +65808,14 @@ "background": "orange", "fur": "brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4423 + }, "metadata_dict": { "fur": "cream", "hat": "baby's bonnet", @@ -52552,11 +65823,14 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4424 + }, "metadata_dict": { "fur": "dark brown", "hat": "commie hat", @@ -52564,55 +65838,70 @@ "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4425 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", "eyes": "holographic", "fur": "red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4426 + }, "metadata_dict": { "background": "orange", "clothes": "prom dress", "eyes": "sleepy", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4427 + }, "metadata_dict": { "mouth": "phoneme l", "background": "orange", "earring": "silver hoop", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4428 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "work vest", "fur": "black", "mouth": "small grin", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4429 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "pink", @@ -52620,11 +65909,14 @@ "background": "purple", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4430 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -52633,22 +65925,28 @@ "mouth": "bored", "earring": "silver hoop", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4431 + }, "metadata_dict": { "fur": "gray", "hat": "party hat 1", "mouth": "phoneme vuh", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4432 + }, "metadata_dict": { "background": "yellow", "eyes": "bloodshot", @@ -52656,11 +65954,14 @@ "fur": "brown", "clothes": "prom dress", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4433 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored kazoo", @@ -52668,11 +65969,14 @@ "earring": "silver stud", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4434 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -52680,11 +65984,14 @@ "eyes": "bloodshot", "hat": "bayc flipped brim", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4435 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin multicolored", @@ -52692,11 +65999,14 @@ "background": "blue", "clothes": "tuxedo tee", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4436 + }, "metadata_dict": { "mouth": "dumbfounded", "earring": "gold stud", @@ -52704,11 +66014,14 @@ "background": "purple", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4437 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", @@ -52716,11 +66029,14 @@ "eyes": "bloodshot", "hat": "faux hawk", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4438 + }, "metadata_dict": { "clothes": "smoking jacket", "background": "gray", @@ -52728,22 +66044,28 @@ "mouth": "bored", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4439 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "pink", "clothes": "bayc t black", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4440 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -52752,11 +66074,14 @@ "hat": "cowboy hat", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4441 + }, "metadata_dict": { "hat": "horns", "clothes": "black holes t", @@ -52764,33 +66089,42 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4442 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", "fur": "brown", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4443 + }, "metadata_dict": { "eyes": "3d", "clothes": "guayabera", "fur": "cheetah", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4444 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -52799,11 +66133,14 @@ "clothes": "biker vest", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4445 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "black", @@ -52811,44 +66148,56 @@ "hat": "girl's hair short", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4446 + }, "metadata_dict": { "fur": "tan", "clothes": "lumberjack shirt", "eyes": "3d", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4447 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4448 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "fur": "black", "eyes": "bloodshot", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4449 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -52857,11 +66206,14 @@ "earring": "silver hoop", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4450 + }, "metadata_dict": { "mouth": "dumbfounded", "hat": "faux hawk", @@ -52869,22 +66221,28 @@ "clothes": "toga", "fur": "cheetah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4451 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "3d", "background": "orange", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4452 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", @@ -52892,11 +66250,14 @@ "background": "army green", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4453 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -52904,11 +66265,14 @@ "fur": "dark brown", "clothes": "bayc t black", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4454 + }, "metadata_dict": { "mouth": "discomfort", "earring": "silver stud", @@ -52917,11 +66281,14 @@ "hat": "army hat", "background": "purple", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4455 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "prison jumpsuit", @@ -52929,11 +66296,14 @@ "fur": "black", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4456 + }, "metadata_dict": { "fur": "golden brown", "background": "yellow", @@ -52941,33 +66311,42 @@ "hat": "bayc hat red", "clothes": "stunt jacket", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4457 + }, "metadata_dict": { "fur": "golden brown", "hat": "faux hawk", "background": "gray", "mouth": "bored cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4458 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "trippy", "background": "aquamarine", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4459 + }, "metadata_dict": { "eyes": "heart", "hat": "sea captain's hat", @@ -52975,22 +66354,28 @@ "background": "gray", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4460 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "robot", "fur": "dark brown", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4461 + }, "metadata_dict": { "eyes": "x eyes", "hat": "bayc hat black", @@ -52999,11 +66384,14 @@ "mouth": "phoneme vuh", "clothes": "cowboy shirt", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4462 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -53011,33 +66399,42 @@ "clothes": "black suit", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4463 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "phoneme vuh", "fur": "dark brown", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4464 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "background": "aquamarine", "clothes": "lab coat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4465 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -53045,11 +66442,14 @@ "hat": "bunny ears", "eyes": "angry", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4466 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -53057,11 +66457,14 @@ "hat": "king's crown", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4467 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -53069,11 +66472,14 @@ "mouth": "bored", "hat": "safari", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4468 + }, "metadata_dict": { "eyes": "closed", "clothes": "sailor shirt", @@ -53081,11 +66487,14 @@ "mouth": "bored bubblegum", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4469 + }, "metadata_dict": { "mouth": "grin", "clothes": "tanktop", @@ -53093,11 +66502,14 @@ "eyes": "bored", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4470 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", @@ -53105,11 +66517,14 @@ "fur": "noise", "hat": "army hat", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4471 + }, "metadata_dict": { "clothes": "space suit", "fur": "red", @@ -53117,22 +66532,28 @@ "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4472 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", "fur": "golden brown", "background": "blue", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4473 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "black", @@ -53140,11 +66561,14 @@ "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4474 + }, "metadata_dict": { "eyes": "x eyes", "hat": "halo", @@ -53152,11 +66576,14 @@ "mouth": "bored", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4475 + }, "metadata_dict": { "fur": "cream", "earring": "silver hoop", @@ -53164,11 +66591,14 @@ "mouth": "bored", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4476 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -53177,11 +66607,14 @@ "background": "blue", "earring": "silver hoop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4477 + }, "metadata_dict": { "mouth": "jovial", "fur": "black", @@ -53189,33 +66622,42 @@ "hat": "safari", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4478 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme l", "hat": "stuntman helmet", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4479 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "dmt", "background": "orange", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4480 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -53223,11 +66665,14 @@ "background": "yellow", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4481 + }, "metadata_dict": { "eyes": "x eyes", "background": "gray", @@ -53236,11 +66681,14 @@ "hat": "fisherman's hat", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4482 + }, "metadata_dict": { "eyes": "heart", "fur": "trippy", @@ -53248,11 +66696,14 @@ "clothes": "prison jumpsuit", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4483 + }, "metadata_dict": { "mouth": "rage", "earring": "silver stud", @@ -53261,22 +66712,28 @@ "eyes": "sleepy", "hat": "commie hat", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4484 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "background": "purple", "fur": "robot", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4485 + }, "metadata_dict": { "eyes": "closed", "hat": "bandana blue", @@ -53285,11 +66742,14 @@ "clothes": "tie dye", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4486 + }, "metadata_dict": { "fur": "cream", "clothes": "black holes t", @@ -53297,43 +66757,55 @@ "earring": "silver stud", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4487 + }, "metadata_dict": { "hat": "s&m hat", "background": "aquamarine", "fur": "black", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4488 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "red", "background": "orange", "eyes": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4489 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "fur": "dark brown", "background": "orange", "eyes": "blindfold" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4490 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "grin", @@ -53341,11 +66813,14 @@ "clothes": "tweed suit", "fur": "pink", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4491 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "fisherman's hat", @@ -53353,11 +66828,14 @@ "eyes": "bored", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4492 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -53365,11 +66843,14 @@ "clothes": "cowboy shirt", "hat": "spinner hat", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4493 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "kings robe", @@ -53377,33 +66858,42 @@ "background": "blue", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4494 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", "hat": "fez", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4495 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "mouth": "bored", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4496 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tweed suit", @@ -53412,22 +66902,28 @@ "earring": "gold stud", "hat": "vietnam era helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4497 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "hypnotized", "hat": "fez", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4498 + }, "metadata_dict": { "background": "gray", "fur": "golden brown", @@ -53435,22 +66931,28 @@ "mouth": "bored unshaven cigarette", "clothes": "guayabera", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4499 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "clothes": "blue dress", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4500 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "rage", @@ -53459,22 +66961,28 @@ "fur": "brown", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4501 + }, "metadata_dict": { "fur": "brown", "background": "orange", "eyes": "bloodshot", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4502 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "zombie", @@ -53482,11 +66990,14 @@ "earring": "silver stud", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4503 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -53495,11 +67006,14 @@ "earring": "silver hoop", "hat": "safari", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4504 + }, "metadata_dict": { "hat": "irish boho", "background": "aquamarine", @@ -53508,11 +67022,14 @@ "clothes": "lab coat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4505 + }, "metadata_dict": { "fur": "gray", "mouth": "bored unshaven pipe", @@ -53520,11 +67037,14 @@ "hat": "cowboy hat", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4506 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", @@ -53532,32 +67052,41 @@ "background": "orange", "hat": "short mohawk", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4507 + }, "metadata_dict": { "background": "new punk blue", "fur": "brown", "eyes": "bloodshot", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4508 + }, "metadata_dict": { "hat": "bandana blue", "background": "blue", "eyes": "bloodshot", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4509 + }, "metadata_dict": { "background": "blue", "mouth": "bored bubblegum", @@ -53565,11 +67094,14 @@ "hat": "cowboy hat", "clothes": "bone necklace", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4510 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "golden brown", @@ -53577,11 +67109,14 @@ "clothes": "bone necklace", "background": "yellow", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4511 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "king's crown", @@ -53589,11 +67124,14 @@ "eyes": "sleepy", "fur": "white", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4512 + }, "metadata_dict": { "clothes": "black t", "background": "orange", @@ -53601,11 +67139,14 @@ "fur": "brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4513 + }, "metadata_dict": { "eyes": "zombie", "hat": "fez", @@ -53613,11 +67154,14 @@ "clothes": "tanktop", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4514 + }, "metadata_dict": { "fur": "cream", "earring": "diamond stud", @@ -53625,11 +67169,14 @@ "background": "orange", "eyes": "bored", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4515 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "black holes t", @@ -53638,11 +67185,14 @@ "background": "blue", "fur": "pink", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4516 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "stunt jacket", @@ -53650,11 +67200,14 @@ "fur": "noise", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4517 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 1", @@ -53663,11 +67216,14 @@ "fur": "noise", "clothes": "bone necklace", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4518 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "hypnotized", @@ -53675,11 +67231,14 @@ "hat": "prussian helmet", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4519 + }, "metadata_dict": { "hat": "irish boho", "earring": "silver stud", @@ -53688,11 +67247,14 @@ "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4520 + }, "metadata_dict": { "clothes": "prison jumpsuit", "earring": "silver stud", @@ -53701,33 +67263,42 @@ "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4521 + }, "metadata_dict": { "fur": "gray", "background": "blue", "eyes": "bloodshot", "clothes": "bayc t black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4522 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "hat": "army hat", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4523 + }, "metadata_dict": { "clothes": "black holes t", "background": "aquamarine", @@ -53735,33 +67306,42 @@ "hat": "vietnam era helmet", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4524 + }, "metadata_dict": { "clothes": "striped tee", "background": "purple", "mouth": "bored", "eyes": "crazy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4525 + }, "metadata_dict": { "eyes": "closed", "fur": "brown", "hat": "stuntman helmet", "mouth": "dumbfounded", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4526 + }, "metadata_dict": { "hat": "seaman's hat", "background": "aquamarine", @@ -53769,11 +67349,14 @@ "fur": "brown", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4527 + }, "metadata_dict": { "eyes": "sunglasses", "earring": "silver stud", @@ -53781,11 +67364,14 @@ "mouth": "small grin", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4528 + }, "metadata_dict": { "clothes": "striped tee", "earring": "gold hoop", @@ -53793,11 +67379,14 @@ "background": "aquamarine", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4529 + }, "metadata_dict": { "fur": "black", "clothes": "tie dye", @@ -53805,11 +67394,14 @@ "earring": "silver hoop", "eyes": "angry", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4530 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -53818,33 +67410,42 @@ "fur": "black", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4531 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven", "fur": "death bot", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4532 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "cream", "eyes": "zombie", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4533 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "dumbfounded", @@ -53852,11 +67453,14 @@ "fur": "dark brown", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4534 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sailor shirt", @@ -53864,22 +67468,28 @@ "hat": "bunny ears", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4535 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "background": "aquamarine", "hat": "beanie", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4536 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -53887,11 +67497,14 @@ "background": "orange", "fur": "brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4537 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "prussian helmet", @@ -53900,11 +67513,14 @@ "fur": "black", "eyes": "robot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4538 + }, "metadata_dict": { "clothes": "striped tee", "hat": "s&m hat", @@ -53912,11 +67528,14 @@ "fur": "red", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4539 + }, "metadata_dict": { "fur": "trippy", "eyes": "coins", @@ -53924,11 +67543,14 @@ "earring": "silver hoop", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4540 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "phoneme oh", @@ -53936,11 +67558,14 @@ "fur": "black", "eyes": "3d", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4541 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -53948,22 +67573,28 @@ "clothes": "biker vest", "hat": "girl's hair short", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4542 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "pink", "background": "gray", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4543 + }, "metadata_dict": { "fur": "golden brown", "earring": "diamond stud", @@ -53971,22 +67602,28 @@ "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4544 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "holographic", "background": "orange", "fur": "dark brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4545 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "bandolier", @@ -53995,11 +67632,14 @@ "eyes": "robot", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4546 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "hawaiian", @@ -54007,11 +67647,14 @@ "mouth": "tongue out", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4547 + }, "metadata_dict": { "background": "aquamarine", "eyes": "3d", @@ -54019,11 +67662,14 @@ "hat": "fisherman's hat", "clothes": "sleeveless logo t", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4548 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "black", @@ -54031,11 +67677,14 @@ "clothes": "tanktop", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4549 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -54044,11 +67693,14 @@ "hat": "fisherman's hat", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4550 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -54057,11 +67709,14 @@ "earring": "silver stud", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4551 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", @@ -54069,11 +67724,14 @@ "background": "purple", "fur": "zombie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4552 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -54081,11 +67739,14 @@ "mouth": "small grin", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4553 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -54093,11 +67754,14 @@ "hat": "seaman's hat", "clothes": "leather jacket", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4554 + }, "metadata_dict": { "mouth": "jovial", "eyes": "3d", @@ -54105,11 +67769,14 @@ "background": "yellow", "hat": "safari", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4555 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -54117,22 +67784,28 @@ "fur": "dark brown", "background": "gray", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4556 + }, "metadata_dict": { "mouth": "phoneme wah", "hat": "fez", "fur": "pink", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4557 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -54140,11 +67813,14 @@ "earring": "gold stud", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4558 + }, "metadata_dict": { "background": "aquamarine", "fur": "red", @@ -54152,11 +67828,14 @@ "earring": "silver hoop", "mouth": "bored cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4559 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "irish boho", @@ -54165,11 +67844,14 @@ "earring": "silver hoop", "fur": "cheetah", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4560 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -54177,11 +67859,14 @@ "mouth": "phoneme vuh", "background": "aquamarine", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4561 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -54190,11 +67875,14 @@ "hat": "halo", "eyes": "sunglasses", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4562 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "bored pipe", @@ -54202,11 +67890,14 @@ "hat": "cowboy hat", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4563 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -54215,22 +67906,28 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4564 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", "clothes": "stunt jacket", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4565 + }, "metadata_dict": { "eyes": "x eyes", "hat": "party hat 1", @@ -54238,11 +67935,14 @@ "mouth": "small grin", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4566 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "grin", @@ -54250,11 +67950,14 @@ "eyes": "bored", "background": "gray", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4567 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -54262,22 +67965,28 @@ "hat": "bayc flipped brim", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4568 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", "eyes": "bored", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4569 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -54285,22 +67994,28 @@ "eyes": "bored", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4570 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", "fur": "dark brown", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4571 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", @@ -54308,11 +68023,14 @@ "hat": "cowboy hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4572 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", @@ -54320,11 +68038,14 @@ "background": "orange", "clothes": "toga", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4573 + }, "metadata_dict": { "fur": "tan", "background": "orange", @@ -54332,11 +68053,14 @@ "clothes": "guayabera", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4574 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -54345,22 +68069,28 @@ "eyes": "coins", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4575 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "hat": "prussian helmet", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4576 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -54368,11 +68098,14 @@ "background": "gray", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4577 + }, "metadata_dict": { "clothes": "bone tee", "hat": "prussian helmet", @@ -54380,11 +68113,14 @@ "background": "gray", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4578 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", @@ -54392,11 +68128,14 @@ "background": "purple", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4579 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -54405,11 +68144,14 @@ "background": "orange", "hat": "bunny ears", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4580 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "dumbfounded", @@ -54417,11 +68159,14 @@ "clothes": "biker vest", "background": "orange", "fur": "solid gold" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4581 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -54429,22 +68174,28 @@ "fur": "pink", "hat": "faux hawk", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4582 + }, "metadata_dict": { "clothes": "rainbow suspenders", "eyes": "bored", "mouth": "bored", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4583 + }, "metadata_dict": { "earring": "diamond stud", "fur": "dark brown", @@ -54452,22 +68203,28 @@ "background": "purple", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4584 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "background": "gray", "hat": "safari", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4585 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", @@ -54475,11 +68232,14 @@ "fur": "dark brown", "hat": "short mohawk", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4586 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -54488,11 +68248,14 @@ "earring": "silver hoop", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4587 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "grin", @@ -54500,22 +68263,28 @@ "fur": "dark brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4588 + }, "metadata_dict": { "fur": "dmt", "clothes": "tanktop", "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4589 + }, "metadata_dict": { "fur": "tan", "clothes": "wool turtleneck", @@ -54524,22 +68293,28 @@ "earring": "silver hoop", "hat": "fisherman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4590 + }, "metadata_dict": { "eyes": "zombie", "fur": "brown", "mouth": "rage", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4591 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -54547,11 +68322,14 @@ "eyes": "3d", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4592 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tweed suit", @@ -54559,11 +68337,14 @@ "fur": "brown", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4593 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", @@ -54571,22 +68352,28 @@ "eyes": "bored", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4594 + }, "metadata_dict": { "fur": "black", "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "clothes": "prom dress", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4595 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", @@ -54594,11 +68381,14 @@ "background": "gray", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4596 + }, "metadata_dict": { "eyes": "coins", "clothes": "leather jacket", @@ -54606,11 +68396,14 @@ "background": "orange", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4597 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -54619,11 +68412,14 @@ "eyes": "sleepy", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4598 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "smoking jacket", @@ -54631,11 +68427,14 @@ "eyes": "bored", "hat": "safari", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4599 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -54644,11 +68443,14 @@ "mouth": "bored unshaven cigarette", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4600 + }, "metadata_dict": { "fur": "tan", "hat": "fez", @@ -54656,11 +68458,14 @@ "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4601 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 1", @@ -54668,11 +68473,14 @@ "fur": "red", "mouth": "jovial", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4602 + }, "metadata_dict": { "earring": "silver stud", "mouth": "bored unshaven pipe", @@ -54681,11 +68489,14 @@ "eyes": "bloodshot", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4603 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "diamond stud", @@ -54694,11 +68505,14 @@ "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4604 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "wool turtleneck", @@ -54707,11 +68521,14 @@ "fur": "black", "hat": "army hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4605 + }, "metadata_dict": { "fur": "golden brown", "background": "purple", @@ -54719,11 +68536,14 @@ "clothes": "guayabera", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4606 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -54732,11 +68552,14 @@ "hat": "short mohawk", "mouth": "tongue out", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4607 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -54744,11 +68567,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4608 + }, "metadata_dict": { "clothes": "caveman pelt", "hat": "baby's bonnet", @@ -54756,22 +68582,28 @@ "mouth": "jovial", "eyes": "bloodshot", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4609 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", "background": "yellow", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4610 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "work vest", @@ -54779,11 +68611,14 @@ "eyes": "3d", "background": "gray", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4611 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -54791,11 +68626,14 @@ "fur": "death bot", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4612 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "horns", @@ -54803,11 +68641,14 @@ "clothes": "black t", "mouth": "dumbfounded", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4613 + }, "metadata_dict": { "earring": "silver stud", "eyes": "robot", @@ -54815,11 +68656,14 @@ "mouth": "small grin", "fur": "death bot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4614 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -54827,11 +68671,14 @@ "fur": "solid gold", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4615 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -54840,11 +68687,14 @@ "eyes": "crazy", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4616 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -54853,11 +68703,14 @@ "earring": "silver hoop", "clothes": "stunt jacket", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4617 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored dagger", @@ -54865,11 +68718,14 @@ "eyes": "bored", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4618 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "girl's hair pink", @@ -54877,11 +68733,14 @@ "clothes": "cowboy shirt", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4619 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -54889,11 +68748,14 @@ "hat": "army hat", "fur": "cheetah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4620 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -54901,11 +68763,14 @@ "clothes": "bayc t red", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4621 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -54913,11 +68778,14 @@ "clothes": "rainbow suspenders", "hat": "faux hawk", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4622 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -54926,11 +68794,14 @@ "fur": "pink", "eyes": "sleepy", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4623 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "holographic", @@ -54938,22 +68809,28 @@ "hat": "seaman's hat", "background": "yellow", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4624 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", "background": "gray", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4625 + }, "metadata_dict": { "clothes": "tie dye", "eyes": "bloodshot", @@ -54961,11 +68838,14 @@ "background": "yellow", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4626 + }, "metadata_dict": { "hat": "bayc hat black", "background": "orange", @@ -54973,11 +68853,14 @@ "mouth": "bored", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4627 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -54985,11 +68868,14 @@ "fur": "brown", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4628 + }, "metadata_dict": { "hat": "horns", "clothes": "admirals coat", @@ -54997,11 +68883,14 @@ "mouth": "bored", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4629 + }, "metadata_dict": { "eyes": "heart", "earring": "gold hoop", @@ -55009,22 +68898,28 @@ "background": "blue", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4630 + }, "metadata_dict": { "eyes": "robot", "fur": "black", "mouth": "small grin", "clothes": "sleeveless logo t", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4631 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "rainbow suspenders", @@ -55033,11 +68928,14 @@ "earring": "silver hoop", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4632 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -55046,22 +68944,28 @@ "earring": "silver hoop", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4633 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "clothes": "prison jumpsuit", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4634 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "diamond stud", @@ -55070,22 +68974,28 @@ "hat": "fisherman's hat", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4635 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black suit", "mouth": "rage", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4636 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -55093,11 +69003,14 @@ "hat": "laurel wreath", "clothes": "biker vest", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4637 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "robot", @@ -55105,33 +69018,42 @@ "mouth": "bored unshaven cigarette", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4638 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "dark brown", "mouth": "bored unshaven cigarette", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4639 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme ooo", "fur": "golden brown", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4640 + }, "metadata_dict": { "background": "aquamarine", "clothes": "work vest", @@ -55139,11 +69061,14 @@ "eyes": "3d", "hat": "army hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4641 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -55151,11 +69076,14 @@ "eyes": "coins", "background": "blue", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4642 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "king's crown", @@ -55163,11 +69091,14 @@ "eyes": "bloodshot", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4643 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven bubblegum", @@ -55175,11 +69106,14 @@ "background": "gray", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4644 + }, "metadata_dict": { "hat": "party hat 1", "background": "aquamarine", @@ -55188,11 +69122,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4645 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "seaman's hat", @@ -55200,11 +69137,14 @@ "background": "purple", "fur": "pink", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4646 + }, "metadata_dict": { "fur": "dmt", "mouth": "rage", @@ -55212,11 +69152,14 @@ "clothes": "stunt jacket", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4647 + }, "metadata_dict": { "eyes": "closed", "fur": "black", @@ -55224,11 +69167,14 @@ "hat": "bunny ears", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4648 + }, "metadata_dict": { "mouth": "discomfort", "hat": "horns", @@ -55236,11 +69182,14 @@ "clothes": "pimp coat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4649 + }, "metadata_dict": { "background": "yellow", "eyes": "bloodshot", @@ -55248,33 +69197,42 @@ "hat": "beanie", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4650 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", "fur": "brown", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4651 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "blue", "fur": "black", "mouth": "small grin", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4652 + }, "metadata_dict": { "background": "blue", "hat": "girl's hair short", @@ -55282,11 +69240,14 @@ "mouth": "bored", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4653 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -55294,11 +69255,14 @@ "eyes": "bored", "hat": "bunny ears", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4654 + }, "metadata_dict": { "background": "blue", "fur": "pink", @@ -55307,11 +69271,14 @@ "mouth": "bored unshaven cigarette", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4655 + }, "metadata_dict": { "eyes": "x eyes", "hat": "s&m hat", @@ -55319,44 +69286,56 @@ "mouth": "grin", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4656 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme ooo", "background": "blue", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4657 + }, "metadata_dict": { "eyes": "closed", "fur": "dmt", "background": "blue", "clothes": "guayabera", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4658 + }, "metadata_dict": { "background": "aquamarine", "eyes": "robot", "mouth": "bored bubblegum", "fur": "dark brown", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4659 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -55365,11 +69344,14 @@ "earring": "silver hoop", "clothes": "tanktop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4660 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -55377,11 +69359,14 @@ "hat": "seaman's hat", "clothes": "biker vest", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4661 + }, "metadata_dict": { "clothes": "caveman pelt", "fur": "red", @@ -55389,11 +69374,14 @@ "mouth": "bored unshaven cigarette", "eyes": "angry", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4662 + }, "metadata_dict": { "clothes": "striped tee", "background": "blue", @@ -55401,11 +69389,14 @@ "fur": "brown", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4663 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "sailor shirt", @@ -55413,11 +69404,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4664 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -55426,11 +69420,14 @@ "fur": "cheetah", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4665 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "3d", @@ -55438,22 +69435,28 @@ "clothes": "toga", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4666 + }, "metadata_dict": { "hat": "party hat 2", "background": "blue", "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4667 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "zombie", @@ -55462,11 +69465,14 @@ "mouth": "bored bubblegum", "earring": "silver hoop", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4668 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "dmt", @@ -55474,11 +69480,14 @@ "clothes": "leather jacket", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4669 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -55486,22 +69495,28 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4670 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", "mouth": "grin", "eyes": "robot", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4671 + }, "metadata_dict": { "hat": "party hat 1", "background": "aquamarine", @@ -55509,11 +69524,14 @@ "earring": "gold stud", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4672 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "gray", @@ -55521,33 +69539,42 @@ "eyes": "sleepy", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4673 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", "eyes": "bored", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4674 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "dumbfounded", "fur": "black", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4675 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -55555,22 +69582,28 @@ "hat": "baby's bonnet", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4676 + }, "metadata_dict": { "fur": "cream", "eyes": "robot", "background": "gray", "hat": "vietnam era helmet", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4677 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -55579,11 +69612,14 @@ "earring": "silver hoop", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4678 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "black", @@ -55591,11 +69627,14 @@ "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4679 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "toga", @@ -55603,11 +69642,14 @@ "background": "orange", "hat": "army hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4680 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven cigarette", @@ -55615,22 +69657,28 @@ "eyes": "bored", "fur": "brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4681 + }, "metadata_dict": { "eyes": "zombie", "clothes": "sailor shirt", "fur": "black", "background": "orange", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4682 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", @@ -55638,11 +69686,14 @@ "clothes": "tuxedo tee", "hat": "cowboy hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4683 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -55651,11 +69702,14 @@ "earring": "silver hoop", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4684 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -55663,11 +69717,14 @@ "hat": "stuntman helmet", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4685 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -55675,11 +69732,14 @@ "fur": "black", "hat": "army hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4686 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "black", @@ -55687,32 +69747,41 @@ "clothes": "sleeveless logo t", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4687 + }, "metadata_dict": { "fur": "cheetah", "background": "yellow", "mouth": "bored unshaven", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4688 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", "fur": "black", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4689 + }, "metadata_dict": { "clothes": "black holes t", "fur": "black", @@ -55720,11 +69789,14 @@ "background": "yellow", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4690 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", @@ -55732,21 +69804,27 @@ "hat": "spinner hat", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4691 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "red", "mouth": "grin multicolored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4692 + }, "metadata_dict": { "clothes": "bandolier", "fur": "dmt", @@ -55754,11 +69832,14 @@ "mouth": "bored bubblegum", "hat": "short mohawk", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4693 + }, "metadata_dict": { "clothes": "tweed suit", "background": "blue", @@ -55766,11 +69847,14 @@ "fur": "cheetah", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4694 + }, "metadata_dict": { "clothes": "bandolier", "hat": "seaman's hat", @@ -55778,11 +69862,14 @@ "background": "blue", "mouth": "bored pizza", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4695 + }, "metadata_dict": { "mouth": "rage", "earring": "silver stud", @@ -55791,11 +69878,14 @@ "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4696 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -55803,11 +69893,14 @@ "fur": "dark brown", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4697 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", @@ -55815,11 +69908,14 @@ "background": "orange", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4698 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -55827,11 +69923,14 @@ "clothes": "toga", "fur": "brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4699 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "wide eyed", @@ -55839,22 +69938,28 @@ "clothes": "hip hop", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4700 + }, "metadata_dict": { "fur": "golden brown", "hat": "commie hat", "background": "gray", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4701 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -55862,11 +69967,14 @@ "hat": "seaman's hat", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4702 + }, "metadata_dict": { "clothes": "black t", "eyes": "3d", @@ -55874,11 +69982,14 @@ "hat": "faux hawk", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4703 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -55886,22 +69997,28 @@ "eyes": "bloodshot", "hat": "bowler", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4704 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "fur": "cheetah", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4705 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "seaman's hat", @@ -55910,11 +70027,14 @@ "eyes": "bloodshot", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4706 + }, "metadata_dict": { "earring": "silver stud", "clothes": "work vest", @@ -55922,11 +70042,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4707 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "leather punk jacket", @@ -55934,11 +70057,14 @@ "background": "orange", "fur": "death bot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4708 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "striped tee", @@ -55947,22 +70073,28 @@ "earring": "silver stud", "background": "orange", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4709 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "tweed suit", "background": "blue", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4710 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "prussian helmet", @@ -55971,11 +70103,14 @@ "earring": "gold stud", "fur": "noise", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4711 + }, "metadata_dict": { "background": "new punk blue", "fur": "dmt", @@ -55983,11 +70118,14 @@ "hat": "beanie", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4712 + }, "metadata_dict": { "fur": "dark brown", "earring": "silver hoop", @@ -55996,11 +70134,14 @@ "mouth": "bored", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4713 + }, "metadata_dict": { "eyes": "coins", "hat": "fez", @@ -56009,11 +70150,14 @@ "clothes": "toga", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4714 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "aquamarine", @@ -56021,11 +70165,14 @@ "fur": "cheetah", "eyes": "crazy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4715 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "diamond stud", @@ -56033,11 +70180,14 @@ "clothes": "bayc t black", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4716 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -56046,11 +70196,14 @@ "clothes": "smoking jacket", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4717 + }, "metadata_dict": { "hat": "prussian helmet", "eyes": "3d", @@ -56059,11 +70212,14 @@ "background": "yellow", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4718 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -56071,22 +70227,28 @@ "earring": "gold stud", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4719 + }, "metadata_dict": { "fur": "golden brown", "mouth": "small grin", "background": "army green", "clothes": "service", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4720 + }, "metadata_dict": { "mouth": "discomfort", "earring": "silver stud", @@ -56094,11 +70256,14 @@ "fur": "black", "hat": "vietnam era helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4721 + }, "metadata_dict": { "fur": "golden brown", "background": "aquamarine", @@ -56106,11 +70271,14 @@ "clothes": "biker vest", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4722 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -56118,11 +70286,14 @@ "clothes": "bayc t black", "hat": "fisherman's hat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4723 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -56130,22 +70301,28 @@ "fur": "golden brown", "hat": "king's crown", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4724 + }, "metadata_dict": { "fur": "cream", "eyes": "zombie", "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4725 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -56153,11 +70330,14 @@ "clothes": "toga", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4726 + }, "metadata_dict": { "hat": "bandana blue", "fur": "red", @@ -56165,11 +70345,14 @@ "background": "orange", "clothes": "navy striped tee", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4727 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -56178,33 +70361,42 @@ "eyes": "robot", "fur": "red", "clothes": "biker vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4728 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "dmt", "background": "orange", "eyes": "bored", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4729 + }, "metadata_dict": { "eyes": "blindfold", "background": "blue", "fur": "black", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4730 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -56212,11 +70404,14 @@ "background": "aquamarine", "eyes": "bloodshot", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4731 + }, "metadata_dict": { "eyes": "closed", "earring": "silver stud", @@ -56224,11 +70419,14 @@ "background": "yellow", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4732 + }, "metadata_dict": { "eyes": "x eyes", "hat": "party hat 2", @@ -56236,11 +70434,14 @@ "background": "purple", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4733 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "robot", @@ -56249,22 +70450,28 @@ "hat": "cowboy hat", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4734 + }, "metadata_dict": { "mouth": "bored unshaven dagger", "fur": "golden brown", "background": "orange", "clothes": "tuxedo tee", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4735 + }, "metadata_dict": { "eyes": "coins", "mouth": "phoneme vuh", @@ -56273,11 +70480,14 @@ "fur": "brown", "hat": "vietnam era helmet", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4736 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "seaman's hat", @@ -56285,11 +70495,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4737 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -56297,11 +70510,14 @@ "fur": "black", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4738 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "silver stud", @@ -56309,22 +70525,28 @@ "fur": "white", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4739 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "bone tee", "mouth": "grin multicolored", "background": "aquamarine", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4740 + }, "metadata_dict": { "hat": "horns", "background": "blue", @@ -56332,11 +70554,14 @@ "eyes": "bloodshot", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4741 + }, "metadata_dict": { "mouth": "bored kazoo", "hat": "party hat 1", @@ -56345,11 +70570,14 @@ "eyes": "bored", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4742 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "striped tee", @@ -56357,11 +70585,14 @@ "mouth": "phoneme ooo", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4743 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "heart", @@ -56369,11 +70600,14 @@ "background": "orange", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4744 + }, "metadata_dict": { "eyes": "bloodshot", "hat": "army hat", @@ -56381,22 +70615,28 @@ "mouth": "bored cigarette", "fur": "robot", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4745 + }, "metadata_dict": { "clothes": "service", "mouth": "bored pipe", "background": "blue", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4746 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -56404,11 +70644,14 @@ "hat": "fez", "background": "aquamarine", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4747 + }, "metadata_dict": { "fur": "brown", "mouth": "bored bubblegum", @@ -56417,11 +70660,14 @@ "eyes": "bored", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4748 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -56429,11 +70675,14 @@ "eyes": "bloodshot", "hat": "vietnam era helmet", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4749 + }, "metadata_dict": { "clothes": "blue dress", "earring": "gold stud", @@ -56442,11 +70691,14 @@ "fur": "cheetah", "mouth": "phoneme wah", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4750 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -56454,11 +70706,14 @@ "earring": "gold stud", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4751 + }, "metadata_dict": { "eyes": "closed", "clothes": "leather punk jacket", @@ -56466,11 +70721,14 @@ "hat": "fez", "fur": "red", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4752 + }, "metadata_dict": { "eyes": "blindfold", "hat": "seaman's hat", @@ -56478,11 +70736,14 @@ "clothes": "tuxedo tee", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4753 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "blindfold", @@ -56490,11 +70751,14 @@ "background": "orange", "hat": "cowboy hat", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4754 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless logo t", @@ -56502,11 +70766,14 @@ "fur": "brown", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4755 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -56514,11 +70781,14 @@ "fur": "red", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4756 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -56526,22 +70796,28 @@ "clothes": "black suit", "fur": "dark brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4757 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", "hat": "spinner hat", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4758 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -56549,11 +70825,14 @@ "background": "aquamarine", "clothes": "prom dress", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4759 + }, "metadata_dict": { "hat": "s&m hat", "fur": "brown", @@ -56561,11 +70840,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4760 + }, "metadata_dict": { "eyes": "eyepatch", "background": "blue", @@ -56573,11 +70855,14 @@ "earring": "silver hoop", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4761 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -56585,11 +70870,14 @@ "clothes": "smoking jacket", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4762 + }, "metadata_dict": { "earring": "diamond stud", "eyes": "bored", @@ -56597,11 +70885,14 @@ "clothes": "navy striped tee", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4763 + }, "metadata_dict": { "fur": "tan", "clothes": "blue dress", @@ -56609,11 +70900,14 @@ "hat": "bowler", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4764 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "rainbow suspenders", @@ -56621,11 +70915,14 @@ "hat": "bayc hat red", "background": "purple", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4765 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -56633,11 +70930,14 @@ "background": "gray", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4766 + }, "metadata_dict": { "eyes": "sunglasses", "fur": "red", @@ -56645,11 +70945,14 @@ "hat": "faux hawk", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4767 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -56657,11 +70960,14 @@ "fur": "brown", "hat": "vietnam era helmet", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4768 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -56670,11 +70976,14 @@ "eyes": "bloodshot", "hat": "short mohawk", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4769 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -56682,11 +70991,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4770 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -56694,11 +71006,14 @@ "hat": "faux hawk", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4771 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "black", @@ -56706,33 +71021,42 @@ "background": "purple", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4772 + }, "metadata_dict": { "eyes": "coins", "hat": "fez", "fur": "black", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4773 + }, "metadata_dict": { "background": "aquamarine", "eyes": "robot", "hat": "faux hawk", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4774 + }, "metadata_dict": { "eyes": "x eyes", "earring": "silver stud", @@ -56741,22 +71065,28 @@ "fur": "brown", "clothes": "stunt jacket", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4775 + }, "metadata_dict": { "fur": "gray", "background": "aquamarine", "mouth": "bored unshaven cigarette", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4776 + }, "metadata_dict": { "hat": "irish boho", "background": "orange", @@ -56765,21 +71095,27 @@ "fur": "brown", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4777 + }, "metadata_dict": { "background": "gray", "fur": "tan", "eyes": "blindfold", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4778 + }, "metadata_dict": { "earring": "silver stud", "clothes": "tuxedo tee", @@ -56788,11 +71124,14 @@ "hat": "beanie", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4779 + }, "metadata_dict": { "eyes": "holographic", "hat": "s&m hat", @@ -56801,11 +71140,14 @@ "earring": "silver hoop", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4780 + }, "metadata_dict": { "hat": "stuntman helmet", "clothes": "toga", @@ -56813,11 +71155,14 @@ "mouth": "bored cigarette", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4781 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -56825,11 +71170,14 @@ "eyes": "coins", "mouth": "phoneme vuh", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4782 + }, "metadata_dict": { "eyes": "blindfold", "background": "gray", @@ -56838,11 +71186,14 @@ "earring": "silver hoop", "clothes": "lab coat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4783 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -56851,11 +71202,14 @@ "mouth": "bored unshaven bubblegum", "hat": "fez", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4784 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "aquamarine", @@ -56863,11 +71217,14 @@ "eyes": "bloodshot", "clothes": "tuxedo tee", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4785 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "prison jumpsuit", @@ -56875,22 +71232,28 @@ "hat": "fisherman's hat", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4786 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "clothes": "smoking jacket", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4787 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -56898,11 +71261,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4788 + }, "metadata_dict": { "eyes": "closed", "clothes": "lumberjack shirt", @@ -56911,33 +71277,42 @@ "fur": "brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4789 + }, "metadata_dict": { "background": "aquamarine", "eyes": "3d", "fur": "pink", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4790 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "jovial", "background": "orange", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4791 + }, "metadata_dict": { "fur": "tan", "mouth": "rage", @@ -56945,11 +71320,14 @@ "hat": "fisherman's hat", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4792 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -56957,11 +71335,14 @@ "fur": "dark brown", "clothes": "toga", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4793 + }, "metadata_dict": { "hat": "fez", "mouth": "phoneme vuh", @@ -56969,11 +71350,14 @@ "fur": "dark brown", "eyes": "sleepy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4794 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "seaman's hat", @@ -56981,11 +71365,14 @@ "mouth": "dumbfounded", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4795 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "leather jacket", @@ -56993,22 +71380,28 @@ "hat": "cowboy hat", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4796 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "phoneme vuh", "background": "orange", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4797 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "irish boho", @@ -57017,11 +71410,14 @@ "fur": "pink", "clothes": "guayabera", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4798 + }, "metadata_dict": { "hat": "horns", "fur": "golden brown", @@ -57029,11 +71425,14 @@ "clothes": "rainbow suspenders", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4799 + }, "metadata_dict": { "fur": "dark brown", "hat": "short mohawk", @@ -57041,22 +71440,28 @@ "background": "purple", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4800 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "coins", "fur": "brown", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4801 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", @@ -57064,11 +71469,14 @@ "fur": "golden brown", "clothes": "tweed suit", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4802 + }, "metadata_dict": { "eyes": "holographic", "fur": "brown", @@ -57077,11 +71485,14 @@ "earring": "silver hoop", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4803 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "tan", @@ -57090,11 +71501,14 @@ "background": "yellow", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4804 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -57102,11 +71516,14 @@ "clothes": "smoking jacket", "hat": "faux hawk", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4805 + }, "metadata_dict": { "clothes": "prom dress", "mouth": "jovial", @@ -57114,11 +71531,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4806 + }, "metadata_dict": { "earring": "silver stud", "fur": "red", @@ -57126,11 +71546,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4807 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", @@ -57138,22 +71561,28 @@ "hat": "fez", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4808 + }, "metadata_dict": { "fur": "cream", "mouth": "grin multicolored", "background": "aquamarine", "eyes": "3d", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4809 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -57161,11 +71590,14 @@ "fur": "dark brown", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4810 + }, "metadata_dict": { "clothes": "prom dress", "mouth": "bored unshaven pipe", @@ -57173,33 +71605,42 @@ "background": "yellow", "fur": "death bot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4811 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", "mouth": "phoneme ooo", "fur": "dark brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4812 + }, "metadata_dict": { "eyes": "heart", "hat": "irish boho", "mouth": "rage", "background": "aquamarine", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4813 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", @@ -57207,11 +71648,14 @@ "background": "orange", "eyes": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4814 + }, "metadata_dict": { "clothes": "kings robe", "fur": "cream", @@ -57220,11 +71664,14 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4815 + }, "metadata_dict": { "hat": "irish boho", "clothes": "black holes t", @@ -57232,11 +71679,14 @@ "fur": "noise", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4816 + }, "metadata_dict": { "background": "yellow", "fur": "dark brown", @@ -57244,11 +71694,14 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4817 + }, "metadata_dict": { "fur": "cream", "hat": "baby's bonnet", @@ -57256,11 +71709,14 @@ "clothes": "bayc t black", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4818 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -57268,11 +71724,14 @@ "background": "yellow", "hat": "bunny ears", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4819 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -57280,11 +71739,14 @@ "hat": "vietnam era helmet", "clothes": "stunt jacket", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4820 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "hat": "stuntman helmet", @@ -57292,11 +71754,14 @@ "background": "gray", "fur": "death bot", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4821 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -57304,11 +71769,14 @@ "hat": "bayc hat red", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4822 + }, "metadata_dict": { "eyes": "coins", "hat": "prussian helmet", @@ -57316,11 +71784,14 @@ "clothes": "smoking jacket", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4823 + }, "metadata_dict": { "eyes": "zombie", "earring": "silver stud", @@ -57329,33 +71800,42 @@ "hat": "halo", "fur": "blue", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4824 + }, "metadata_dict": { "background": "yellow", "hat": "beanie", "mouth": "bored", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4825 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "blue", "fur": "pink", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4826 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -57363,11 +71843,14 @@ "clothes": "bayc t black", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4827 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "golden brown", @@ -57375,11 +71858,14 @@ "eyes": "3d", "earring": "silver hoop", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4828 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -57387,11 +71873,14 @@ "fur": "black", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4829 + }, "metadata_dict": { "hat": "party hat 2", "fur": "black", @@ -57399,11 +71888,14 @@ "clothes": "prom dress", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4830 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "rainbow suspenders", @@ -57411,11 +71903,14 @@ "background": "yellow", "hat": "bunny ears", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4831 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -57423,11 +71918,14 @@ "mouth": "bored cigarette", "clothes": "caveman pelt", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4832 + }, "metadata_dict": { "clothes": "bandolier", "hat": "sushi chef headband", @@ -57435,11 +71933,14 @@ "background": "aquamarine", "fur": "dark brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4833 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored pipe", @@ -57447,11 +71948,14 @@ "fur": "brown", "clothes": "guayabera", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4834 + }, "metadata_dict": { "hat": "sea captain's hat", "background": "blue", @@ -57459,11 +71963,14 @@ "clothes": "toga", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4835 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored", @@ -57471,11 +71978,14 @@ "fur": "brown", "earring": "cross", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4836 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -57483,11 +71993,14 @@ "clothes": "tie dye", "hat": "bayc flipped brim", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4837 + }, "metadata_dict": { "mouth": "discomfort", "hat": "baby's bonnet", @@ -57496,11 +72009,14 @@ "clothes": "work vest", "fur": "red", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4838 + }, "metadata_dict": { "eyes": "closed", "hat": "laurel wreath", @@ -57508,11 +72024,14 @@ "clothes": "smoking jacket", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4839 + }, "metadata_dict": { "mouth": "jovial", "background": "blue", @@ -57520,22 +72039,28 @@ "clothes": "leather jacket", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4840 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "hat": "bunny ears", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4841 + }, "metadata_dict": { "hat": "horns", "fur": "black", @@ -57543,54 +72068,69 @@ "clothes": "tanktop", "background": "yellow", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4842 + }, "metadata_dict": { "background": "blue", "fur": "pink", "eyes": "bloodshot", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4843 + }, "metadata_dict": { "clothes": "bone necklace", "mouth": "grin diamond grill", "fur": "red", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4844 + }, "metadata_dict": { "background": "aquamarine", "fur": "noise", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4845 + }, "metadata_dict": { "fur": "gray", "eyes": "3d", "hat": "army hat", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4846 + }, "metadata_dict": { "fur": "zombie", "mouth": "grin diamond grill", @@ -57598,11 +72138,14 @@ "background": "yellow", "hat": "bunny ears", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4847 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "aquamarine", @@ -57610,11 +72153,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4848 + }, "metadata_dict": { "mouth": "rage", "earring": "silver stud", @@ -57622,11 +72168,14 @@ "hat": "spinner hat", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4849 + }, "metadata_dict": { "hat": "horns", "earring": "silver stud", @@ -57635,22 +72184,28 @@ "fur": "dark brown", "clothes": "guayabera", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4850 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "zombie", "hat": "spinner hat", "background": "orange", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4851 + }, "metadata_dict": { "clothes": "black holes t", "hat": "seaman's hat", @@ -57658,11 +72213,14 @@ "background": "aquamarine", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4852 + }, "metadata_dict": { "background": "new punk blue", "hat": "cowboy hat", @@ -57670,22 +72228,28 @@ "clothes": "bone necklace", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4853 + }, "metadata_dict": { "hat": "fez", "mouth": "tongue out", "fur": "cheetah", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4854 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -57694,11 +72258,14 @@ "eyes": "bored", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4855 + }, "metadata_dict": { "clothes": "black t", "hat": "party hat 1", @@ -57706,11 +72273,14 @@ "mouth": "small grin", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4856 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -57718,11 +72288,14 @@ "clothes": "tuxedo tee", "hat": "beanie", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4857 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -57730,11 +72303,14 @@ "mouth": "dumbfounded", "background": "blue", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4858 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "beanie", @@ -57742,11 +72318,14 @@ "fur": "white", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4859 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -57754,44 +72333,56 @@ "fur": "gray", "hat": "fez", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4860 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", "mouth": "bored unshaven bubblegum", "background": "aquamarine", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4861 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "black holes t", "background": "blue", "fur": "black", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4862 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "eyes": "bloodshot", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4863 + }, "metadata_dict": { "earring": "silver stud", "eyes": "3d", @@ -57800,11 +72391,14 @@ "clothes": "biker vest", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4864 + }, "metadata_dict": { "fur": "gray", "background": "gray", @@ -57812,22 +72406,28 @@ "mouth": "bored", "eyes": "crazy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4865 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", "mouth": "phoneme ooo", "background": "aquamarine", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4866 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -57835,11 +72435,14 @@ "background": "yellow", "hat": "safari", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4867 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "laurel wreath", @@ -57847,11 +72450,14 @@ "background": "blue", "clothes": "biker vest", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4868 + }, "metadata_dict": { "fur": "gray", "eyes": "coins", @@ -57859,22 +72465,28 @@ "hat": "cowboy hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4869 + }, "metadata_dict": { "eyes": "eyepatch", "background": "blue", "fur": "pink", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4870 + }, "metadata_dict": { "mouth": "grin", "fur": "red", @@ -57882,11 +72494,14 @@ "clothes": "guayabera", "hat": "fisherman's hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4871 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -57894,11 +72509,14 @@ "eyes": "bored", "hat": "bayc hat red", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4872 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "cream", @@ -57907,11 +72525,14 @@ "earring": "silver hoop", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4873 + }, "metadata_dict": { "eyes": "scumbag", "earring": "gold hoop", @@ -57920,11 +72541,14 @@ "background": "orange", "hat": "army hat", "fur": "solid gold" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4874 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -57932,22 +72556,28 @@ "mouth": "grin", "fur": "pink", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4875 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", "mouth": "bored unshaven", "fur": "dmt", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4876 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "tweed suit", @@ -57955,11 +72585,14 @@ "hat": "bayc hat red", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4877 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "dumbfounded", @@ -57967,22 +72600,28 @@ "clothes": "lab coat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4878 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", "clothes": "wool turtleneck", "eyes": "coins", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4879 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "space suit", @@ -57991,11 +72630,14 @@ "earring": "silver hoop", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4880 + }, "metadata_dict": { "eyes": "heart", "clothes": "blue dress", @@ -58003,11 +72645,14 @@ "hat": "army hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4881 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -58015,11 +72660,14 @@ "fur": "gray", "eyes": "bloodshot", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4882 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -58028,22 +72676,28 @@ "clothes": "black suit", "earring": "silver stud", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4883 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", "fur": "cheetah", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4884 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -58051,11 +72705,14 @@ "background": "orange", "eyes": "bored", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4885 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "red", @@ -58063,22 +72720,28 @@ "eyes": "bored", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4886 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "background": "yellow", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4887 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin gold grill", @@ -58087,11 +72750,14 @@ "fur": "red", "hat": "spinner hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4888 + }, "metadata_dict": { "clothes": "blue dress", "fur": "pink", @@ -58099,11 +72765,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4889 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "trippy", @@ -58112,11 +72781,14 @@ "background": "blue", "hat": "faux hawk", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4890 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -58125,11 +72797,14 @@ "mouth": "grin diamond grill", "earring": "gold stud", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4891 + }, "metadata_dict": { "eyes": "blindfold", "earring": "diamond stud", @@ -58137,11 +72812,14 @@ "background": "blue", "fur": "dark brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4892 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -58149,22 +72827,28 @@ "clothes": "bayc t black", "background": "gray", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4893 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "red", "background": "orange", "hat": "short mohawk", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4894 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -58172,33 +72856,42 @@ "fur": "brown", "hat": "beanie", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4895 + }, "metadata_dict": { "fur": "gray", "mouth": "bored bubblegum", "eyes": "bored", "background": "yellow", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4896 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "smoking jacket", "fur": "white", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4897 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "seaman's hat", @@ -58206,22 +72899,28 @@ "mouth": "bored unshaven kazoo", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4898 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cream", "eyes": "zombie", "mouth": "bored party horn", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4899 + }, "metadata_dict": { "earring": "diamond stud", "background": "aquamarine", @@ -58230,11 +72929,14 @@ "mouth": "bored pizza", "hat": "commie hat", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4900 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "bandolier", @@ -58242,22 +72944,28 @@ "eyes": "3d", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4901 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold stud", "mouth": "small grin", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4902 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -58265,11 +72973,14 @@ "mouth": "grin", "clothes": "work vest", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4903 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -58278,11 +72989,14 @@ "background": "aquamarine", "hat": "army hat", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4904 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -58290,11 +73004,14 @@ "mouth": "bored pizza", "hat": "girl's hair short", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4905 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", @@ -58302,11 +73019,14 @@ "background": "blue", "hat": "short mohawk", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4906 + }, "metadata_dict": { "fur": "brown", "earring": "silver stud", @@ -58315,11 +73035,14 @@ "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4907 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored dagger", @@ -58328,11 +73051,14 @@ "clothes": "hawaiian", "background": "orange", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4908 + }, "metadata_dict": { "clothes": "rainbow suspenders", "earring": "silver stud", @@ -58341,22 +73067,28 @@ "mouth": "small grin", "hat": "vietnam era helmet", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4909 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "grin", "background": "blue", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4910 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "lumberjack shirt", @@ -58364,11 +73096,14 @@ "mouth": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4911 + }, "metadata_dict": { "mouth": "bored dagger", "hat": "sea captain's hat", @@ -58376,11 +73111,14 @@ "eyes": "bloodshot", "fur": "cheetah", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4912 + }, "metadata_dict": { "clothes": "bayc t red", "earring": "gold hoop", @@ -58388,22 +73126,28 @@ "mouth": "bored", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4913 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "rainbow suspenders", "fur": "noise", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4914 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -58412,11 +73156,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4915 + }, "metadata_dict": { "background": "new punk blue", "clothes": "space suit", @@ -58425,11 +73172,14 @@ "hat": "halo", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4916 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -58438,11 +73188,14 @@ "earring": "gold stud", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4917 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -58450,11 +73203,14 @@ "hat": "fez", "earring": "silver stud", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4918 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "fez", @@ -58462,33 +73218,42 @@ "background": "blue", "fur": "black", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4919 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless logo t", "fur": "brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4920 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", "eyes": "closed", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4921 + }, "metadata_dict": { "earring": "silver stud", "mouth": "dumbfounded", @@ -58496,11 +73261,14 @@ "background": "army green", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4922 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "fur": "black", @@ -58508,11 +73276,14 @@ "eyes": "bored", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4923 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "lumberjack shirt", @@ -58520,11 +73291,14 @@ "background": "aquamarine", "eyes": "bloodshot", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4924 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -58532,11 +73306,14 @@ "background": "blue", "eyes": "bloodshot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4925 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", @@ -58545,11 +73322,14 @@ "hat": "vietnam era helmet", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4926 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "black t", @@ -58558,11 +73338,14 @@ "fur": "brown", "hat": "vietnam era helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4927 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -58570,33 +73353,42 @@ "mouth": "jovial", "clothes": "biker vest", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4928 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", "background": "aquamarine", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4929 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bloodshot", "hat": "short mohawk", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4930 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "s&m hat", @@ -58604,11 +73396,14 @@ "clothes": "biker vest", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4931 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -58616,22 +73411,28 @@ "hat": "seaman's hat", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4932 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "hat": "s&m hat", "fur": "gray", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4933 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -58639,11 +73440,14 @@ "background": "purple", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4934 + }, "metadata_dict": { "eyes": "zombie", "earring": "silver stud", @@ -58651,11 +73455,14 @@ "background": "blue", "fur": "dark brown", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4935 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -58663,11 +73470,14 @@ "clothes": "biker vest", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4936 + }, "metadata_dict": { "mouth": "grin", "clothes": "prison jumpsuit", @@ -58676,11 +73486,14 @@ "background": "orange", "eyes": "bloodshot", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4937 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -58688,22 +73501,28 @@ "hat": "spinner hat", "fur": "pink", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4938 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "background": "orange", "fur": "brown", "clothes": "stunt jacket", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4939 + }, "metadata_dict": { "fur": "tan", "earring": "diamond stud", @@ -58712,11 +73531,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4940 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -58724,11 +73546,14 @@ "eyes": "3d", "clothes": "tuxedo tee", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4941 + }, "metadata_dict": { "fur": "cream", "clothes": "lumberjack shirt", @@ -58737,33 +73562,42 @@ "background": "gray", "hat": "beanie", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4942 + }, "metadata_dict": { "eyes": "eyepatch", "background": "orange", "fur": "dark brown", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4943 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "fez", "fur": "dark brown", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4944 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -58771,11 +73605,14 @@ "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4945 + }, "metadata_dict": { "hat": "sushi chef headband", "earring": "diamond stud", @@ -58784,11 +73621,14 @@ "mouth": "bored cigarette", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4946 + }, "metadata_dict": { "hat": "laurel wreath", "earring": "silver stud", @@ -58797,22 +73637,28 @@ "clothes": "lab coat", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4947 + }, "metadata_dict": { "hat": "irish boho", "background": "orange", "mouth": "bored", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4948 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "stuntman helmet", @@ -58820,33 +73666,42 @@ "background": "aquamarine", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4949 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "fur": "dark brown", "eyes": "crazy", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4950 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "black", "background": "gray", "hat": "beanie", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4951 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -58854,11 +73709,14 @@ "hat": "fez", "fur": "red", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4952 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", @@ -58866,11 +73724,14 @@ "background": "blue", "mouth": "bored unshaven cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4953 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -58878,11 +73739,14 @@ "fur": "noise", "eyes": "sleepy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4954 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", @@ -58890,11 +73754,14 @@ "fur": "black", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4955 + }, "metadata_dict": { "mouth": "discomfort", "hat": "irish boho", @@ -58902,11 +73769,14 @@ "eyes": "bloodshot", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4956 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "black", @@ -58914,11 +73784,14 @@ "earring": "silver hoop", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4957 + }, "metadata_dict": { "clothes": "striped tee", "hat": "irish boho", @@ -58926,11 +73799,14 @@ "eyes": "coins", "mouth": "phoneme wah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4958 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black t", @@ -58938,33 +73814,42 @@ "earring": "silver hoop", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4959 + }, "metadata_dict": { "mouth": "bored pipe", "fur": "solid gold", "hat": "fisherman's hat", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4960 + }, "metadata_dict": { "eyes": "coins", "mouth": "dumbfounded", "hat": "bunny ears", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4961 + }, "metadata_dict": { "clothes": "kings robe", "background": "aquamarine", @@ -58973,11 +73858,14 @@ "earring": "cross", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4962 + }, "metadata_dict": { "fur": "golden brown", "mouth": "small grin", @@ -58985,33 +73873,42 @@ "background": "gray", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4963 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "baby's bonnet", "background": "aquamarine", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4964 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", "clothes": "wool turtleneck", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4965 + }, "metadata_dict": { "eyes": "holographic", "hat": "baby's bonnet", @@ -59019,22 +73916,28 @@ "fur": "cheetah", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4966 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", "mouth": "bored", "fur": "white", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4967 + }, "metadata_dict": { "fur": "dmt", "background": "orange", @@ -59042,22 +73945,28 @@ "hat": "bayc flipped brim", "eyes": "bloodshot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4968 + }, "metadata_dict": { "mouth": "grin", "hat": "prussian helmet", "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4969 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "black", @@ -59066,11 +73975,14 @@ "earring": "silver hoop", "hat": "bayc hat red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4970 + }, "metadata_dict": { "clothes": "rainbow suspenders", "background": "orange", @@ -59078,11 +73990,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4971 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -59091,11 +74006,14 @@ "clothes": "work vest", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4972 + }, "metadata_dict": { "fur": "dmt", "mouth": "bored party horn", @@ -59103,11 +74021,14 @@ "clothes": "smoking jacket", "hat": "bunny ears", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4973 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bayc t red", @@ -59116,22 +74037,28 @@ "fur": "cheetah", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4974 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "dark brown", "eyes": "bored", "hat": "girl's hair short", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4975 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -59139,11 +74066,14 @@ "mouth": "bored unshaven pipe", "fur": "dark brown", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4976 + }, "metadata_dict": { "eyes": "closed", "clothes": "biker vest", @@ -59151,33 +74081,42 @@ "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4977 + }, "metadata_dict": { "hat": "cowboy hat", "fur": "brown", "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4978 + }, "metadata_dict": { "background": "blue", "fur": "black", "hat": "army hat", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4979 + }, "metadata_dict": { "background": "orange", "eyes": "bloodshot", @@ -59185,11 +74124,14 @@ "clothes": "guayabera", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4980 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "party hat 1", @@ -59198,11 +74140,14 @@ "fur": "solid gold", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4981 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", @@ -59210,11 +74155,14 @@ "clothes": "biker vest", "fur": "white", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4982 + }, "metadata_dict": { "eyes": "closed", "background": "gray", @@ -59222,11 +74170,14 @@ "fur": "brown", "hat": "bunny ears", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4983 + }, "metadata_dict": { "fur": "golden brown", "hat": "baby's bonnet", @@ -59234,32 +74185,41 @@ "mouth": "bored unshaven cigar", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4984 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", "fur": "golden brown", "eyes": "sad", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4985 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored", "eyes": "eyepatch", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4986 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tweed suit", @@ -59267,11 +74227,14 @@ "hat": "army hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4987 + }, "metadata_dict": { "fur": "tan", "clothes": "black holes t", @@ -59279,11 +74242,14 @@ "eyes": "robot", "background": "orange", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4988 + }, "metadata_dict": { "hat": "s&m hat", "fur": "dmt", @@ -59291,11 +74257,14 @@ "clothes": "sleeveless logo t", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4989 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -59303,22 +74272,28 @@ "clothes": "sailor shirt", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4990 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "black", "eyes": "sleepy", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4991 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "hypnotized", @@ -59327,11 +74302,14 @@ "hat": "cowboy hat", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4992 + }, "metadata_dict": { "clothes": "bayc t red", "earring": "gold hoop", @@ -59340,11 +74318,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4993 + }, "metadata_dict": { "eyes": "heart", "hat": "bandana blue", @@ -59352,22 +74333,28 @@ "fur": "gray", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4994 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", "fur": "black", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4995 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -59375,11 +74362,14 @@ "clothes": "lumberjack shirt", "fur": "golden brown", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4996 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -59387,11 +74377,14 @@ "clothes": "admirals coat", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4997 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "striped tee", @@ -59399,22 +74392,28 @@ "hat": "seaman's hat", "eyes": "zombie", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4998 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme oh", "background": "orange", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 4999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 4999 + }, "metadata_dict": { "background": "yellow", "earring": "silver stud", @@ -59422,11 +74421,14 @@ "fur": "pink", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5000 + }, "metadata_dict": { "background": "new punk blue", "clothes": "blue dress", @@ -59434,22 +74436,28 @@ "hat": "party hat 1", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5001 + }, "metadata_dict": { "eyes": "3d", "clothes": "tuxedo tee", "fur": "white", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5002 + }, "metadata_dict": { "clothes": "striped tee", "hat": "fez", @@ -59457,22 +74465,28 @@ "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5003 + }, "metadata_dict": { "earring": "silver hoop", "mouth": "tongue out", "fur": "cheetah", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5004 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -59481,11 +74495,14 @@ "earring": "silver hoop", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5005 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -59493,11 +74510,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5006 + }, "metadata_dict": { "fur": "red", "background": "orange", @@ -59505,11 +74525,14 @@ "mouth": "tongue out", "hat": "beanie", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5007 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -59517,11 +74540,14 @@ "background": "blue", "eyes": "bloodshot", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5008 + }, "metadata_dict": { "mouth": "bored", "background": "gray", @@ -59529,11 +74555,14 @@ "eyes": "sleepy", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5009 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", @@ -59541,11 +74570,14 @@ "fur": "black", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5010 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "tan", @@ -59553,22 +74585,28 @@ "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5011 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "clothes": "striped tee", "background": "aquamarine", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5012 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "coins", @@ -59576,11 +74614,14 @@ "hat": "bunny ears", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5013 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -59589,11 +74630,14 @@ "clothes": "work vest", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5014 + }, "metadata_dict": { "hat": "fez", "clothes": "prison jumpsuit", @@ -59601,11 +74645,14 @@ "background": "blue", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5015 + }, "metadata_dict": { "fur": "tan", "hat": "bandana blue", @@ -59613,11 +74660,14 @@ "clothes": "smoking jacket", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5016 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -59626,11 +74676,14 @@ "background": "orange", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5017 + }, "metadata_dict": { "clothes": "black suit", "fur": "dark brown", @@ -59638,11 +74691,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5018 + }, "metadata_dict": { "fur": "robot", "mouth": "tongue out", @@ -59650,11 +74706,14 @@ "clothes": "stunt jacket", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5019 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "dumbfounded", @@ -59662,11 +74721,14 @@ "background": "yellow", "hat": "bunny ears", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5020 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven party horn", @@ -59674,22 +74736,28 @@ "hat": "army hat", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5021 + }, "metadata_dict": { "hat": "fez", "fur": "dark brown", "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5022 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -59698,11 +74766,14 @@ "earring": "silver hoop", "eyes": "angry", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5023 + }, "metadata_dict": { "fur": "cheetah", "earring": "silver stud", @@ -59711,22 +74782,28 @@ "background": "gray", "hat": "beanie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5024 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "service", "background": "yellow", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5025 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -59735,22 +74812,28 @@ "mouth": "bored unshaven cigarette", "eyes": "sleepy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5026 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme vuh", "background": "blue", "hat": "bayc hat red", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5027 + }, "metadata_dict": { "mouth": "discomfort", "hat": "s&m hat", @@ -59758,22 +74841,28 @@ "background": "blue", "clothes": "tanktop", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5028 + }, "metadata_dict": { "fur": "golden brown", "clothes": "prison jumpsuit", "eyes": "robot", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5029 + }, "metadata_dict": { "eyes": "closed", "fur": "dmt", @@ -59781,11 +74870,14 @@ "background": "gray", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5030 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "striped tee", @@ -59794,11 +74886,14 @@ "background": "orange", "earring": "silver hoop", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5031 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "hat": "fez", @@ -59807,22 +74902,28 @@ "clothes": "sleeveless logo t", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5032 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "earring": "gold stud", "eyes": "bored", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5033 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "bored pipe", @@ -59830,33 +74931,42 @@ "fur": "dark brown", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5034 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "fur": "brown", "clothes": "hip hop", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5035 + }, "metadata_dict": { "hat": "bandana blue", "background": "gray", "mouth": "jovial", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5036 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "laurel wreath", @@ -59864,11 +74974,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5037 + }, "metadata_dict": { "fur": "gray", "hat": "fez", @@ -59877,33 +74990,42 @@ "clothes": "biker vest", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5038 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven cigarette", "clothes": "black t", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5039 + }, "metadata_dict": { "hat": "fez", "eyes": "robot", "fur": "dark brown", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5040 + }, "metadata_dict": { "mouth": "rage", "eyes": "robot", @@ -59911,22 +75033,28 @@ "fur": "death bot", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5041 + }, "metadata_dict": { "background": "new punk blue", "clothes": "blue dress", "mouth": "small grin", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5042 + }, "metadata_dict": { "eyes": "wide eyed", "earring": "gold stud", @@ -59935,22 +75063,28 @@ "background": "gray", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5043 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "scumbag", "mouth": "rage", "background": "aquamarine", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5044 + }, "metadata_dict": { "background": "new punk blue", "fur": "dmt", @@ -59958,11 +75092,14 @@ "eyes": "bored", "earring": "silver hoop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5045 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -59970,22 +75107,28 @@ "clothes": "biker vest", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5046 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "brown", "eyes": "3d", "mouth": "small grin", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5047 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -59993,11 +75136,14 @@ "fur": "black", "background": "gray", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5048 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "beanie", @@ -60005,11 +75151,14 @@ "eyes": "bored", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5049 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -60017,11 +75166,14 @@ "mouth": "rage", "hat": "bunny ears", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5050 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "prussian helmet", @@ -60030,11 +75182,14 @@ "fur": "red", "background": "blue", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5051 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored pipe", @@ -60042,22 +75197,28 @@ "clothes": "prom dress", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5052 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "clothes": "space suit", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5053 + }, "metadata_dict": { "background": "orange", "hat": "bayc flipped brim", @@ -60065,11 +75226,14 @@ "clothes": "bayc t black", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5054 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", @@ -60078,11 +75242,14 @@ "eyes": "bored", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5055 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "grin", @@ -60090,11 +75257,14 @@ "background": "orange", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5056 + }, "metadata_dict": { "hat": "horns", "background": "aquamarine", @@ -60102,11 +75272,14 @@ "clothes": "biker vest", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5057 + }, "metadata_dict": { "background": "blue", "clothes": "guayabera", @@ -60114,11 +75287,14 @@ "fur": "cheetah", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5058 + }, "metadata_dict": { "mouth": "discomfort", "hat": "sushi chef headband", @@ -60126,11 +75302,14 @@ "eyes": "3d", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5059 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -60138,11 +75317,14 @@ "hat": "faux hawk", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5060 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -60151,22 +75333,28 @@ "mouth": "tongue out", "hat": "vietnam era helmet", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5061 + }, "metadata_dict": { "eyes": "x eyes", "hat": "fez", "fur": "cheetah", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5062 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "bone tee", @@ -60174,11 +75362,14 @@ "background": "purple", "mouth": "phoneme wah", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5063 + }, "metadata_dict": { "clothes": "striped tee", "hat": "s&m hat", @@ -60187,11 +75378,14 @@ "background": "orange", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5064 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -60199,11 +75393,14 @@ "earring": "silver hoop", "eyes": "blue beams", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5065 + }, "metadata_dict": { "mouth": "bored cigarette", "earring": "diamond stud", @@ -60212,11 +75409,14 @@ "clothes": "bayc t black", "hat": "vietnam era helmet", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5066 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -60225,11 +75425,14 @@ "fur": "cheetah", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5067 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -60237,22 +75440,28 @@ "eyes": "bored", "background": "gray", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5068 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sailor shirt", "mouth": "bored party horn", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5069 + }, "metadata_dict": { "hat": "party hat 1", "mouth": "rage", @@ -60261,11 +75470,14 @@ "eyes": "bored", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5070 + }, "metadata_dict": { "hat": "trippy captain's hat", "background": "aquamarine", @@ -60273,11 +75485,14 @@ "fur": "red", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5071 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "yellow", @@ -60286,11 +75501,14 @@ "hat": "bowler", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5072 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -60298,22 +75516,28 @@ "fur": "dark brown", "hat": "bayc hat red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5073 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "orange", "eyes": "bored", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5074 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -60321,11 +75545,14 @@ "hat": "cowboy hat", "fur": "cheetah", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5075 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -60334,11 +75561,14 @@ "mouth": "dumbfounded", "earring": "silver stud", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5076 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "zombie", @@ -60346,22 +75576,28 @@ "fur": "dark brown", "clothes": "tuxedo tee", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5077 + }, "metadata_dict": { "mouth": "grin", "fur": "brown", "background": "orange", "eyes": "bloodshot", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5078 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", @@ -60369,11 +75605,14 @@ "mouth": "bored", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5079 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "striped tee", @@ -60381,11 +75620,14 @@ "eyes": "bloodshot", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5080 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -60393,22 +75635,28 @@ "fur": "dark brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5081 + }, "metadata_dict": { "fur": "cream", "clothes": "sailor shirt", "background": "blue", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5082 + }, "metadata_dict": { "hat": "sushi chef headband", "earring": "gold stud", @@ -60416,21 +75664,27 @@ "mouth": "bored", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5083 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "eyes": "sunglasses", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5084 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -60439,11 +75693,14 @@ "clothes": "tanktop", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5085 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "gray", @@ -60452,11 +75709,14 @@ "mouth": "phoneme vuh", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5086 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -60465,11 +75725,14 @@ "earring": "silver stud", "background": "aquamarine", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5087 + }, "metadata_dict": { "clothes": "vietnam jacket", "background": "aquamarine", @@ -60477,22 +75740,28 @@ "hat": "bayc hat red", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5088 + }, "metadata_dict": { "mouth": "rage", "fur": "black", "clothes": "tanktop", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5089 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -60500,22 +75769,28 @@ "clothes": "work vest", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5090 + }, "metadata_dict": { "mouth": "phoneme l", "background": "blue", "fur": "black", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5091 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "striped tee", @@ -60523,11 +75798,14 @@ "mouth": "grin", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5092 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "bored unshaven kazoo", @@ -60535,43 +75813,55 @@ "background": "gray", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5093 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", "fur": "dark brown", "mouth": "bored unshaven kazoo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5094 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "black holes t", "mouth": "dumbfounded", "background": "aquamarine", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5095 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "hat": "spinner hat", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5096 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "phoneme vuh", @@ -60580,22 +75870,28 @@ "earring": "gold stud", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5097 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "bloodshot", "clothes": "lab coat", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5098 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme oh", @@ -60603,11 +75899,14 @@ "background": "purple", "fur": "white", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5099 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", @@ -60615,11 +75914,14 @@ "background": "yellow", "clothes": "hip hop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5100 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", @@ -60627,11 +75929,14 @@ "background": "blue", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5101 + }, "metadata_dict": { "background": "blue", "earring": "gold stud", @@ -60639,11 +75944,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5102 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -60651,33 +75959,42 @@ "fur": "dark brown", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5103 + }, "metadata_dict": { "hat": "cowboy hat", "background": "gray", "mouth": "bored", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5104 + }, "metadata_dict": { "mouth": "bored pipe", "fur": "brown", "background": "purple", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5105 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", @@ -60686,33 +76003,42 @@ "background": "orange", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5106 + }, "metadata_dict": { "eyes": "closed", "background": "yellow", "fur": "black", "mouth": "tongue out", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5107 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored dagger", "earring": "diamond stud", "eyes": "bloodshot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5108 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -60721,11 +76047,14 @@ "background": "purple", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5109 + }, "metadata_dict": { "hat": "fez", "clothes": "biker vest", @@ -60733,22 +76062,28 @@ "background": "orange", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5110 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "black holes t", "background": "blue", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5111 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -60756,11 +76091,14 @@ "background": "orange", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5112 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "zombie", @@ -60768,11 +76106,14 @@ "fur": "pink", "clothes": "tuxedo tee", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5113 + }, "metadata_dict": { "fur": "dark brown", "clothes": "tuxedo tee", @@ -60780,11 +76121,14 @@ "background": "purple", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5114 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -60792,11 +76136,14 @@ "clothes": "bayc t black", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5115 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "black t", @@ -60804,11 +76151,14 @@ "fur": "black", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5116 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -60816,11 +76166,14 @@ "fur": "trippy", "hat": "king's crown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5117 + }, "metadata_dict": { "clothes": "leather jacket", "background": "orange", @@ -60828,33 +76181,42 @@ "hat": "army hat", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5118 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", "background": "gray", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5119 + }, "metadata_dict": { "background": "gray", "fur": "white", "mouth": "bored cigarette", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5120 + }, "metadata_dict": { "hat": "safari", "background": "blue", @@ -60862,11 +76224,14 @@ "eyes": "bored", "clothes": "sleeveless logo t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5121 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -60874,11 +76239,14 @@ "fur": "cheetah", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5122 + }, "metadata_dict": { "fur": "red", "earring": "silver hoop", @@ -60886,33 +76254,42 @@ "hat": "safari", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5123 + }, "metadata_dict": { "hat": "irish boho", "mouth": "phoneme ooo", "fur": "gray", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5124 + }, "metadata_dict": { "fur": "red", "hat": "commie hat", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5125 + }, "metadata_dict": { "fur": "tan", "eyes": "blindfold", @@ -60920,11 +76297,14 @@ "clothes": "tie dye", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5126 + }, "metadata_dict": { "clothes": "black holes t", "fur": "dmt", @@ -60932,11 +76312,14 @@ "eyes": "3d", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5127 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "leather punk jacket", @@ -60944,11 +76327,14 @@ "eyes": "robot", "fur": "pink", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5128 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless t", @@ -60956,11 +76342,14 @@ "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5129 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "horns", @@ -60968,11 +76357,14 @@ "clothes": "prison jumpsuit", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5130 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "wide eyed", @@ -60981,11 +76373,14 @@ "background": "purple", "earring": "cross", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5131 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -60994,21 +76389,27 @@ "hat": "cowboy hat", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5132 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored pipe", "fur": "pink", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5133 + }, "metadata_dict": { "earring": "diamond stud", "background": "aquamarine", @@ -61017,11 +76418,14 @@ "clothes": "tanktop", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5134 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -61030,11 +76434,14 @@ "earring": "silver hoop", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5135 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", @@ -61042,11 +76449,14 @@ "fur": "golden brown", "earring": "gold hoop", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5136 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -61054,11 +76464,14 @@ "clothes": "toga", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5137 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "blindfold", @@ -61066,11 +76479,14 @@ "earring": "silver stud", "mouth": "phoneme vuh", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5138 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", @@ -61078,22 +76494,28 @@ "mouth": "grin", "hat": "prussian helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5139 + }, "metadata_dict": { "mouth": "jovial", "fur": "red", "background": "gray", "clothes": "guayabera", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5140 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", @@ -61101,11 +76523,14 @@ "background": "blue", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5141 + }, "metadata_dict": { "eyes": "zombie", "earring": "silver stud", @@ -61114,11 +76539,14 @@ "fur": "pink", "hat": "short mohawk", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5142 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -61126,11 +76554,14 @@ "earring": "silver hoop", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5143 + }, "metadata_dict": { "eyes": "blindfold", "hat": "stuntman helmet", @@ -61138,11 +76569,14 @@ "background": "aquamarine", "fur": "dark brown", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5144 + }, "metadata_dict": { "background": "blue", "hat": "beanie", @@ -61150,11 +76584,14 @@ "fur": "white", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5145 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "closed", @@ -61162,22 +76599,28 @@ "hat": "seaman's hat", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5146 + }, "metadata_dict": { "fur": "black", "eyes": "3d", "mouth": "tongue out", "background": "gray", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5147 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -61186,11 +76629,14 @@ "clothes": "tanktop", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5148 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -61198,11 +76644,14 @@ "fur": "white", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5149 + }, "metadata_dict": { "mouth": "grin", "earring": "diamond stud", @@ -61211,11 +76660,14 @@ "fur": "pink", "hat": "bayc flipped brim", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5150 + }, "metadata_dict": { "eyes": "scumbag", "hat": "seaman's hat", @@ -61224,11 +76676,14 @@ "mouth": "bored", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5151 + }, "metadata_dict": { "eyes": "x eyes", "hat": "king's crown", @@ -61236,22 +76691,28 @@ "clothes": "tuxedo tee", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5152 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "robot", "fur": "black", "background": "orange", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5153 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -61259,11 +76720,14 @@ "background": "aquamarine", "fur": "dark brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5154 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -61271,11 +76735,14 @@ "mouth": "jovial", "fur": "noise", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5155 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -61283,11 +76750,14 @@ "hat": "cowboy hat", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5156 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "biker vest", @@ -61295,33 +76765,42 @@ "eyes": "sleepy", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5157 + }, "metadata_dict": { "clothes": "bandolier", "background": "blue", "mouth": "bored", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5158 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black holes t", "background": "blue", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5159 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "work vest", @@ -61330,22 +76809,28 @@ "fur": "dark brown", "earring": "silver hoop", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5160 + }, "metadata_dict": { "fur": "golden brown", "hat": "stuntman helmet", "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5161 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme oh", @@ -61353,33 +76838,42 @@ "clothes": "leather jacket", "fur": "black", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5162 + }, "metadata_dict": { "eyes": "closed", "clothes": "sailor shirt", "fur": "dark brown", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5163 + }, "metadata_dict": { "fur": "black", "eyes": "bored", "mouth": "tongue out", "clothes": "pimp coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5164 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -61388,11 +76882,14 @@ "mouth": "dumbfounded", "eyes": "robot", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5165 + }, "metadata_dict": { "clothes": "bayc t red", "background": "orange", @@ -61400,11 +76897,14 @@ "mouth": "bored cigarette", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5166 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -61413,11 +76913,14 @@ "fur": "black", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5167 + }, "metadata_dict": { "fur": "cream", "hat": "horns", @@ -61426,11 +76929,14 @@ "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5168 + }, "metadata_dict": { "hat": "bayc hat black", "background": "gray", @@ -61438,11 +76944,14 @@ "earring": "silver hoop", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5169 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "party hat 1", @@ -61450,22 +76959,28 @@ "clothes": "smoking jacket", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5170 + }, "metadata_dict": { "hat": "horns", "mouth": "bored unshaven cigarette", "background": "army green", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5171 + }, "metadata_dict": { "background": "gray", "hat": "seaman's hat", @@ -61474,33 +76989,42 @@ "eyes": "bored", "earring": "silver hoop", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5172 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "zombie", "hat": "stuntman helmet", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5173 + }, "metadata_dict": { "fur": "trippy", "clothes": "tweed suit", "background": "blue", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5174 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "pink", @@ -61508,11 +77032,14 @@ "eyes": "bored", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5175 + }, "metadata_dict": { "hat": "horns", "clothes": "toga", @@ -61520,11 +77047,14 @@ "background": "yellow", "mouth": "bored cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5176 + }, "metadata_dict": { "clothes": "rainbow suspenders", "earring": "gold stud", @@ -61533,11 +77063,14 @@ "hat": "bowler", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5177 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -61545,11 +77078,14 @@ "clothes": "pimp coat", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5178 + }, "metadata_dict": { "mouth": "bored dagger", "earring": "silver stud", @@ -61558,11 +77094,14 @@ "hat": "vietnam era helmet", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5179 + }, "metadata_dict": { "clothes": "striped tee", "fur": "gray", @@ -61570,11 +77109,14 @@ "background": "blue", "eyes": "bloodshot", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5180 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "brown", @@ -61582,11 +77124,14 @@ "hat": "cowboy hat", "clothes": "tanktop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5181 + }, "metadata_dict": { "fur": "cream", "clothes": "black holes t", @@ -61595,11 +77140,14 @@ "eyes": "bored", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5182 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -61607,11 +77155,14 @@ "clothes": "sailor shirt", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5183 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -61619,22 +77170,28 @@ "fur": "brown", "mouth": "bored unshaven cigarette", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5184 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", "hat": "fez", "background": "blue", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5185 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -61642,11 +77199,14 @@ "background": "aquamarine", "clothes": "smoking jacket", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5186 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -61654,11 +77214,14 @@ "clothes": "biker vest", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5187 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "blindfold", @@ -61666,11 +77229,14 @@ "background": "orange", "clothes": "smoking jacket", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5188 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -61679,33 +77245,42 @@ "earring": "gold hoop", "clothes": "black t", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5189 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "blindfold", "fur": "golden brown", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5190 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "blue", "eyes": "robot", "hat": "vietnam era helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5191 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -61713,11 +77288,14 @@ "fur": "gray", "earring": "gold hoop", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5192 + }, "metadata_dict": { "eyes": "heart", "background": "gray", @@ -61725,22 +77303,28 @@ "clothes": "bone necklace", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5193 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "cheetah", "mouth": "bored", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5194 + }, "metadata_dict": { "fur": "gray", "eyes": "coins", @@ -61749,11 +77333,14 @@ "clothes": "hip hop", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5195 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "scumbag", @@ -61762,11 +77349,14 @@ "background": "aquamarine", "hat": "safari", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5196 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "service", @@ -61774,22 +77364,28 @@ "eyes": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5197 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "king's crown", "eyes": "3d", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5198 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored cigarette", @@ -61797,21 +77393,27 @@ "background": "gray", "fur": "white", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5199 + }, "metadata_dict": { "fur": "robot", "mouth": "bored", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5200 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -61819,11 +77421,14 @@ "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5201 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -61831,22 +77436,28 @@ "eyes": "sleepy", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5202 + }, "metadata_dict": { "fur": "tan", "mouth": "dumbfounded", "background": "blue", "hat": "army hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5203 + }, "metadata_dict": { "clothes": "black holes t", "fur": "dmt", @@ -61854,11 +77465,14 @@ "eyes": "bored", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5204 + }, "metadata_dict": { "eyes": "eyepatch", "background": "aquamarine", @@ -61866,11 +77480,14 @@ "earring": "silver hoop", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5205 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -61878,11 +77495,14 @@ "clothes": "work vest", "mouth": "tongue out", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5206 + }, "metadata_dict": { "mouth": "grin diamond grill", "eyes": "robot", @@ -61890,21 +77510,27 @@ "earring": "silver hoop", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5207 + }, "metadata_dict": { "background": "gray", "mouth": "grin", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5208 + }, "metadata_dict": { "fur": "dmt", "clothes": "work vest", @@ -61912,11 +77538,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5209 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "black", @@ -61925,11 +77554,14 @@ "background": "army green", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5210 + }, "metadata_dict": { "mouth": "discomfort", "hat": "horns", @@ -61938,11 +77570,14 @@ "background": "gray", "eyes": "angry", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5211 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -61951,11 +77586,14 @@ "hat": "girl's hair short", "earring": "cross", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5212 + }, "metadata_dict": { "mouth": "jovial", "background": "orange", @@ -61963,22 +77601,28 @@ "fur": "brown", "clothes": "stunt jacket", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5213 + }, "metadata_dict": { "eyes": "blindfold", "fur": "dmt", "earring": "silver stud", "background": "aquamarine", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5214 + }, "metadata_dict": { "eyes": "x eyes", "hat": "party hat 1", @@ -61986,11 +77630,14 @@ "background": "orange", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5215 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", @@ -61998,11 +77645,14 @@ "mouth": "tongue out", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5216 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t red", @@ -62011,11 +77661,14 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5217 + }, "metadata_dict": { "earring": "gold hoop", "fur": "black", @@ -62023,11 +77676,14 @@ "clothes": "toga", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5218 + }, "metadata_dict": { "background": "yellow", "clothes": "prison jumpsuit", @@ -62035,11 +77691,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5219 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "red", @@ -62047,22 +77706,28 @@ "background": "gray", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5220 + }, "metadata_dict": { "eyes": "x eyes", "fur": "pink", "background": "gray", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5221 + }, "metadata_dict": { "background": "aquamarine", "clothes": "tuxedo tee", @@ -62070,11 +77735,14 @@ "hat": "fisherman's hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5222 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "black holes t", @@ -62082,11 +77750,14 @@ "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5223 + }, "metadata_dict": { "eyes": "heart", "earring": "diamond stud", @@ -62094,11 +77765,14 @@ "fur": "death bot", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5224 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "bored bubblegum", @@ -62106,11 +77780,14 @@ "fur": "brown", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5225 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -62119,11 +77796,14 @@ "hat": "bayc hat red", "clothes": "stunt jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5226 + }, "metadata_dict": { "clothes": "smoking jacket", "eyes": "bloodshot", @@ -62131,11 +77811,14 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5227 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -62144,11 +77827,14 @@ "background": "aquamarine", "hat": "fisherman's hat", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5228 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bone necklace", @@ -62157,11 +77843,14 @@ "background": "gray", "hat": "bowler", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5229 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme ooo", @@ -62169,11 +77858,14 @@ "earring": "silver stud", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5230 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -62182,22 +77874,28 @@ "mouth": "bored", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5231 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "spinner hat", "eyes": "bloodshot", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5232 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "girl's hair pink", @@ -62205,11 +77903,14 @@ "earring": "silver hoop", "background": "purple", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5233 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -62217,11 +77918,14 @@ "fur": "solid gold", "background": "gray", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5234 + }, "metadata_dict": { "hat": "seaman's hat", "background": "aquamarine", @@ -62229,11 +77933,14 @@ "fur": "dark brown", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5235 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "bored unshaven", @@ -62241,11 +77948,14 @@ "background": "orange", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5236 + }, "metadata_dict": { "hat": "horns", "eyes": "hypnotized", @@ -62253,22 +77963,28 @@ "mouth": "dumbfounded", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5237 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "hat": "fez", "mouth": "dumbfounded", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5238 + }, "metadata_dict": { "fur": "golden brown", "hat": "vietnam era helmet", @@ -62277,11 +77993,14 @@ "background": "gray", "clothes": "prom dress", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5239 + }, "metadata_dict": { "earring": "diamond stud", "mouth": "dumbfounded", @@ -62289,11 +78008,14 @@ "background": "purple", "hat": "commie hat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5240 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "smoking jacket", @@ -62301,11 +78023,14 @@ "background": "orange", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5241 + }, "metadata_dict": { "eyes": "wide eyed", "earring": "silver stud", @@ -62314,11 +78039,14 @@ "hat": "bayc hat red", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5242 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -62326,21 +78054,27 @@ "hat": "fisherman's hat", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5243 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored pipe", "background": "army green", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5244 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -62348,11 +78082,14 @@ "earring": "silver hoop", "hat": "faux hawk", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5245 + }, "metadata_dict": { "hat": "horns", "clothes": "sailor shirt", @@ -62360,11 +78097,14 @@ "fur": "black", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5246 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "phoneme ooo", @@ -62372,22 +78112,28 @@ "fur": "pink", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5247 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "coins", "mouth": "rage", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5248 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "robot", @@ -62395,32 +78141,41 @@ "hat": "short mohawk", "background": "gray", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5249 + }, "metadata_dict": { "earring": "diamond stud", "fur": "brown", "background": "yellow", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5250 + }, "metadata_dict": { "fur": "brown", "background": "purple", "eyes": "bloodshot", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5251 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", @@ -62428,11 +78183,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5252 + }, "metadata_dict": { "mouth": "grin", "eyes": "bored", @@ -62440,11 +78198,14 @@ "hat": "safari", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5253 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored kazoo", @@ -62452,33 +78213,42 @@ "eyes": "bored", "fur": "cheetah", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5254 + }, "metadata_dict": { "eyes": "coins", "fur": "cheetah", "hat": "bowler", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5255 + }, "metadata_dict": { "fur": "brown", "background": "aquamarine", "eyes": "bored", "mouth": "bored unshaven cigarette", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5256 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -62486,11 +78256,14 @@ "background": "purple", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5257 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "diamond stud", @@ -62499,11 +78272,14 @@ "mouth": "bored", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5258 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "dumbfounded", @@ -62512,22 +78288,28 @@ "earring": "silver hoop", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5259 + }, "metadata_dict": { "hat": "fez", "background": "orange", "eyes": "bored", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5260 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", @@ -62536,21 +78318,27 @@ "mouth": "phoneme vuh", "hat": "fisherman's hat", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5261 + }, "metadata_dict": { "fur": "brown", "background": "purple", "eyes": "crazy", "mouth": "bored unshaven" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5262 + }, "metadata_dict": { "fur": "black", "hat": "fisherman's hat", @@ -62558,11 +78346,14 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5263 + }, "metadata_dict": { "background": "blue", "earring": "silver hoop", @@ -62570,22 +78361,28 @@ "eyes": "sleepy", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5264 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tweed suit", "fur": "dark brown", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5265 + }, "metadata_dict": { "fur": "cream", "hat": "s&m hat", @@ -62593,22 +78390,28 @@ "clothes": "tanktop", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5266 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "background": "gray", "fur": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5267 + }, "metadata_dict": { "earring": "silver stud", "background": "orange", @@ -62616,22 +78419,28 @@ "eyes": "bored", "mouth": "tongue out", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5268 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", "clothes": "prison jumpsuit", "mouth": "dumbfounded", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5269 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "red", @@ -62639,11 +78448,14 @@ "clothes": "tie dye", "hat": "short mohawk", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5270 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "bayc t red", @@ -62652,11 +78464,14 @@ "background": "yellow", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5271 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", @@ -62664,11 +78479,14 @@ "mouth": "bored", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5272 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "lumberjack shirt", @@ -62676,11 +78494,14 @@ "hat": "fisherman's hat", "mouth": "bored unshaven cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5273 + }, "metadata_dict": { "fur": "cream", "hat": "girl's hair pink", @@ -62689,11 +78510,14 @@ "clothes": "bone necklace", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5274 + }, "metadata_dict": { "clothes": "space suit", "mouth": "rage", @@ -62701,11 +78525,14 @@ "fur": "brown", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5275 + }, "metadata_dict": { "hat": "halo", "fur": "black", @@ -62713,22 +78540,28 @@ "mouth": "bored", "clothes": "caveman pelt", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5276 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", "mouth": "jovial", "background": "orange", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5277 + }, "metadata_dict": { "eyes": "closed", "hat": "bandana blue", @@ -62737,22 +78570,28 @@ "earring": "silver hoop", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5278 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "mouth": "phoneme l", "fur": "dark brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5279 + }, "metadata_dict": { "mouth": "grin", "background": "orange", @@ -62760,11 +78599,14 @@ "clothes": "tanktop", "hat": "vietnam era helmet", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5280 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -62772,11 +78614,14 @@ "background": "orange", "hat": "faux hawk", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5281 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -62784,22 +78629,28 @@ "background": "blue", "clothes": "work vest", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5282 + }, "metadata_dict": { "fur": "cream", "hat": "irish boho", "mouth": "phoneme ooo", "background": "aquamarine", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5283 + }, "metadata_dict": { "mouth": "grin", "earring": "diamond stud", @@ -62807,43 +78658,55 @@ "fur": "white", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5284 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "blue", "fur": "brown", "eyes": "crazy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5285 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5286 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", "fur": "brown", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5287 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "black t", @@ -62851,22 +78714,28 @@ "fur": "brown", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5288 + }, "metadata_dict": { "clothes": "bandolier", "fur": "noise", "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5289 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver stud", @@ -62875,11 +78744,14 @@ "eyes": "bored", "clothes": "tanktop", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5290 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -62887,11 +78759,14 @@ "mouth": "bored", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5291 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "rage", @@ -62899,11 +78774,14 @@ "fur": "pink", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5292 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -62911,11 +78789,14 @@ "fur": "black", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5293 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored unshaven", @@ -62923,11 +78804,14 @@ "fur": "red", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5294 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -62935,22 +78819,28 @@ "background": "gray", "hat": "vietnam era helmet", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5295 + }, "metadata_dict": { "background": "new punk blue", "clothes": "work vest", "fur": "black", "mouth": "bored unshaven cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5296 + }, "metadata_dict": { "eyes": "scumbag", "hat": "king's crown", @@ -62958,11 +78848,14 @@ "fur": "black", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5297 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "grin diamond grill", @@ -62970,11 +78863,14 @@ "eyes": "bloodshot", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5298 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "striped tee", @@ -62982,11 +78878,14 @@ "eyes": "bloodshot", "fur": "cheetah", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5299 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -62994,22 +78893,28 @@ "mouth": "jovial", "background": "orange", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5300 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", "fur": "dark brown", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5301 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -63017,11 +78922,14 @@ "fur": "pink", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5302 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -63029,11 +78937,14 @@ "clothes": "tuxedo tee", "fur": "robot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5303 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", @@ -63041,11 +78952,14 @@ "clothes": "sleeveless logo t", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5304 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme l", @@ -63053,11 +78967,14 @@ "fur": "brown", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5305 + }, "metadata_dict": { "eyes": "robot", "background": "orange", @@ -63065,11 +78982,14 @@ "hat": "bunny ears", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5306 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "baby's bonnet", @@ -63077,11 +78997,14 @@ "earring": "gold stud", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5307 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "short mohawk", @@ -63089,11 +79012,14 @@ "eyes": "bloodshot", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5308 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "coins", @@ -63101,22 +79027,28 @@ "fur": "dark brown", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5309 + }, "metadata_dict": { "background": "aquamarine", "mouth": "jovial", "clothes": "tie dye", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5310 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -63124,11 +79056,14 @@ "fur": "dark brown", "hat": "bayc hat red", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5311 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -63137,11 +79072,14 @@ "background": "aquamarine", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5312 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "silver stud", @@ -63150,11 +79088,14 @@ "background": "gray", "hat": "safari", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5313 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -63162,11 +79103,14 @@ "clothes": "prison jumpsuit", "hat": "fez", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5314 + }, "metadata_dict": { "fur": "golden brown", "clothes": "tie dye", @@ -63174,11 +79118,14 @@ "hat": "cowboy hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5315 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven party horn", @@ -63187,11 +79134,14 @@ "background": "orange", "earring": "silver hoop", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5316 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -63199,11 +79149,14 @@ "background": "gray", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5317 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -63211,11 +79164,14 @@ "mouth": "dumbfounded", "background": "orange", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5318 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -63223,22 +79179,28 @@ "earring": "silver hoop", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5319 + }, "metadata_dict": { "hat": "seaman's hat", "background": "orange", "fur": "brown", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5320 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -63246,11 +79208,14 @@ "clothes": "guayabera", "mouth": "small grin", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5321 + }, "metadata_dict": { "mouth": "discomfort", "fur": "dmt", @@ -63259,11 +79224,14 @@ "background": "gray", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5322 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "lumberjack shirt", @@ -63272,11 +79240,14 @@ "mouth": "dumbfounded", "background": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5323 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -63284,11 +79255,14 @@ "background": "aquamarine", "hat": "short mohawk", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5324 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "gold hoop", @@ -63297,11 +79271,14 @@ "hat": "cowboy hat", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5325 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", @@ -63309,22 +79286,28 @@ "eyes": "bloodshot", "clothes": "toga", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5326 + }, "metadata_dict": { "eyes": "closed", "fur": "brown", "hat": "fez", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5327 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "dmt", @@ -63332,11 +79315,14 @@ "background": "purple", "eyes": "crazy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5328 + }, "metadata_dict": { "fur": "golden brown", "hat": "girl's hair pink", @@ -63345,11 +79331,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5329 + }, "metadata_dict": { "background": "new punk blue", "clothes": "space suit", @@ -63357,11 +79346,14 @@ "hat": "fez", "mouth": "bored cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5330 + }, "metadata_dict": { "mouth": "grin", "background": "orange", @@ -63370,44 +79362,56 @@ "earring": "silver hoop", "hat": "vietnam era helmet", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5331 + }, "metadata_dict": { "eyes": "bloodshot", "hat": "girl's hair short", "mouth": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5332 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "dark brown", "clothes": "bayc t black", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5333 + }, "metadata_dict": { "eyes": "closed", "fur": "black", "background": "orange", "mouth": "bored unshaven cigarette", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5334 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -63415,11 +79419,14 @@ "earring": "silver hoop", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5335 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -63427,22 +79434,28 @@ "fur": "black", "background": "orange", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5336 + }, "metadata_dict": { "eyes": "scumbag", "fur": "red", "mouth": "tongue out", "clothes": "pimp coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5337 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "stuntman helmet", @@ -63450,22 +79463,28 @@ "eyes": "bored", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5338 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "space suit", "background": "blue", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5339 + }, "metadata_dict": { "fur": "gray", "hat": "stuntman helmet", @@ -63473,11 +79492,14 @@ "mouth": "bored cigarette", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5340 + }, "metadata_dict": { "eyes": "heart", "mouth": "discomfort", @@ -63485,22 +79507,28 @@ "background": "blue", "fur": "dark brown", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5341 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", "fur": "brown", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5342 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme oh", @@ -63508,22 +79536,28 @@ "clothes": "work vest", "background": "aquamarine", "fur": "pink" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5343 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", "clothes": "black t", "background": "blue", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5344 + }, "metadata_dict": { "eyes": "hypnotized", "earring": "gold hoop", @@ -63531,22 +79565,28 @@ "fur": "noise", "clothes": "sleeveless logo t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5345 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", "eyes": "bloodshot", "clothes": "bayc t black", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5346 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -63554,11 +79594,14 @@ "clothes": "sailor shirt", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5347 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "blue", @@ -63566,11 +79609,14 @@ "eyes": "bored", "fur": "cheetah", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5348 + }, "metadata_dict": { "clothes": "blue dress", "background": "yellow", @@ -63578,11 +79624,14 @@ "fur": "pink", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5349 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -63590,11 +79639,14 @@ "hat": "beanie", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5350 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -63603,11 +79655,14 @@ "fur": "red", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5351 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", @@ -63615,11 +79670,14 @@ "hat": "seaman's hat", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5352 + }, "metadata_dict": { "fur": "dmt", "clothes": "leather jacket", @@ -63627,11 +79685,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5353 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven pizza", @@ -63639,11 +79700,14 @@ "hat": "bayc flipped brim", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5354 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "fur": "black", @@ -63651,11 +79715,14 @@ "background": "purple", "eyes": "sunglasses", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5355 + }, "metadata_dict": { "hat": "irish boho", "eyes": "coins", @@ -63663,11 +79730,14 @@ "fur": "brown", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5356 + }, "metadata_dict": { "background": "aquamarine", "clothes": "tie dye", @@ -63675,22 +79745,28 @@ "mouth": "phoneme wah", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5357 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", "background": "blue", "clothes": "bayc t black", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5358 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "grin", @@ -63698,11 +79774,14 @@ "fur": "black", "eyes": "bored", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5359 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "diamond stud", @@ -63711,11 +79790,14 @@ "background": "yellow", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5360 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -63723,22 +79805,28 @@ "earring": "silver hoop", "hat": "faux hawk", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5361 + }, "metadata_dict": { "eyes": "blindfold", "fur": "dmt", "background": "blue", "mouth": "small grin", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5362 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin", @@ -63746,11 +79834,14 @@ "earring": "gold hoop", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5363 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -63759,22 +79850,28 @@ "hat": "cowboy hat", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5364 + }, "metadata_dict": { "background": "blue", "fur": "black", "eyes": "bored", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5365 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "seaman's hat", @@ -63782,11 +79879,14 @@ "background": "blue", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5366 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", @@ -63794,11 +79894,14 @@ "hat": "fisherman's hat", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5367 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "striped tee", @@ -63806,11 +79909,14 @@ "fur": "cream", "mouth": "phoneme ooo", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5368 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "space suit", @@ -63818,22 +79924,28 @@ "mouth": "phoneme vuh", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5369 + }, "metadata_dict": { "fur": "black", "background": "purple", "mouth": "bored", "clothes": "hip hop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5370 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored kazoo", @@ -63841,33 +79953,42 @@ "background": "aquamarine", "fur": "dark brown", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5371 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", "clothes": "prison jumpsuit", "background": "blue", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5372 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", "background": "blue", "fur": "black", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5373 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -63876,11 +79997,14 @@ "earring": "silver hoop", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5374 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -63889,11 +80013,14 @@ "clothes": "tie dye", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5375 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", @@ -63902,21 +80029,27 @@ "background": "blue", "clothes": "tuxedo tee", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5376 + }, "metadata_dict": { "fur": "dark brown", "eyes": "blindfold", "background": "army green", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5377 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "dark brown", @@ -63924,22 +80057,28 @@ "hat": "beanie", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5378 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "sleeveless t", "background": "gray", "fur": "brown", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5379 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "sailor shirt", @@ -63947,11 +80086,14 @@ "fur": "black", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5380 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver stud", @@ -63960,11 +80102,14 @@ "background": "orange", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5381 + }, "metadata_dict": { "hat": "stuntman helmet", "mouth": "phoneme vuh", @@ -63972,11 +80117,14 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5382 + }, "metadata_dict": { "eyes": "holographic", "fur": "gray", @@ -63984,11 +80132,14 @@ "hat": "fisherman's hat", "clothes": "bone necklace", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5383 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -63996,11 +80147,14 @@ "hat": "army hat", "fur": "solid gold", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5384 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -64008,11 +80162,14 @@ "clothes": "biker vest", "hat": "cowboy hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5385 + }, "metadata_dict": { "eyes": "heart", "clothes": "wool turtleneck", @@ -64020,33 +80177,42 @@ "background": "yellow", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5386 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "cheetah", "clothes": "admirals coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5387 + }, "metadata_dict": { "fur": "dmt", "background": "orange", "clothes": "guayabera", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5388 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "laurel wreath", @@ -64055,11 +80221,14 @@ "eyes": "3d", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5389 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", @@ -64068,11 +80237,14 @@ "earring": "gold stud", "mouth": "tongue out", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5390 + }, "metadata_dict": { "clothes": "striped tee", "fur": "brown", @@ -64081,22 +80253,28 @@ "earring": "silver hoop", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5391 + }, "metadata_dict": { "fur": "black", "earring": "gold stud", "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5392 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -64104,11 +80282,14 @@ "hat": "seaman's hat", "eyes": "3d", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5393 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -64116,11 +80297,14 @@ "clothes": "guayabera", "hat": "bayc flipped brim", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5394 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -64128,44 +80312,56 @@ "eyes": "bored", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5395 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black t", "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5396 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "dark brown", "background": "yellow", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5397 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", "fur": "pink", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5398 + }, "metadata_dict": { "mouth": "bored dagger", "background": "blue", @@ -64173,22 +80369,28 @@ "hat": "fisherman's hat", "eyes": "sleepy", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5399 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", "background": "aquamarine", "eyes": "bloodshot", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5400 + }, "metadata_dict": { "clothes": "sailor shirt", "background": "blue", @@ -64196,11 +80398,14 @@ "fur": "brown", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5401 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "bandolier", @@ -64208,22 +80413,28 @@ "fur": "golden brown", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5402 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "black", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5403 + }, "metadata_dict": { "eyes": "blindfold", "fur": "black", @@ -64231,11 +80442,14 @@ "clothes": "bone necklace", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5404 + }, "metadata_dict": { "eyes": "closed", "earring": "diamond stud", @@ -64244,11 +80458,14 @@ "hat": "short mohawk", "fur": "brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5405 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "horns", @@ -64256,11 +80473,14 @@ "eyes": "bored", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5406 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -64269,11 +80489,14 @@ "clothes": "bone necklace", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5407 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "baby's bonnet", @@ -64282,11 +80505,14 @@ "clothes": "tanktop", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5408 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -64294,11 +80520,14 @@ "clothes": "smoking jacket", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5409 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "phoneme oh", @@ -64306,22 +80535,28 @@ "clothes": "black t", "fur": "pink", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5410 + }, "metadata_dict": { "eyes": "closed", "background": "blue", "clothes": "bayc t black", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5411 + }, "metadata_dict": { "eyes": "closed", "clothes": "bayc t red", @@ -64330,22 +80565,28 @@ "fur": "red", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5412 + }, "metadata_dict": { "background": "blue", "fur": "dark brown", "eyes": "bored", "clothes": "pimp coat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5413 + }, "metadata_dict": { "hat": "horns", "earring": "silver stud", @@ -64354,11 +80595,14 @@ "clothes": "tuxedo tee", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5414 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bone tee", @@ -64366,44 +80610,56 @@ "hat": "cowboy hat", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5415 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "toga", "fur": "cheetah", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5416 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "fur": "golden brown", "background": "aquamarine", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5417 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme ooo", "clothes": "black t", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5418 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin multicolored", @@ -64411,11 +80667,14 @@ "fur": "red", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5419 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "leather punk jacket", @@ -64423,11 +80682,14 @@ "fur": "gray", "hat": "spinner hat", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5420 + }, "metadata_dict": { "eyes": "eyepatch", "background": "orange", @@ -64435,43 +80697,55 @@ "clothes": "tuxedo tee", "hat": "bayc flipped brim", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5421 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "service", "mouth": "rage", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5422 + }, "metadata_dict": { "background": "blue", "clothes": "smoking jacket", "eyes": "crazy", "mouth": "bored cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5423 + }, "metadata_dict": { "fur": "red", "eyes": "heart", "mouth": "bored unshaven", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5424 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", @@ -64479,11 +80753,14 @@ "clothes": "tanktop", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5425 + }, "metadata_dict": { "fur": "cream", "clothes": "sleeveless t", @@ -64491,43 +80768,55 @@ "mouth": "grin diamond grill", "background": "blue", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5426 + }, "metadata_dict": { "eyes": "closed", "fur": "black", "background": "orange", "mouth": "tongue out", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5427 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme oh", "fur": "cream", "eyes": "blindfold", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5428 + }, "metadata_dict": { "background": "aquamarine", "mouth": "jovial", "fur": "dark brown", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5429 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -64536,22 +80825,28 @@ "eyes": "bored", "background": "gray", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5430 + }, "metadata_dict": { "fur": "golden brown", "background": "yellow", "mouth": "bored", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5431 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme l", @@ -64559,11 +80854,14 @@ "clothes": "work vest", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5432 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -64571,11 +80869,14 @@ "fur": "dark brown", "background": "gray", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5433 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "fur": "black", @@ -64583,11 +80884,14 @@ "clothes": "sleeveless logo t", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5434 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "work vest", @@ -64596,22 +80900,28 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5435 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "aquamarine", "fur": "dark brown", "hat": "bayc flipped brim", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5436 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -64619,11 +80929,14 @@ "hat": "bayc flipped brim", "fur": "white", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5437 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -64631,11 +80944,14 @@ "eyes": "bloodshot", "mouth": "small grin", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5438 + }, "metadata_dict": { "hat": "horns", "clothes": "sailor shirt", @@ -64643,22 +80959,28 @@ "background": "purple", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5439 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "hat": "fisherman's hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5440 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "zombie", @@ -64666,11 +80988,14 @@ "clothes": "lab coat", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5441 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -64678,11 +81003,14 @@ "fur": "dark brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5442 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "heart", @@ -64691,11 +81019,14 @@ "hat": "fisherman's hat", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5443 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored pipe", @@ -64704,11 +81035,14 @@ "fur": "pink", "clothes": "bayc t black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5444 + }, "metadata_dict": { "eyes": "holographic", "fur": "dmt", @@ -64716,11 +81050,14 @@ "mouth": "jovial", "background": "blue", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5445 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "red", @@ -64728,11 +81065,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5446 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven party horn", @@ -64740,11 +81080,14 @@ "eyes": "bored", "hat": "bowler", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5447 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc flipped brim", @@ -64752,11 +81095,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5448 + }, "metadata_dict": { "hat": "s&m hat", "earring": "silver stud", @@ -64764,11 +81110,14 @@ "fur": "black", "mouth": "bored unshaven kazoo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5449 + }, "metadata_dict": { "clothes": "tweed suit", "hat": "king's crown", @@ -64776,11 +81125,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5450 + }, "metadata_dict": { "fur": "tan", "hat": "laurel wreath", @@ -64788,11 +81140,14 @@ "eyes": "zombie", "clothes": "sleeveless logo t", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5451 + }, "metadata_dict": { "clothes": "blue dress", "mouth": "dumbfounded", @@ -64800,22 +81155,28 @@ "fur": "black", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5452 + }, "metadata_dict": { "eyes": "laser eyes", "background": "yellow", "mouth": "bored", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5453 + }, "metadata_dict": { "earring": "silver stud", "hat": "beanie", @@ -64823,33 +81184,42 @@ "eyes": "3d", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5454 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored pipe", "background": "orange", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5455 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black t", "background": "aquamarine", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5456 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "bandana blue", @@ -64858,11 +81228,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5457 + }, "metadata_dict": { "clothes": "space suit", "fur": "golden brown", @@ -64870,11 +81243,14 @@ "hat": "short mohawk", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5458 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -64882,22 +81258,28 @@ "eyes": "robot", "fur": "black", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5459 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "black t", "fur": "pink", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5460 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "prison jumpsuit", @@ -64905,11 +81287,14 @@ "mouth": "jovial", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5461 + }, "metadata_dict": { "hat": "s&m hat", "background": "gray", @@ -64917,11 +81302,14 @@ "clothes": "sailor shirt", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5462 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -64929,11 +81317,14 @@ "background": "yellow", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5463 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "clothes": "tuxedo tee", @@ -64941,11 +81332,14 @@ "earring": "silver hoop", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5464 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -64954,11 +81348,14 @@ "earring": "silver hoop", "hat": "army hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5465 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "dark brown", @@ -64966,53 +81363,68 @@ "background": "gray", "clothes": "stunt jacket", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5466 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "dark brown", "clothes": "toga", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5467 + }, "metadata_dict": { "mouth": "grin", "background": "yellow", "eyes": "heart", "fur": "cream" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5468 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "closed", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5469 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "robot", "hat": "short mohawk", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5470 + }, "metadata_dict": { "clothes": "striped tee", "hat": "s&m hat", @@ -65020,11 +81432,14 @@ "fur": "dark brown", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5471 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "phoneme ooo", @@ -65032,11 +81447,14 @@ "eyes": "bored", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5472 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "phoneme ooo", @@ -65044,11 +81462,14 @@ "clothes": "biker vest", "hat": "fisherman's hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5473 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -65056,22 +81477,28 @@ "fur": "black", "eyes": "bloodshot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5474 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", "background": "gray", "mouth": "bored unshaven cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5475 + }, "metadata_dict": { "fur": "gray", "mouth": "bored unshaven bubblegum", @@ -65079,11 +81506,14 @@ "clothes": "tanktop", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5476 + }, "metadata_dict": { "eyes": "closed", "clothes": "blue dress", @@ -65091,11 +81521,14 @@ "fur": "black", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5477 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "noise", @@ -65103,11 +81536,14 @@ "clothes": "lab coat", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5478 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -65115,11 +81551,14 @@ "hat": "police motorcycle helmet", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5479 + }, "metadata_dict": { "hat": "prussian helmet", "mouth": "jovial", @@ -65127,11 +81566,14 @@ "background": "purple", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5480 + }, "metadata_dict": { "fur": "golden brown", "hat": "baby's bonnet", @@ -65139,11 +81581,14 @@ "clothes": "sailor shirt", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5481 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -65151,11 +81596,14 @@ "fur": "dark brown", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5482 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "discomfort", @@ -65163,33 +81611,42 @@ "eyes": "bored", "background": "yellow", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5483 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bloodshot", "hat": "army hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5484 + }, "metadata_dict": { "fur": "dmt", "mouth": "dumbfounded", "background": "purple", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5485 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -65197,22 +81654,28 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5486 + }, "metadata_dict": { "mouth": "tongue out", "clothes": "tie dye", "background": "orange", "fur": "noise", "eyes": "blue beams" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5487 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -65221,11 +81684,14 @@ "clothes": "tuxedo tee", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5488 + }, "metadata_dict": { "clothes": "biker vest", "hat": "fisherman's hat", @@ -65233,11 +81699,14 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5489 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "red", @@ -65245,11 +81714,14 @@ "background": "blue", "mouth": "jovial", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5490 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -65258,11 +81730,14 @@ "hat": "short mohawk", "fur": "dark brown", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5491 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven pizza", @@ -65271,11 +81746,14 @@ "fur": "black", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5492 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -65283,11 +81761,14 @@ "hat": "bayc flipped brim", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5493 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -65295,22 +81776,28 @@ "background": "orange", "hat": "ww2 pilot helm", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5494 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "holographic", "fur": "red", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5495 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "bored", @@ -65318,22 +81805,28 @@ "background": "army green", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5496 + }, "metadata_dict": { "hat": "horns", "eyes": "hypnotized", "mouth": "grin", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5497 + }, "metadata_dict": { "eyes": "closed", "earring": "silver stud", @@ -65342,22 +81835,28 @@ "clothes": "bone necklace", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5498 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", "fur": "dark brown", "eyes": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5499 + }, "metadata_dict": { "clothes": "work vest", "fur": "cheetah", @@ -65365,11 +81864,14 @@ "mouth": "bored", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5500 + }, "metadata_dict": { "clothes": "bone tee", "mouth": "phoneme ooo", @@ -65377,21 +81879,27 @@ "eyes": "bored", "hat": "bowler", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5501 + }, "metadata_dict": { "fur": "dmt", "mouth": "bored", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5502 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "sushi chef headband", @@ -65399,11 +81907,14 @@ "background": "yellow", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5503 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -65411,44 +81922,56 @@ "eyes": "3d", "background": "gray", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5504 + }, "metadata_dict": { "mouth": "rage", "hat": "fisherman's hat", "background": "yellow", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5505 + }, "metadata_dict": { "eyes": "scumbag", "fur": "brown", "clothes": "prison jumpsuit", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5506 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "clothes": "prison jumpsuit", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5507 + }, "metadata_dict": { "eyes": "closed", "hat": "stuntman helmet", @@ -65456,11 +81979,14 @@ "background": "yellow", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5508 + }, "metadata_dict": { "hat": "seaman's hat", "background": "orange", @@ -65468,11 +81994,14 @@ "mouth": "bored", "fur": "robot", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5509 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -65480,11 +82009,14 @@ "earring": "silver hoop", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5510 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -65492,11 +82024,14 @@ "eyes": "bored", "fur": "white", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5511 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -65504,22 +82039,28 @@ "hat": "ww2 pilot helm", "fur": "brown", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5512 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5513 + }, "metadata_dict": { "eyes": "heart", "earring": "gold hoop", @@ -65528,22 +82069,28 @@ "background": "aquamarine", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5514 + }, "metadata_dict": { "fur": "gray", "background": "aquamarine", "eyes": "sleepy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5515 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -65551,11 +82098,14 @@ "eyes": "blue beams", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5516 + }, "metadata_dict": { "eyes": "closed", "clothes": "lumberjack shirt", @@ -65563,22 +82113,28 @@ "fur": "black", "earring": "cross", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5517 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "clothes": "sleeveless t", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5518 + }, "metadata_dict": { "fur": "black", "earring": "gold stud", @@ -65586,11 +82142,14 @@ "eyes": "bloodshot", "mouth": "tongue out", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5519 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "phoneme vuh", @@ -65598,11 +82157,14 @@ "hat": "ww2 pilot helm", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5520 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", @@ -65610,11 +82172,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5521 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "smoking jacket", @@ -65622,22 +82187,28 @@ "hat": "army hat", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5522 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bloodshot", "fur": "dark brown", "background": "gray", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5523 + }, "metadata_dict": { "fur": "robot", "mouth": "bored cigar", @@ -65645,11 +82216,14 @@ "background": "yellow", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5524 + }, "metadata_dict": { "fur": "golden brown", "earring": "diamond stud", @@ -65658,33 +82232,42 @@ "eyes": "bored", "mouth": "bored cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5525 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bored", "fur": "brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5526 + }, "metadata_dict": { "fur": "dmt", "eyes": "bored", "background": "yellow", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5527 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -65693,33 +82276,42 @@ "background": "blue", "earring": "gold stud", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5528 + }, "metadata_dict": { "background": "new punk blue", "fur": "blue", "hat": "party hat 1", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5529 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", "mouth": "dumbfounded", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5530 + }, "metadata_dict": { "fur": "tan", "hat": "s&m hat", @@ -65727,22 +82319,28 @@ "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5531 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "fur": "dark brown", "earring": "silver hoop", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5532 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "gray", @@ -65750,22 +82348,28 @@ "background": "aquamarine", "hat": "girl's hair short", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5533 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin multicolored", "background": "blue", "fur": "death bot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5534 + }, "metadata_dict": { "clothes": "black t", "fur": "black", @@ -65773,22 +82377,28 @@ "mouth": "bored", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5535 + }, "metadata_dict": { "fur": "golden brown", "background": "aquamarine", "eyes": "bored", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5536 + }, "metadata_dict": { "fur": "red", "background": "orange", @@ -65796,11 +82406,14 @@ "clothes": "smoking jacket", "hat": "cowboy hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5537 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -65808,11 +82421,14 @@ "hat": "ww2 pilot helm", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5538 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "prussian helmet", @@ -65821,22 +82437,28 @@ "fur": "black", "eyes": "bored", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5539 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "golden brown", "clothes": "sailor shirt", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5540 + }, "metadata_dict": { "eyes": "x eyes", "hat": "ww2 pilot helm", @@ -65844,33 +82466,42 @@ "fur": "cheetah", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5541 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "cowboy shirt", "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5542 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "eyes": "bored", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5543 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -65879,11 +82510,14 @@ "background": "gray", "clothes": "bone necklace", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5544 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -65891,11 +82525,14 @@ "clothes": "admirals coat", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5545 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -65903,22 +82540,28 @@ "hat": "king's crown", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5546 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", "fur": "golden brown", "clothes": "black t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5547 + }, "metadata_dict": { "eyes": "3d", "background": "orange", @@ -65926,11 +82569,14 @@ "mouth": "bored cigarette", "fur": "zombie", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5548 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "stuntman helmet", @@ -65938,11 +82584,14 @@ "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5549 + }, "metadata_dict": { "mouth": "grin", "clothes": "leather jacket", @@ -65951,11 +82600,14 @@ "background": "gray", "hat": "vietnam era helmet", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5550 + }, "metadata_dict": { "clothes": "leather jacket", "background": "orange", @@ -65963,11 +82615,14 @@ "fur": "dark brown", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5551 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -65975,21 +82630,27 @@ "hat": "girl's hair pink", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5552 + }, "metadata_dict": { "background": "purple", "eyes": "closed", "mouth": "phoneme oh", "fur": "cream" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5553 + }, "metadata_dict": { "hat": "irish boho", "eyes": "zombie", @@ -65997,11 +82658,14 @@ "clothes": "biker vest", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5554 + }, "metadata_dict": { "eyes": "heart", "mouth": "rage", @@ -66009,11 +82673,14 @@ "background": "gray", "hat": "vietnam era helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5555 + }, "metadata_dict": { "clothes": "black suit", "background": "yellow", @@ -66022,11 +82689,14 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5556 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "cream", @@ -66034,32 +82704,41 @@ "clothes": "leather jacket", "background": "orange", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5557 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "clothes": "biker vest", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5558 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "dark brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5559 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -66067,11 +82746,14 @@ "hat": "fez", "fur": "black", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5560 + }, "metadata_dict": { "clothes": "space suit", "fur": "golden brown", @@ -66079,11 +82761,14 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5561 + }, "metadata_dict": { "fur": "golden brown", "eyes": "bloodshot", @@ -66091,11 +82776,14 @@ "background": "gray", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5562 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -66104,11 +82792,14 @@ "eyes": "bored", "clothes": "sleeveless logo t", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5563 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored cigar", @@ -66116,11 +82807,14 @@ "background": "orange", "fur": "death bot", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5564 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -66129,22 +82823,28 @@ "clothes": "tuxedo tee", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5565 + }, "metadata_dict": { "fur": "brown", "hat": "beanie", "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5566 + }, "metadata_dict": { "eyes": "laser eyes", "earring": "gold stud", @@ -66152,21 +82852,27 @@ "background": "purple", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5567 + }, "metadata_dict": { "fur": "brown", "background": "purple", "eyes": "bloodshot", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5568 + }, "metadata_dict": { "fur": "tan", "mouth": "bored party horn", @@ -66174,21 +82880,27 @@ "clothes": "smoking jacket", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5569 + }, "metadata_dict": { "background": "yellow", "mouth": "bored", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5570 + }, "metadata_dict": { "fur": "tan", "eyes": "blindfold", @@ -66196,11 +82908,14 @@ "hat": "party hat 1", "background": "aquamarine", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5571 + }, "metadata_dict": { "background": "aquamarine", "eyes": "robot", @@ -66208,11 +82923,14 @@ "mouth": "bored cigarette", "fur": "robot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5572 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "golden brown", @@ -66221,11 +82939,14 @@ "background": "blue", "eyes": "bored", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5573 + }, "metadata_dict": { "eyes": "heart", "hat": "fisherman's hat", @@ -66233,11 +82954,14 @@ "fur": "death bot", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5574 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -66245,65 +82969,83 @@ "mouth": "small grin", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5575 + }, "metadata_dict": { "background": "new punk blue", "fur": "noise", "eyes": "bored", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5576 + }, "metadata_dict": { "fur": "brown", "eyes": "zombie", "background": "orange", "mouth": "grin gold grill" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5577 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "jovial", "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5578 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "jovial", "background": "blue", "fur": "black", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5579 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", "fur": "golden brown", "eyes": "crazy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5580 + }, "metadata_dict": { "clothes": "black holes t", "fur": "dark brown", @@ -66311,11 +83053,14 @@ "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5581 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -66324,11 +83069,14 @@ "eyes": "bored", "clothes": "lab coat", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5582 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "phoneme ooo", @@ -66336,11 +83084,14 @@ "fur": "golden brown", "background": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5583 + }, "metadata_dict": { "eyes": "coins", "hat": "girl's hair pink", @@ -66348,44 +83099,56 @@ "background": "blue", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5584 + }, "metadata_dict": { "eyes": "scumbag", "fur": "dark brown", "mouth": "tongue out", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5585 + }, "metadata_dict": { "background": "new punk blue", "fur": "dmt", "eyes": "bored", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5586 + }, "metadata_dict": { "hat": "party hat 1", "eyes": "robot", "fur": "cheetah", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5587 + }, "metadata_dict": { "fur": "cream", "hat": "s&m hat", @@ -66394,11 +83157,14 @@ "clothes": "tie dye", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5588 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -66407,11 +83173,14 @@ "background": "aquamarine", "fur": "dark brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5589 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -66420,22 +83189,28 @@ "earring": "silver stud", "hat": "beanie", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5590 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", "mouth": "grin", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5591 + }, "metadata_dict": { "fur": "gray", "mouth": "rage", @@ -66443,11 +83218,14 @@ "clothes": "tanktop", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5592 + }, "metadata_dict": { "fur": "cream", "hat": "cowboy hat", @@ -66455,11 +83233,14 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5593 + }, "metadata_dict": { "eyes": "coins", "clothes": "rainbow suspenders", @@ -66467,22 +83248,28 @@ "hat": "faux hawk", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5594 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "coins", "mouth": "bored bubblegum", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5595 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored kazoo", @@ -66490,44 +83277,56 @@ "hat": "stuntman helmet", "fur": "pink", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5596 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "red", "clothes": "tie dye", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5597 + }, "metadata_dict": { "eyes": "holographic", "fur": "trippy", "background": "blue", "mouth": "tongue out", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5598 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", "clothes": "tie dye", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5599 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "holographic", @@ -66536,11 +83335,14 @@ "earring": "silver hoop", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5600 + }, "metadata_dict": { "clothes": "striped tee", "earring": "gold hoop", @@ -66549,11 +83351,14 @@ "mouth": "bored unshaven cigarette", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5601 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -66561,11 +83366,14 @@ "mouth": "bored unshaven", "eyes": "zombie", "hat": "ww2 pilot helm" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5602 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "fez", @@ -66573,11 +83381,14 @@ "fur": "dark brown", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5603 + }, "metadata_dict": { "fur": "golden brown", "hat": "beanie", @@ -66585,11 +83396,14 @@ "mouth": "phoneme wah", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5604 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -66598,11 +83412,14 @@ "hat": "fisherman's hat", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5605 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "black", @@ -66610,11 +83427,14 @@ "clothes": "bone necklace", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5606 + }, "metadata_dict": { "mouth": "grin", "eyes": "robot", @@ -66622,11 +83442,14 @@ "background": "yellow", "fur": "white", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5607 + }, "metadata_dict": { "background": "new punk blue", "hat": "girl's hair short", @@ -66634,11 +83457,14 @@ "fur": "death bot", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5608 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "diamond stud", @@ -66647,11 +83473,14 @@ "clothes": "tuxedo tee", "eyes": "bored", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5609 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "discomfort", @@ -66659,11 +83488,14 @@ "clothes": "tweed suit", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5610 + }, "metadata_dict": { "eyes": "x eyes", "hat": "bayc hat black", @@ -66671,22 +83503,28 @@ "fur": "red", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5611 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored cigarette", "fur": "red", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5612 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "dmt", @@ -66694,22 +83532,28 @@ "hat": "short mohawk", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5613 + }, "metadata_dict": { "background": "gray", "fur": "black", "mouth": "bored unshaven cigarette", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5614 + }, "metadata_dict": { "eyes": "heart", "clothes": "leather punk jacket", @@ -66717,11 +83561,14 @@ "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5615 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "eyes": "coins", @@ -66729,11 +83576,14 @@ "fur": "black", "clothes": "bone necklace", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5616 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "phoneme vuh", @@ -66741,11 +83591,14 @@ "fur": "black", "eyes": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5617 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "dumbfounded", @@ -66753,11 +83606,14 @@ "hat": "beanie", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5618 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -66765,11 +83621,14 @@ "clothes": "biker vest", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5619 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -66778,11 +83637,14 @@ "hat": "safari", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5620 + }, "metadata_dict": { "mouth": "grin", "earring": "silver stud", @@ -66791,11 +83653,14 @@ "eyes": "bloodshot", "clothes": "tuxedo tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5621 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "gray", @@ -66804,11 +83669,14 @@ "earring": "silver stud", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5622 + }, "metadata_dict": { "fur": "cream", "earring": "gold hoop", @@ -66817,22 +83685,28 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5623 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", "eyes": "coins", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5624 + }, "metadata_dict": { "fur": "dark brown", "clothes": "bayc t black", @@ -66840,22 +83714,28 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5625 + }, "metadata_dict": { "fur": "black", "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5626 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -66863,11 +83743,14 @@ "clothes": "caveman pelt", "fur": "zombie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5627 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "background": "orange", @@ -66875,11 +83758,14 @@ "clothes": "sleeveless logo t", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5628 + }, "metadata_dict": { "eyes": "heart", "clothes": "bayc t red", @@ -66887,11 +83773,14 @@ "hat": "fez", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5629 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -66899,33 +83788,42 @@ "clothes": "black t", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5630 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", "eyes": "bloodshot", "clothes": "lab coat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5631 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", "fur": "tan", "mouth": "bored unshaven", "earring": "gold stud" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5632 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -66933,33 +83831,42 @@ "eyes": "bored", "clothes": "toga", "hat": "ww2 pilot helm" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5633 + }, "metadata_dict": { "fur": "golden brown", "mouth": "jovial", "hat": "bayc hat red", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5634 + }, "metadata_dict": { "background": "gray", "mouth": "grin", "hat": "bunny ears", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5635 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "king's crown", @@ -66967,11 +83874,14 @@ "background": "orange", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5636 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme vuh", @@ -66979,11 +83889,14 @@ "eyes": "3d", "fur": "brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5637 + }, "metadata_dict": { "fur": "tan", "hat": "halo", @@ -66991,11 +83904,14 @@ "clothes": "smoking jacket", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5638 + }, "metadata_dict": { "background": "orange", "fur": "cheetah", @@ -67003,11 +83919,14 @@ "hat": "police motorcycle helmet", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5639 + }, "metadata_dict": { "fur": "golden brown", "mouth": "rage", @@ -67015,11 +83934,14 @@ "background": "yellow", "eyes": "angry", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5640 + }, "metadata_dict": { "hat": "irish boho", "clothes": "hawaiian", @@ -67027,11 +83949,14 @@ "mouth": "bored", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5641 + }, "metadata_dict": { "fur": "tan", "hat": "stuntman helmet", @@ -67039,11 +83964,14 @@ "background": "blue", "eyes": "bloodshot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5642 + }, "metadata_dict": { "earring": "silver stud", "mouth": "dumbfounded", @@ -67052,22 +83980,28 @@ "eyes": "bored", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5643 + }, "metadata_dict": { "hat": "fez", "background": "aquamarine", "mouth": "jovial", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5644 + }, "metadata_dict": { "eyes": "closed", "clothes": "black suit", @@ -67075,11 +84009,14 @@ "hat": "commie hat", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5645 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -67087,11 +84024,14 @@ "clothes": "biker vest", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5646 + }, "metadata_dict": { "fur": "tan", "clothes": "wool turtleneck", @@ -67100,11 +84040,14 @@ "background": "orange", "earring": "silver hoop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5647 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -67112,11 +84055,14 @@ "clothes": "black suit", "hat": "spinner hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5648 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "sleeveless t", @@ -67124,11 +84070,14 @@ "background": "orange", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5649 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -67136,22 +84085,28 @@ "eyes": "bloodshot", "clothes": "bayc t black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5650 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "blue", "fur": "dark brown", "hat": "bayc flipped brim", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5651 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "discomfort", @@ -67159,11 +84114,14 @@ "clothes": "bayc t black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5652 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -67171,11 +84129,14 @@ "clothes": "work vest", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5653 + }, "metadata_dict": { "eyes": "closed", "clothes": "leather punk jacket", @@ -67183,22 +84144,28 @@ "fur": "golden brown", "background": "orange", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5654 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "fur": "dark brown", "hat": "short mohawk", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5655 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -67206,11 +84173,14 @@ "background": "gray", "hat": "commie hat", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5656 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -67218,11 +84188,14 @@ "clothes": "bone necklace", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5657 + }, "metadata_dict": { "hat": "baby's bonnet", "earring": "gold stud", @@ -67230,11 +84203,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5658 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -67242,11 +84218,14 @@ "earring": "silver hoop", "clothes": "pimp coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5659 + }, "metadata_dict": { "hat": "irish boho", "clothes": "sailor shirt", @@ -67255,11 +84234,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5660 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "cream", @@ -67268,32 +84250,41 @@ "eyes": "bored", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5661 + }, "metadata_dict": { "background": "new punk blue", "fur": "pink", "eyes": "bored", "hat": "ww2 pilot helm", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5662 + }, "metadata_dict": { "background": "gray", "eyes": "sleepy", "mouth": "bored", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5663 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "zombie", @@ -67302,22 +84293,28 @@ "earring": "silver hoop", "hat": "bowler", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5664 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "beanie", "eyes": "3d", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5665 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", @@ -67325,11 +84322,14 @@ "hat": "army hat", "clothes": "prom dress", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5666 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -67337,22 +84337,28 @@ "mouth": "bored cigarette", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5667 + }, "metadata_dict": { "clothes": "blue dress", "background": "aquamarine", "fur": "black", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5668 + }, "metadata_dict": { "hat": "irish boho", "fur": "golden brown", @@ -67360,11 +84366,14 @@ "mouth": "rage", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5669 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "holographic", @@ -67372,22 +84381,28 @@ "clothes": "prison jumpsuit", "earring": "silver stud", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5670 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "fur": "black", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5671 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -67395,44 +84410,56 @@ "clothes": "biker vest", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5672 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "clothes": "prom dress", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5673 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", "fur": "gray", "mouth": "phoneme wah", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5674 + }, "metadata_dict": { "clothes": "bone tee", "mouth": "small grin", "background": "purple", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5675 + }, "metadata_dict": { "clothes": "blue dress", "background": "aquamarine", @@ -67440,55 +84467,70 @@ "hat": "short mohawk", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5676 + }, "metadata_dict": { "mouth": "bored kazoo", "background": "aquamarine", "fur": "brown", "hat": "halo", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5677 + }, "metadata_dict": { "background": "new punk blue", "eyes": "sunglasses", "clothes": "bayc t black", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5678 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "dumbfounded", "clothes": "guayabera", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5679 + }, "metadata_dict": { "fur": "black", "clothes": "smoking jacket", "background": "orange", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5680 + }, "metadata_dict": { "hat": "irish boho", "mouth": "dumbfounded", @@ -67497,11 +84539,14 @@ "clothes": "navy striped tee", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5681 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "pink", @@ -67509,11 +84554,14 @@ "earring": "silver hoop", "background": "gray", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5682 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -67521,11 +84569,14 @@ "earring": "gold hoop", "fur": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5683 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme l", @@ -67533,22 +84584,28 @@ "fur": "noise", "clothes": "navy striped tee", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5684 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", "mouth": "bored unshaven cigar", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5685 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", @@ -67556,22 +84613,28 @@ "eyes": "bloodshot", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5686 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "hat": "bayc hat black", "fur": "dark brown", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5687 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored dagger", @@ -67579,11 +84642,14 @@ "clothes": "smoking jacket", "hat": "short mohawk", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5688 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "leather jacket", @@ -67591,11 +84657,14 @@ "hat": "cowboy hat", "background": "yellow", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5689 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -67603,11 +84672,14 @@ "hat": "sushi chef headband", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5690 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "robot", @@ -67615,44 +84687,56 @@ "fur": "cheetah", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5691 + }, "metadata_dict": { "eyes": "blindfold", "hat": "fez", "background": "aquamarine", "mouth": "small grin", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5692 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "grin", "fur": "golden brown", "background": "orange", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5693 + }, "metadata_dict": { "fur": "cream", "hat": "fez", "mouth": "dumbfounded", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5694 + }, "metadata_dict": { "mouth": "jovial", "background": "blue", @@ -67660,11 +84744,14 @@ "clothes": "prom dress", "hat": "commie hat", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5695 + }, "metadata_dict": { "clothes": "bone tee", "hat": "stuntman helmet", @@ -67673,11 +84760,14 @@ "background": "yellow", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5696 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -67686,11 +84776,14 @@ "eyes": "angry", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5697 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -67698,11 +84791,14 @@ "clothes": "stunt jacket", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5698 + }, "metadata_dict": { "fur": "tan", "clothes": "work vest", @@ -67710,11 +84806,14 @@ "hat": "beanie", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5699 + }, "metadata_dict": { "eyes": "cyborg", "clothes": "tweed suit", @@ -67723,11 +84822,14 @@ "hat": "spinner hat", "earring": "silver hoop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5700 + }, "metadata_dict": { "eyes": "zombie", "background": "orange", @@ -67735,22 +84837,28 @@ "mouth": "bored", "clothes": "hip hop", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5701 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme wah", "fur": "gray", "background": "orange", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5702 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "black t", @@ -67758,11 +84866,14 @@ "fur": "dark brown", "hat": "bunny ears", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5703 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather jacket", @@ -67770,11 +84881,14 @@ "background": "gray", "fur": "white", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5704 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -67782,11 +84896,14 @@ "background": "gray", "eyes": "cyborg", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5705 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin gold grill", @@ -67794,22 +84911,28 @@ "fur": "golden brown", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5706 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "robot", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5707 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "cream", @@ -67817,11 +84940,14 @@ "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5708 + }, "metadata_dict": { "eyes": "holographic", "mouth": "bored unshaven pipe", @@ -67829,11 +84955,14 @@ "fur": "black", "earring": "cross", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5709 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "bored party horn", @@ -67842,11 +84971,14 @@ "background": "yellow", "hat": "bunny ears", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5710 + }, "metadata_dict": { "fur": "golden brown", "eyes": "sunglasses", @@ -67855,11 +84987,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5711 + }, "metadata_dict": { "eyes": "angry", "earring": "diamond stud", @@ -67868,11 +85003,14 @@ "background": "yellow", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5712 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "black suit", @@ -67881,11 +85019,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5713 + }, "metadata_dict": { "fur": "pink", "background": "orange", @@ -67893,11 +85034,14 @@ "hat": "bayc flipped brim", "mouth": "bored unshaven dagger", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5714 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -67905,33 +85049,42 @@ "mouth": "bored unshaven cigarette", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5715 + }, "metadata_dict": { "fur": "golden brown", "eyes": "zombie", "background": "yellow", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5716 + }, "metadata_dict": { "mouth": "bored cigarette", "fur": "black", "clothes": "tuxedo tee", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5717 + }, "metadata_dict": { "eyes": "heart", "hat": "vietnam era helmet", @@ -67939,11 +85092,14 @@ "mouth": "phoneme wah", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5718 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "black suit", @@ -67952,11 +85108,14 @@ "background": "orange", "eyes": "bored", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5719 + }, "metadata_dict": { "hat": "fez", "clothes": "prison jumpsuit", @@ -67964,22 +85123,28 @@ "eyes": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5720 + }, "metadata_dict": { "fur": "cream", "mouth": "bored pipe", "hat": "fisherman's hat", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5721 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "prison jumpsuit", @@ -67987,11 +85152,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5722 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -68000,11 +85168,14 @@ "clothes": "hip hop", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5723 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -68012,11 +85183,14 @@ "fur": "brown", "hat": "beanie", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5724 + }, "metadata_dict": { "clothes": "bandolier", "background": "orange", @@ -68024,22 +85198,28 @@ "eyes": "bored", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5725 + }, "metadata_dict": { "mouth": "jovial", "background": "aquamarine", "fur": "black", "eyes": "bored", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5726 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", @@ -68047,11 +85227,14 @@ "background": "orange", "clothes": "navy striped tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5727 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "cowboy shirt", @@ -68059,11 +85242,14 @@ "eyes": "bloodshot", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5728 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -68072,22 +85258,28 @@ "hat": "bunny ears", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5729 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", "fur": "golden brown", "background": "blue", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5730 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "phoneme vuh", @@ -68096,11 +85288,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5731 + }, "metadata_dict": { "mouth": "rage", "eyes": "robot", @@ -68108,11 +85303,14 @@ "background": "yellow", "hat": "halo", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5732 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -68120,22 +85318,28 @@ "mouth": "bored", "fur": "white", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5733 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "holographic", "fur": "golden brown", "clothes": "leather jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5734 + }, "metadata_dict": { "clothes": "sleeveless logo t", "mouth": "phoneme vuh", @@ -68143,33 +85347,42 @@ "hat": "short mohawk", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5735 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "background": "yellow", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5736 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "coins", "fur": "red", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5737 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -68177,11 +85390,14 @@ "hat": "girl's hair short", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5738 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "phoneme ooo", @@ -68189,11 +85405,14 @@ "background": "orange", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5739 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -68201,22 +85420,28 @@ "background": "purple", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5740 + }, "metadata_dict": { "eyes": "scumbag", "background": "aquamarine", "fur": "dark brown", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5741 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "tan", @@ -68224,22 +85449,28 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5742 + }, "metadata_dict": { "eyes": "3d", "hat": "army hat", "fur": "solid gold", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5743 + }, "metadata_dict": { "clothes": "wool turtleneck", "earring": "gold stud", @@ -68248,11 +85479,14 @@ "background": "gray", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5744 + }, "metadata_dict": { "clothes": "space suit", "hat": "seaman's hat", @@ -68260,11 +85494,14 @@ "fur": "gray", "mouth": "bored party horn", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5745 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "horns", @@ -68273,22 +85510,28 @@ "eyes": "crazy", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5746 + }, "metadata_dict": { "eyes": "sunglasses", "mouth": "jovial", "fur": "robot", "clothes": "service", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5747 + }, "metadata_dict": { "mouth": "bored pipe", "clothes": "leather jacket", @@ -68296,11 +85539,14 @@ "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5748 + }, "metadata_dict": { "eyes": "coins", "hat": "king's crown", @@ -68309,11 +85555,14 @@ "fur": "red", "mouth": "jovial", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5749 + }, "metadata_dict": { "background": "blue", "hat": "spinner hat", @@ -68321,11 +85570,14 @@ "eyes": "bored", "mouth": "phoneme wah", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5750 + }, "metadata_dict": { "clothes": "black t", "hat": "fez", @@ -68333,44 +85585,56 @@ "eyes": "bloodshot", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5751 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", "mouth": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5752 + }, "metadata_dict": { "eyes": "hypnotized", "background": "gray", "mouth": "bored", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5753 + }, "metadata_dict": { "mouth": "phoneme l", "background": "orange", "fur": "dark brown", "hat": "army hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5754 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "scumbag", @@ -68379,11 +85643,14 @@ "hat": "girl's hair short", "clothes": "bone necklace", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5755 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "sailor shirt", @@ -68391,11 +85658,14 @@ "fur": "black", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5756 + }, "metadata_dict": { "clothes": "space suit", "fur": "gray", @@ -68403,11 +85673,14 @@ "hat": "spinner hat", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5757 + }, "metadata_dict": { "eyes": "cyborg", "background": "yellow", @@ -68416,11 +85689,14 @@ "earring": "cross", "clothes": "hip hop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5758 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -68428,11 +85704,14 @@ "fur": "black", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5759 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -68440,11 +85719,14 @@ "clothes": "prison jumpsuit", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5760 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored kazoo", @@ -68452,11 +85734,14 @@ "fur": "brown", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5761 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -68464,33 +85749,42 @@ "hat": "ww2 pilot helm", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5762 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "grin", "background": "orange", "fur": "dark brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5763 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "mouth": "bored unshaven", "earring": "silver stud", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5764 + }, "metadata_dict": { "hat": "irish boho", "fur": "gray", @@ -68498,11 +85792,14 @@ "mouth": "small grin", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5765 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -68510,11 +85807,14 @@ "earring": "diamond stud", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5766 + }, "metadata_dict": { "hat": "s&m hat", "fur": "gray", @@ -68522,11 +85822,14 @@ "eyes": "bloodshot", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5767 + }, "metadata_dict": { "mouth": "phoneme wah", "earring": "silver stud", @@ -68535,22 +85838,28 @@ "background": "gray", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5768 + }, "metadata_dict": { "eyes": "blindfold", "fur": "black", "background": "orange", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5769 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", @@ -68558,11 +85867,14 @@ "background": "orange", "clothes": "toga", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5770 + }, "metadata_dict": { "fur": "golden brown", "hat": "fez", @@ -68571,11 +85883,14 @@ "earring": "silver hoop", "background": "yellow", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5771 + }, "metadata_dict": { "fur": "black", "mouth": "small grin", @@ -68584,11 +85899,14 @@ "clothes": "tanktop", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5772 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -68596,11 +85914,14 @@ "clothes": "sleeveless t", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5773 + }, "metadata_dict": { "eyes": "blindfold", "hat": "irish boho", @@ -68608,11 +85929,14 @@ "clothes": "cowboy shirt", "background": "blue", "fur": "pink" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5774 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "tan", @@ -68620,11 +85944,14 @@ "background": "gray", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5775 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "pink", @@ -68632,33 +85959,42 @@ "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5776 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t black", "fur": "brown", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5777 + }, "metadata_dict": { "hat": "beanie", "eyes": "bored", "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5778 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "black t", @@ -68667,11 +86003,14 @@ "hat": "beanie", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5779 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -68680,22 +86019,28 @@ "hat": "cowboy hat", "fur": "brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5780 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", "fur": "cream", "background": "blue", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5781 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tie dye", @@ -68703,22 +86048,28 @@ "mouth": "bored cigarette", "hat": "police motorcycle helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5782 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "mouth": "bored", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5783 + }, "metadata_dict": { "eyes": "heart", "clothes": "caveman pelt", @@ -68726,11 +86077,14 @@ "fur": "dark brown", "background": "yellow", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5784 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored unshaven pipe", @@ -68738,11 +86092,14 @@ "fur": "black", "clothes": "tuxedo tee", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5785 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -68750,11 +86107,14 @@ "clothes": "tuxedo tee", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5786 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "phoneme oh", @@ -68762,11 +86122,14 @@ "clothes": "tie dye", "background": "orange", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5787 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -68775,22 +86138,28 @@ "mouth": "bored", "clothes": "hip hop", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5788 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", "eyes": "crazy", "fur": "white", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5789 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "irish boho", @@ -68798,11 +86167,14 @@ "fur": "golden brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5790 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -68811,11 +86183,14 @@ "clothes": "rainbow suspenders", "fur": "brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5791 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", @@ -68823,11 +86198,14 @@ "background": "purple", "hat": "safari", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5792 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "bloodshot", @@ -68835,32 +86213,41 @@ "background": "gray", "fur": "white", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5793 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", "hat": "cowboy hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5794 + }, "metadata_dict": { "background": "aquamarine", "fur": "brown", "eyes": "bored", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5795 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -68869,11 +86256,14 @@ "hat": "army hat", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5796 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", @@ -68882,21 +86272,27 @@ "fur": "brown", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5797 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored", "fur": "pink", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5798 + }, "metadata_dict": { "background": "new punk blue", "hat": "ww2 pilot helm", @@ -68904,33 +86300,42 @@ "fur": "death bot", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5799 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "grin", "fur": "black", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5800 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven pizza", "fur": "brown", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5801 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -68939,11 +86344,14 @@ "fur": "dark brown", "hat": "short mohawk", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5802 + }, "metadata_dict": { "clothes": "kings robe", "hat": "irish boho", @@ -68952,11 +86360,14 @@ "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5803 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "blue", @@ -68964,11 +86375,14 @@ "hat": "beanie", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5804 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -68977,11 +86391,14 @@ "fur": "brown", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5805 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -68989,11 +86406,14 @@ "clothes": "prison jumpsuit", "background": "blue", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5806 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -69001,22 +86421,28 @@ "fur": "dark brown", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5807 + }, "metadata_dict": { "fur": "red", "background": "aquamarine", "hat": "cowboy hat", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5808 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -69024,22 +86450,28 @@ "clothes": "leather jacket", "hat": "short mohawk", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5809 + }, "metadata_dict": { "eyes": "holographic", "earring": "gold hoop", "background": "blue", "fur": "solid gold", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5810 + }, "metadata_dict": { "earring": "gold hoop", "background": "blue", @@ -69047,11 +86479,14 @@ "fur": "cheetah", "eyes": "sleepy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5811 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -69059,11 +86494,14 @@ "background": "yellow", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5812 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "blue dress", @@ -69071,11 +86509,14 @@ "fur": "cheetah", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5813 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -69083,11 +86524,14 @@ "earring": "silver hoop", "fur": "death bot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5814 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -69096,11 +86540,14 @@ "earring": "silver hoop", "hat": "fisherman's hat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5815 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "silver stud", @@ -69108,11 +86555,14 @@ "mouth": "bored unshaven cigar", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5816 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", @@ -69120,11 +86570,14 @@ "hat": "beanie", "fur": "white", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5817 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -69132,22 +86585,28 @@ "eyes": "blindfold", "fur": "dark brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5818 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "bored unshaven", "fur": "red", "background": "aquamarine", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5819 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "sailor shirt", @@ -69155,11 +86614,14 @@ "mouth": "bored unshaven cigar", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5820 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -69167,11 +86629,14 @@ "fur": "black", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5821 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -69179,11 +86644,14 @@ "background": "orange", "eyes": "bloodshot", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5822 + }, "metadata_dict": { "fur": "brown", "hat": "girl's hair pink", @@ -69191,11 +86659,14 @@ "eyes": "3d", "clothes": "lab coat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5823 + }, "metadata_dict": { "hat": "short mohawk", "fur": "brown", @@ -69203,11 +86674,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5824 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -69215,33 +86689,42 @@ "eyes": "bored", "hat": "girl's hair short", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5825 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", "hat": "stuntman helmet", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5826 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", "fur": "cream", "mouth": "small grin", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5827 + }, "metadata_dict": { "mouth": "discomfort", "hat": "seaman's hat", @@ -69250,11 +86733,14 @@ "earring": "silver stud", "background": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5828 + }, "metadata_dict": { "clothes": "kings robe", "fur": "tan", @@ -69262,22 +86748,28 @@ "hat": "short mohawk", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5829 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "leather jacket", "eyes": "robot", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5830 + }, "metadata_dict": { "clothes": "striped tee", "fur": "brown", @@ -69285,11 +86777,14 @@ "earring": "gold stud", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5831 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "commie hat", @@ -69297,33 +86792,42 @@ "mouth": "bored", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5832 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "dumbfounded", "eyes": "robot", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5833 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "clothes": "sailor shirt", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5834 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -69331,22 +86835,28 @@ "clothes": "sleeveless t", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5835 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "jovial", "fur": "dark brown", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5836 + }, "metadata_dict": { "clothes": "blue dress", "background": "gray", @@ -69354,11 +86864,14 @@ "eyes": "crazy", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5837 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", @@ -69367,22 +86880,28 @@ "earring": "silver hoop", "hat": "fisherman's hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5838 + }, "metadata_dict": { "hat": "fisherman's hat", "fur": "brown", "background": "purple", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5839 + }, "metadata_dict": { "background": "aquamarine", "fur": "pink", @@ -69390,43 +86909,55 @@ "mouth": "bored unshaven kazoo", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5840 + }, "metadata_dict": { "fur": "brown", "background": "blue", "mouth": "rage", "eyes": "blue beams" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5841 + }, "metadata_dict": { "eyes": "zombie", "hat": "stuntman helmet", "background": "aquamarine", "fur": "black", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5842 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "phoneme vuh", "background": "blue", "fur": "cheetah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5843 + }, "metadata_dict": { "eyes": "sleepy", "hat": "bunny ears", @@ -69434,33 +86965,42 @@ "background": "yellow", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5844 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "dmt", "eyes": "zombie", "background": "orange", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5845 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", "background": "orange", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5846 + }, "metadata_dict": { "mouth": "tongue out", "clothes": "sleeveless t", @@ -69468,11 +87008,14 @@ "background": "orange", "eyes": "bloodshot", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5847 + }, "metadata_dict": { "eyes": "closed", "clothes": "space suit", @@ -69481,33 +87024,42 @@ "earring": "gold stud", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5848 + }, "metadata_dict": { "mouth": "phoneme wah", "background": "aquamarine", "eyes": "bored", "fur": "white", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5849 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "eyes": "bloodshot", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5850 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", @@ -69515,22 +87067,28 @@ "hat": "faux hawk", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5851 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "aquamarine", "fur": "dark brown", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5852 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored party horn", @@ -69538,22 +87096,28 @@ "fur": "pink", "hat": "army hat", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5853 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", "fur": "cheetah", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5854 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -69562,11 +87126,14 @@ "clothes": "bayc t black", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5855 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "sushi chef headband", @@ -69574,22 +87141,28 @@ "eyes": "3d", "fur": "brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5856 + }, "metadata_dict": { "fur": "gray", "mouth": "bored unshaven pipe", "background": "orange", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5857 + }, "metadata_dict": { "eyes": "holographic", "mouth": "grin multicolored", @@ -69597,44 +87170,56 @@ "background": "orange", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5858 + }, "metadata_dict": { "fur": "zombie", "eyes": "bored", "background": "yellow", "mouth": "bored cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5859 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", "mouth": "dumbfounded", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5860 + }, "metadata_dict": { "background": "new punk blue", "hat": "spinner hat", "eyes": "bloodshot", "fur": "dark brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5861 + }, "metadata_dict": { "eyes": "closed", "hat": "fez", @@ -69643,11 +87228,14 @@ "fur": "death bot", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5862 + }, "metadata_dict": { "hat": "laurel wreath", "clothes": "black holes t", @@ -69655,11 +87243,14 @@ "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5863 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -69668,11 +87259,14 @@ "clothes": "guayabera", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5864 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -69680,11 +87274,14 @@ "hat": "party hat 1", "eyes": "3d", "clothes": "biker vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5865 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "zombie", @@ -69692,11 +87289,14 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5866 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -69705,11 +87305,14 @@ "eyes": "bored", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5867 + }, "metadata_dict": { "earring": "diamond stud", "hat": "fez", @@ -69718,11 +87321,14 @@ "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5868 + }, "metadata_dict": { "fur": "golden brown", "hat": "prussian helmet", @@ -69730,11 +87336,14 @@ "clothes": "tanktop", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5869 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "gray", @@ -69742,11 +87351,14 @@ "clothes": "prison jumpsuit", "background": "blue", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5870 + }, "metadata_dict": { "clothes": "space suit", "hat": "prussian helmet", @@ -69754,11 +87366,14 @@ "background": "aquamarine", "fur": "noise", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5871 + }, "metadata_dict": { "fur": "cream", "clothes": "prison jumpsuit", @@ -69766,11 +87381,14 @@ "background": "gray", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5872 + }, "metadata_dict": { "hat": "king's crown", "fur": "noise", @@ -69778,11 +87396,14 @@ "background": "gray", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5873 + }, "metadata_dict": { "eyes": "wide eyed", "fur": "black", @@ -69790,22 +87411,28 @@ "hat": "cowboy hat", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5874 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", "mouth": "bored pipe", "fur": "brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5875 + }, "metadata_dict": { "fur": "tan", "hat": "commie hat", @@ -69813,11 +87440,14 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5876 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "stuntman helmet", @@ -69825,11 +87455,14 @@ "mouth": "bored pipe", "fur": "noise", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5877 + }, "metadata_dict": { "background": "aquamarine", "fur": "pink", @@ -69838,11 +87471,14 @@ "hat": "bowler", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5878 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -69850,11 +87486,14 @@ "earring": "gold stud", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5879 + }, "metadata_dict": { "fur": "gray", "earring": "gold hoop", @@ -69863,11 +87502,14 @@ "hat": "commie hat", "clothes": "navy striped tee", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5880 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -69875,11 +87517,14 @@ "mouth": "jovial", "clothes": "stunt jacket", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5881 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -69887,22 +87532,28 @@ "clothes": "tie dye", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5882 + }, "metadata_dict": { "fur": "golden brown", "clothes": "cowboy shirt", "eyes": "bloodshot", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5883 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "golden brown", @@ -69911,11 +87562,14 @@ "hat": "faux hawk", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5884 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "blue", @@ -69923,11 +87577,14 @@ "hat": "vietnam era helmet", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5885 + }, "metadata_dict": { "hat": "laurel wreath", "eyes": "hypnotized", @@ -69935,11 +87592,14 @@ "mouth": "small grin", "clothes": "bayc t black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5886 + }, "metadata_dict": { "hat": "bayc hat black", "background": "blue", @@ -69947,33 +87607,42 @@ "fur": "brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5887 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", "background": "orange", "eyes": "bored", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5888 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "phoneme vuh", "background": "aquamarine", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5889 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sailor shirt", @@ -69982,11 +87651,14 @@ "hat": "cowboy hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5890 + }, "metadata_dict": { "clothes": "tie dye", "background": "gray", @@ -69994,43 +87666,55 @@ "eyes": "angry", "hat": "police motorcycle helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5891 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", "background": "blue", "fur": "black", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5892 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "tan", "background": "purple", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5893 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "dark brown", "background": "gray", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5894 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -70038,11 +87722,14 @@ "eyes": "robot", "clothes": "tuxedo tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5895 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -70051,43 +87738,55 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5896 + }, "metadata_dict": { "fur": "dark brown", "mouth": "bored unshaven cigarette", "eyes": "crazy", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5897 + }, "metadata_dict": { "clothes": "smoking jacket", "eyes": "bored", "fur": "cheetah", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5898 + }, "metadata_dict": { "background": "yellow", "fur": "black", "mouth": "bored cigarette", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5899 + }, "metadata_dict": { "fur": "black", "clothes": "biker vest", @@ -70095,11 +87794,14 @@ "mouth": "tongue out", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5900 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "cream", @@ -70107,11 +87809,14 @@ "background": "blue", "eyes": "3d", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5901 + }, "metadata_dict": { "mouth": "bored dagger", "background": "orange", @@ -70119,54 +87824,69 @@ "clothes": "toga", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5902 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", "hat": "stuntman helmet", "background": "orange", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5903 + }, "metadata_dict": { "background": "yellow", "fur": "black", "eyes": "bored", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5904 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", "earring": "silver stud", "fur": "red", "mouth": "bored unshaven kazoo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5905 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "jovial", "eyes": "robot", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5906 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -70174,11 +87894,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5907 + }, "metadata_dict": { "background": "orange", "hat": "bayc hat red", @@ -70186,11 +87909,14 @@ "fur": "white", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5908 + }, "metadata_dict": { "eyes": "hypnotized", "background": "aquamarine", @@ -70198,22 +87924,28 @@ "hat": "short mohawk", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5909 + }, "metadata_dict": { "eyes": "eyepatch", "background": "blue", "clothes": "tie dye", "fur": "black", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5910 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", @@ -70221,11 +87953,14 @@ "background": "aquamarine", "clothes": "cowboy shirt", "fur": "pink" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5911 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "eyepatch", @@ -70233,33 +87968,42 @@ "clothes": "black t", "background": "orange", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5912 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", "background": "yellow", "eyes": "bloodshot", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5913 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", "eyes": "holographic", "background": "orange", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5914 + }, "metadata_dict": { "eyes": "closed", "mouth": "discomfort", @@ -70267,44 +88011,56 @@ "background": "aquamarine", "clothes": "tanktop", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5915 + }, "metadata_dict": { "eyes": "heart", "fur": "red", "mouth": "bored", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5916 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", "earring": "silver stud", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5917 + }, "metadata_dict": { "fur": "cream", "mouth": "jovial", "background": "orange", "hat": "short mohawk", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5918 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "zombie", @@ -70313,11 +88069,14 @@ "fur": "brown", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5919 + }, "metadata_dict": { "fur": "tan", "clothes": "rainbow suspenders", @@ -70325,22 +88084,28 @@ "background": "blue", "mouth": "bored pizza", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5920 + }, "metadata_dict": { "eyes": "coins", "background": "aquamarine", "hat": "beanie", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5921 + }, "metadata_dict": { "earring": "silver stud", "hat": "spinner hat", @@ -70348,33 +88113,42 @@ "fur": "dark brown", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5922 + }, "metadata_dict": { "background": "blue", "mouth": "bored unshaven kazoo", "eyes": "bored", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5923 + }, "metadata_dict": { "background": "gray", "eyes": "coins", "fur": "black", "earring": "silver hoop", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5924 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -70382,11 +88156,14 @@ "fur": "brown", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5925 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -70394,11 +88171,14 @@ "mouth": "phoneme vuh", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5926 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "black", @@ -70406,11 +88186,14 @@ "eyes": "bloodshot", "hat": "bayc flipped brim", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5927 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "king's crown", @@ -70419,11 +88202,14 @@ "fur": "brown", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5928 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "coins", @@ -70431,11 +88217,14 @@ "fur": "brown", "background": "yellow", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5929 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "diamond stud", @@ -70444,22 +88233,28 @@ "eyes": "bloodshot", "fur": "death bot", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5930 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "eyes": "bored", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5931 + }, "metadata_dict": { "fur": "cream", "hat": "fez", @@ -70467,11 +88262,14 @@ "clothes": "toga", "eyes": "crazy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5932 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", @@ -70480,11 +88278,14 @@ "background": "aquamarine", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5933 + }, "metadata_dict": { "fur": "tan", "clothes": "cowboy shirt", @@ -70492,22 +88293,28 @@ "background": "gray", "hat": "commie hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5934 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "dumbfounded", "background": "aquamarine", "fur": "noise", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5935 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -70516,11 +88323,14 @@ "fur": "dark brown", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5936 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "lumberjack shirt", @@ -70528,11 +88338,14 @@ "earring": "gold hoop", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5937 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored kazoo", @@ -70540,21 +88353,27 @@ "hat": "short mohawk", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5938 + }, "metadata_dict": { "fur": "black", "eyes": "sleepy", "background": "blue", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5939 + }, "metadata_dict": { "background": "new punk blue", "fur": "noise", @@ -70563,22 +88382,28 @@ "clothes": "pimp coat", "hat": "beanie", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5940 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", "clothes": "cowboy shirt", "fur": "cheetah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5941 + }, "metadata_dict": { "earring": "silver stud", "mouth": "phoneme vuh", @@ -70586,11 +88411,14 @@ "fur": "brown", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5942 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -70598,33 +88426,42 @@ "clothes": "rainbow suspenders", "background": "orange", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5943 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "orange", "fur": "dark brown", "clothes": "stunt jacket", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5944 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", "mouth": "bored pipe", "earring": "gold stud", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5945 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -70633,11 +88470,14 @@ "earring": "silver hoop", "clothes": "toga", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5946 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -70645,22 +88485,28 @@ "clothes": "bayc t black", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5947 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "holographic", "fur": "black", "hat": "spinner hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5948 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "holographic", @@ -70668,21 +88514,27 @@ "fur": "brown", "clothes": "prom dress", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5949 + }, "metadata_dict": { "fur": "brown", "mouth": "small grin", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5950 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -70690,11 +88542,14 @@ "background": "blue", "hat": "cowboy hat", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5951 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", @@ -70702,11 +88557,14 @@ "background": "yellow", "clothes": "caveman pelt", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5952 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -70714,11 +88572,14 @@ "fur": "dark brown", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5953 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "black holes t", @@ -70726,22 +88587,28 @@ "background": "blue", "earring": "gold stud", "fur": "solid gold" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5954 + }, "metadata_dict": { "mouth": "rage", "hat": "army hat", "eyes": "sleepy", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5955 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme ooo", @@ -70749,11 +88616,14 @@ "fur": "dark brown", "hat": "bowler", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5956 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -70762,44 +88632,56 @@ "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5957 + }, "metadata_dict": { "clothes": "service", "background": "yellow", "mouth": "bored", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5958 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "dumbfounded", "background": "blue", "fur": "black", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5959 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", "background": "aquamarine", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5960 + }, "metadata_dict": { "background": "aquamarine", "eyes": "bloodshot", @@ -70807,11 +88689,14 @@ "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5961 + }, "metadata_dict": { "eyes": "blindfold", "fur": "red", @@ -70819,11 +88704,14 @@ "mouth": "bored", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5962 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -70831,33 +88719,42 @@ "mouth": "bored unshaven cigarette", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5963 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", "hat": "party hat 1", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5964 + }, "metadata_dict": { "background": "new punk blue", "clothes": "smoking jacket", "fur": "dark brown", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5965 + }, "metadata_dict": { "hat": "horns", "clothes": "prison jumpsuit", @@ -70866,11 +88763,14 @@ "background": "orange", "fur": "death bot", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5966 + }, "metadata_dict": { "clothes": "space suit", "mouth": "bored party horn", @@ -70878,11 +88778,14 @@ "hat": "short mohawk", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5967 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "blue", @@ -70891,11 +88794,14 @@ "hat": "short mohawk", "eyes": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5968 + }, "metadata_dict": { "fur": "trippy", "earring": "diamond stud", @@ -70904,11 +88810,14 @@ "clothes": "biker vest", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5969 + }, "metadata_dict": { "hat": "horns", "clothes": "black t", @@ -70917,22 +88826,28 @@ "mouth": "phoneme wah", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5970 + }, "metadata_dict": { "background": "orange", "eyes": "bored", "hat": "girl's hair short", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5971 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "dumbfounded", @@ -70940,22 +88855,28 @@ "background": "orange", "eyes": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5972 + }, "metadata_dict": { "background": "new punk blue", "fur": "pink", "clothes": "admirals coat", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5973 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -70963,11 +88884,14 @@ "background": "aquamarine", "mouth": "bored pipe", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5974 + }, "metadata_dict": { "clothes": "bandolier", "fur": "pink", @@ -70975,11 +88899,14 @@ "mouth": "phoneme wah", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5975 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", @@ -70987,11 +88914,14 @@ "background": "gray", "clothes": "bone tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5976 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -71000,11 +88930,14 @@ "fur": "black", "hat": "vietnam era helmet", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5977 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "bandolier", @@ -71012,11 +88945,14 @@ "mouth": "bored party horn", "hat": "army hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5978 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -71024,11 +88960,14 @@ "hat": "seaman's hat", "background": "blue", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5979 + }, "metadata_dict": { "background": "new punk blue", "fur": "trippy", @@ -71036,21 +88975,27 @@ "clothes": "prison jumpsuit", "mouth": "dumbfounded", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5980 + }, "metadata_dict": { "background": "gray", "eyes": "closed", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5981 + }, "metadata_dict": { "mouth": "rage", "fur": "black", @@ -71058,11 +89003,14 @@ "eyes": "3d", "hat": "girl's hair short", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5982 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -71071,11 +89019,14 @@ "eyes": "blindfold", "clothes": "blue dress", "earring": "gold hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5983 + }, "metadata_dict": { "background": "new punk blue", "clothes": "space suit", @@ -71083,11 +89034,14 @@ "hat": "seaman's hat", "fur": "dark brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5984 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -71095,11 +89049,14 @@ "fur": "brown", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5985 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "jovial", @@ -71107,22 +89064,28 @@ "background": "army green", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5986 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", "fur": "golden brown", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5987 + }, "metadata_dict": { "hat": "horns", "mouth": "bored pipe", @@ -71130,11 +89093,14 @@ "fur": "dark brown", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5988 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", @@ -71142,11 +89108,14 @@ "mouth": "dumbfounded", "clothes": "biker vest", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5989 + }, "metadata_dict": { "eyes": "coins", "clothes": "prison jumpsuit", @@ -71154,11 +89123,14 @@ "hat": "fisherman's hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5990 + }, "metadata_dict": { "fur": "cream", "mouth": "grin diamond grill", @@ -71166,11 +89138,14 @@ "eyes": "sleepy", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5991 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored kazoo", @@ -71178,11 +89153,14 @@ "fur": "black", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5992 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "lumberjack shirt", @@ -71191,11 +89169,14 @@ "eyes": "bored", "background": "gray", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5993 + }, "metadata_dict": { "mouth": "rage", "background": "blue", @@ -71203,33 +89184,42 @@ "clothes": "smoking jacket", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5994 + }, "metadata_dict": { "fur": "tan", "eyes": "bored", "hat": "army hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5995 + }, "metadata_dict": { "eyes": "closed", "clothes": "lab coat", "mouth": "tongue out", "background": "purple", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5996 + }, "metadata_dict": { "mouth": "grin", "clothes": "smoking jacket", @@ -71237,11 +89227,14 @@ "background": "gray", "eyes": "sleepy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5997 + }, "metadata_dict": { "background": "new punk blue", "hat": "baby's bonnet", @@ -71249,11 +89242,14 @@ "clothes": "cowboy shirt", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5998 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", @@ -71262,11 +89258,14 @@ "earring": "gold stud", "fur": "pink", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 5999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 5999 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin", @@ -71274,11 +89273,14 @@ "eyes": "bored", "fur": "brown", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6000 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "blue", @@ -71286,11 +89288,14 @@ "fur": "robot", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6001 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -71298,33 +89303,42 @@ "mouth": "bored bubblegum", "eyes": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6002 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven bubblegum", "clothes": "leather jacket", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6003 + }, "metadata_dict": { "fur": "cream", "background": "orange", "mouth": "small grin", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6004 + }, "metadata_dict": { "fur": "golden brown", "mouth": "phoneme ooo", @@ -71332,11 +89346,14 @@ "clothes": "leather jacket", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6005 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -71344,11 +89361,14 @@ "fur": "noise", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6006 + }, "metadata_dict": { "earring": "silver stud", "fur": "dark brown", @@ -71356,11 +89376,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6007 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -71368,11 +89391,14 @@ "background": "aquamarine", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6008 + }, "metadata_dict": { "clothes": "tie dye", "earring": "silver hoop", @@ -71381,33 +89407,42 @@ "background": "yellow", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6009 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "dumbfounded", "background": "yellow", "eyes": "crazy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6010 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "horns", "background": "aquamarine", "fur": "black", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6011 + }, "metadata_dict": { "clothes": "space suit", "eyes": "zombie", @@ -71415,11 +89450,14 @@ "hat": "army hat", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6012 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather jacket", @@ -71427,33 +89465,42 @@ "hat": "cowboy hat", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6013 + }, "metadata_dict": { "background": "blue", "eyes": "bloodshot", "fur": "brown", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6014 + }, "metadata_dict": { "clothes": "tweed suit", "fur": "red", "eyes": "bored", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6015 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -71461,11 +89508,14 @@ "fur": "noise", "clothes": "bayc t black", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6016 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -71473,22 +89523,28 @@ "fur": "black", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6017 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "bandana blue", "fur": "brown", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6018 + }, "metadata_dict": { "clothes": "sleeveless logo t", "mouth": "dumbfounded", @@ -71496,11 +89552,14 @@ "fur": "black", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6019 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven pipe", @@ -71508,11 +89567,14 @@ "hat": "cowboy hat", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6020 + }, "metadata_dict": { "mouth": "discomfort", "background": "aquamarine", @@ -71521,11 +89583,14 @@ "eyes": "bored", "hat": "beanie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6021 + }, "metadata_dict": { "hat": "baby's bonnet", "clothes": "work vest", @@ -71533,21 +89598,27 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6022 + }, "metadata_dict": { "fur": "brown", "eyes": "laser eyes", "mouth": "bored unshaven", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6023 + }, "metadata_dict": { "clothes": "space suit", "mouth": "bored unshaven bubblegum", @@ -71556,11 +89627,14 @@ "hat": "vietnam era helmet", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6024 + }, "metadata_dict": { "clothes": "black t", "mouth": "grin diamond grill", @@ -71568,11 +89642,14 @@ "fur": "pink", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6025 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "party hat 1", @@ -71580,11 +89657,14 @@ "eyes": "bored", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6026 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "fez", @@ -71592,11 +89672,14 @@ "fur": "black", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6027 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", @@ -71605,21 +89688,27 @@ "eyes": "zombie", "background": "orange", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6028 + }, "metadata_dict": { "background": "gray", "fur": "black", "mouth": "bored bubblegum", "eyes": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6029 + }, "metadata_dict": { "background": "new punk blue", "clothes": "blue dress", @@ -71627,11 +89716,14 @@ "fur": "dark brown", "hat": "fisherman's hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6030 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "laurel wreath", @@ -71639,11 +89731,14 @@ "background": "aquamarine", "fur": "black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6031 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -71652,11 +89747,14 @@ "mouth": "bored unshaven cigarette", "clothes": "stunt jacket", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6032 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -71665,22 +89763,28 @@ "earring": "silver stud", "clothes": "leather jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6033 + }, "metadata_dict": { "eyes": "x eyes", "background": "blue", "fur": "black", "hat": "commie hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6034 + }, "metadata_dict": { "mouth": "grin", "clothes": "tweed suit", @@ -71688,11 +89792,14 @@ "eyes": "blue beams", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6035 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "seaman's hat", @@ -71700,11 +89807,14 @@ "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6036 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -71712,11 +89822,14 @@ "hat": "spinner hat", "fur": "dark brown", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6037 + }, "metadata_dict": { "fur": "cream", "background": "blue", @@ -71724,11 +89837,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6038 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -71736,11 +89852,14 @@ "hat": "commie hat", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6039 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -71748,22 +89867,28 @@ "eyes": "bored", "background": "gray", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6040 + }, "metadata_dict": { "hat": "commie hat", "fur": "cheetah", "background": "yellow", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6041 + }, "metadata_dict": { "hat": "fez", "background": "orange", @@ -71771,11 +89896,14 @@ "fur": "cheetah", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6042 + }, "metadata_dict": { "eyes": "heart", "hat": "baby's bonnet", @@ -71783,11 +89911,14 @@ "clothes": "sleeveless logo t", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6043 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "bored", @@ -71795,33 +89926,42 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6044 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", "fur": "dark brown", "clothes": "tuxedo tee", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6045 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", "mouth": "jovial", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6046 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -71829,11 +89969,14 @@ "clothes": "black t", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6047 + }, "metadata_dict": { "fur": "gray", "mouth": "grin diamond grill", @@ -71841,22 +89984,28 @@ "eyes": "bloodshot", "earring": "silver hoop", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6048 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "x eyes", "fur": "golden brown", "background": "yellow", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6049 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -71864,33 +90013,42 @@ "fur": "black", "earring": "cross", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6050 + }, "metadata_dict": { "mouth": "phoneme l", "background": "aquamarine", "hat": "cowboy hat", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6051 + }, "metadata_dict": { "fur": "cream", "hat": "cowboy hat", "eyes": "bored", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6052 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "lab coat", @@ -71898,11 +90056,14 @@ "hat": "vietnam era helmet", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6053 + }, "metadata_dict": { "eyes": "closed", "hat": "laurel wreath", @@ -71911,11 +90072,14 @@ "earring": "silver stud", "fur": "red", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6054 + }, "metadata_dict": { "eyes": "heart", "hat": "seaman's hat", @@ -71924,11 +90088,14 @@ "clothes": "lab coat", "background": "yellow", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6055 + }, "metadata_dict": { "fur": "tan", "eyes": "bloodshot", @@ -71937,44 +90104,56 @@ "clothes": "guayabera", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6056 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "zombie", "background": "orange", "fur": "dark brown", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6057 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", "fur": "dark brown", "eyes": "bored", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6058 + }, "metadata_dict": { "fur": "gray", "hat": "bayc flipped brim", "eyes": "sleepy", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6059 + }, "metadata_dict": { "earring": "diamond stud", "background": "blue", @@ -71983,11 +90162,14 @@ "hat": "faux hawk", "mouth": "bored unshaven cigarette", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6060 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "cowboy shirt", @@ -71995,11 +90177,14 @@ "fur": "dark brown", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6061 + }, "metadata_dict": { "background": "new punk blue", "earring": "diamond stud", @@ -72008,33 +90193,42 @@ "mouth": "bored party horn", "eyes": "bored", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6062 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", "eyes": "angry", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6063 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", "eyes": "bored", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6064 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cheetah", @@ -72042,22 +90236,28 @@ "mouth": "bored unshaven cigarette", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6065 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme l", "fur": "tan", "clothes": "leather punk jacket", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6066 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -72065,11 +90265,14 @@ "hat": "bunny ears", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6067 + }, "metadata_dict": { "eyes": "heart", "hat": "s&m hat", @@ -72077,11 +90280,14 @@ "fur": "black", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6068 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -72089,22 +90295,28 @@ "hat": "army hat", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6069 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "eyes": "bored", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6070 + }, "metadata_dict": { "fur": "dmt", "hat": "girl's hair pink", @@ -72112,11 +90324,14 @@ "eyes": "bored", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6071 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -72125,11 +90340,14 @@ "fur": "dark brown", "clothes": "admirals coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6072 + }, "metadata_dict": { "clothes": "bandolier", "background": "blue", @@ -72137,11 +90355,14 @@ "eyes": "bored", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6073 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", @@ -72149,11 +90370,14 @@ "hat": "fisherman's hat", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6074 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored cigarette", @@ -72161,22 +90385,28 @@ "hat": "fisherman's hat", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6075 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "earring": "gold stud", "mouth": "phoneme wah", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6076 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -72184,11 +90414,14 @@ "hat": "bunny ears", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6077 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme vuh", @@ -72196,11 +90429,14 @@ "clothes": "tie dye", "hat": "faux hawk", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6078 + }, "metadata_dict": { "fur": "cream", "hat": "irish boho", @@ -72208,22 +90444,28 @@ "eyes": "robot", "background": "blue", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6079 + }, "metadata_dict": { "background": "blue", "clothes": "biker vest", "eyes": "bloodshot", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6080 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "golden brown", @@ -72232,11 +90474,14 @@ "background": "blue", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6081 + }, "metadata_dict": { "mouth": "bored bubblegum", "clothes": "tuxedo tee", @@ -72244,11 +90489,14 @@ "background": "purple", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6082 + }, "metadata_dict": { "clothes": "tweed suit", "background": "orange", @@ -72256,33 +90504,42 @@ "mouth": "bored", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6083 + }, "metadata_dict": { "fur": "trippy", "mouth": "bored unshaven pipe", "eyes": "robot", "clothes": "lab coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6084 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", "earring": "gold stud", "mouth": "tongue out", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6085 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "bayc t black", @@ -72290,11 +90547,14 @@ "eyes": "bored", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6086 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "wool turtleneck", @@ -72302,11 +90562,14 @@ "fur": "dark brown", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6087 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "laurel wreath", @@ -72314,22 +90577,28 @@ "eyes": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6088 + }, "metadata_dict": { "earring": "silver hoop", "background": "purple", "mouth": "bored", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6089 + }, "metadata_dict": { "background": "new punk blue", "fur": "blue", @@ -72338,22 +90607,28 @@ "hat": "bunny ears", "eyes": "sunglasses", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6090 + }, "metadata_dict": { "earring": "silver stud", "background": "aquamarine", "fur": "noise", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6091 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -72361,11 +90636,14 @@ "hat": "girl's hair short", "fur": "brown", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6092 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -72373,11 +90651,14 @@ "hat": "faux hawk", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6093 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -72385,11 +90666,14 @@ "clothes": "tweed suit", "hat": "safari", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6094 + }, "metadata_dict": { "hat": "laurel wreath", "earring": "silver stud", @@ -72398,11 +90682,14 @@ "background": "purple", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6095 + }, "metadata_dict": { "background": "aquamarine", "earring": "gold stud", @@ -72410,11 +90697,14 @@ "clothes": "bone necklace", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6096 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", @@ -72423,11 +90713,14 @@ "mouth": "bored unshaven cigarette", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6097 + }, "metadata_dict": { "eyes": "heart", "clothes": "bayc t red", @@ -72435,11 +90728,14 @@ "hat": "fez", "mouth": "bored pipe", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6098 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "tan", @@ -72447,11 +90743,14 @@ "background": "gray", "hat": "commie hat", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6099 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored kazoo", @@ -72459,33 +90758,42 @@ "fur": "golden brown", "hat": "girl's hair pink", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6100 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "cream", "background": "orange", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6101 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "rainbow suspenders", "eyes": "bored", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6102 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", @@ -72493,11 +90801,14 @@ "mouth": "bored", "earring": "cross", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6103 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "king's crown", @@ -72505,22 +90816,28 @@ "fur": "black", "background": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6104 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", "fur": "black", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6105 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin multicolored", @@ -72528,11 +90845,14 @@ "eyes": "bored", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6106 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -72540,11 +90860,14 @@ "hat": "beanie", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6107 + }, "metadata_dict": { "eyes": "zombie", "hat": "fez", @@ -72552,11 +90875,14 @@ "fur": "brown", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6108 + }, "metadata_dict": { "hat": "fez", "fur": "dark brown", @@ -72564,11 +90890,14 @@ "clothes": "guayabera", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6109 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -72577,43 +90906,55 @@ "hat": "bowler", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6110 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "mouth": "bored unshaven cigar", "background": "gray", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6111 + }, "metadata_dict": { "background": "gray", "mouth": "bored cigarette", "fur": "cream", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6112 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "dark brown", "background": "yellow", "clothes": "caveman pelt", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6113 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "gold hoop", @@ -72622,11 +90963,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6114 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -72634,22 +90978,28 @@ "mouth": "bored unshaven cigar", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6115 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", "eyes": "bored", "hat": "girl's hair short", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6116 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -72657,11 +91007,14 @@ "hat": "fisherman's hat", "fur": "black", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6117 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -72669,11 +91022,14 @@ "background": "blue", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6118 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "party hat 1", @@ -72681,22 +91037,28 @@ "fur": "pink", "eyes": "angry", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6119 + }, "metadata_dict": { "eyes": "heart", "fur": "black", "clothes": "guayabera", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6120 + }, "metadata_dict": { "eyes": "closed", "fur": "brown", @@ -72704,33 +91066,42 @@ "clothes": "pimp coat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6121 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "blindfold", "hat": "irish boho", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6122 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "fur": "dark brown", "hat": "fisherman's hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6123 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", @@ -72738,11 +91109,14 @@ "clothes": "biker vest", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6124 + }, "metadata_dict": { "background": "aquamarine", "clothes": "leather jacket", @@ -72750,22 +91124,28 @@ "mouth": "bored cigarette", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6125 + }, "metadata_dict": { "fur": "cream", "mouth": "rage", "clothes": "cowboy shirt", "background": "blue", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6126 + }, "metadata_dict": { "eyes": "heart", "hat": "short mohawk", @@ -72773,11 +91153,14 @@ "mouth": "bored", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6127 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -72786,11 +91169,14 @@ "eyes": "crazy", "hat": "commie hat", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6128 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -72798,11 +91184,14 @@ "mouth": "bored unshaven party horn", "earring": "gold stud", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6129 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -72810,11 +91199,14 @@ "background": "gray", "hat": "halo", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6130 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "aquamarine", @@ -72822,22 +91214,28 @@ "hat": "ww2 pilot helm", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6131 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "fur": "brown", "hat": "bayc hat red", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6132 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored party horn", @@ -72845,11 +91243,14 @@ "eyes": "3d", "fur": "pink", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6133 + }, "metadata_dict": { "mouth": "phoneme vuh", "clothes": "smoking jacket", @@ -72857,11 +91258,14 @@ "background": "gray", "hat": "bayc hat red", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6134 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "red", @@ -72869,11 +91273,14 @@ "mouth": "tongue out", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6135 + }, "metadata_dict": { "background": "blue", "clothes": "biker vest", @@ -72881,22 +91288,28 @@ "mouth": "bored", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6136 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bloodshot", "mouth": "bored unshaven cigar", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6137 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme vuh", @@ -72904,22 +91317,28 @@ "eyes": "bloodshot", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6138 + }, "metadata_dict": { "clothes": "work vest", "background": "aquamarine", "fur": "dark brown", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6139 + }, "metadata_dict": { "mouth": "discomfort", "hat": "baby's bonnet", @@ -72927,22 +91346,28 @@ "fur": "pink", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6140 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "fur": "noise", "eyes": "bloodshot", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6141 + }, "metadata_dict": { "eyes": "blindfold", "hat": "ww2 pilot helm", @@ -72950,11 +91375,14 @@ "background": "purple", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6142 + }, "metadata_dict": { "eyes": "x eyes", "hat": "party hat 2", @@ -72962,11 +91390,14 @@ "fur": "black", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6143 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -72974,11 +91405,14 @@ "background": "orange", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6144 + }, "metadata_dict": { "hat": "bandana blue", "background": "blue", @@ -72987,11 +91421,14 @@ "mouth": "small grin", "earring": "silver hoop", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6145 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -72999,11 +91436,14 @@ "clothes": "bone necklace", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6146 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "fur": "red", @@ -73012,22 +91452,28 @@ "eyes": "bloodshot", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6147 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "striped tee", "fur": "brown", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6148 + }, "metadata_dict": { "eyes": "coins", "mouth": "rage", @@ -73035,22 +91481,28 @@ "earring": "silver hoop", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6149 + }, "metadata_dict": { "eyes": "eyepatch", "background": "orange", "hat": "bunny ears", "fur": "death bot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6150 + }, "metadata_dict": { "fur": "dark brown", "hat": "bayc flipped brim", @@ -73058,11 +91510,14 @@ "mouth": "bored", "eyes": "angry", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6151 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -73070,11 +91525,14 @@ "hat": "army hat", "fur": "death bot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6152 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -73082,11 +91540,14 @@ "hat": "bayc hat red", "clothes": "stunt jacket", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6153 + }, "metadata_dict": { "mouth": "discomfort", "fur": "dark brown", @@ -73094,22 +91555,28 @@ "hat": "army hat", "clothes": "pimp coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6154 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "stuntman helmet", "background": "orange", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6155 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "dmt", @@ -73117,11 +91584,14 @@ "background": "blue", "eyes": "3d", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6156 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -73129,11 +91599,14 @@ "mouth": "small grin", "background": "gray", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6157 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -73142,11 +91615,14 @@ "earring": "silver hoop", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6158 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -73154,21 +91630,27 @@ "hat": "fez", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6159 + }, "metadata_dict": { "fur": "tan", "background": "orange", "eyes": "bloodshot", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6160 + }, "metadata_dict": { "fur": "dmt", "clothes": "sailor shirt", @@ -73177,22 +91659,28 @@ "hat": "fisherman's hat", "eyes": "sleepy", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6161 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme ooo", "background": "blue", "fur": "dark brown", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6162 + }, "metadata_dict": { "eyes": "closed", "hat": "girl's hair pink", @@ -73200,11 +91688,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6163 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -73213,11 +91704,14 @@ "hat": "fisherman's hat", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6164 + }, "metadata_dict": { "fur": "cheetah", "earring": "gold stud", @@ -73226,11 +91720,14 @@ "background": "gray", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6165 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -73238,22 +91735,28 @@ "hat": "girl's hair short", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6166 + }, "metadata_dict": { "clothes": "leather jacket", "eyes": "robot", "fur": "dark brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6167 + }, "metadata_dict": { "hat": "prussian helmet", "clothes": "prison jumpsuit", @@ -73262,11 +91765,14 @@ "mouth": "small grin", "earring": "silver hoop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6168 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless t", @@ -73275,11 +91781,14 @@ "hat": "short mohawk", "mouth": "small grin", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6169 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "baby's bonnet", @@ -73287,22 +91796,28 @@ "fur": "red", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6170 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", "eyes": "3d", "background": "orange", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6171 + }, "metadata_dict": { "eyes": "closed", "clothes": "kings robe", @@ -73310,11 +91825,14 @@ "background": "blue", "mouth": "bored bubblegum", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6172 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "eyes": "bloodshot", @@ -73322,11 +91840,14 @@ "background": "yellow", "fur": "death bot", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6173 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "horns", @@ -73335,11 +91856,14 @@ "background": "orange", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6174 + }, "metadata_dict": { "eyes": "x eyes", "hat": "halo", @@ -73347,11 +91871,14 @@ "mouth": "bored", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6175 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", @@ -73360,11 +91887,14 @@ "hat": "fez", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6176 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "leather punk jacket", @@ -73372,22 +91902,28 @@ "eyes": "3d", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6177 + }, "metadata_dict": { "fur": "cream", "mouth": "dumbfounded", "background": "yellow", "hat": "safari", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6178 + }, "metadata_dict": { "fur": "tan", "hat": "party hat 1", @@ -73396,11 +91932,14 @@ "mouth": "bored cigarette", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6179 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -73408,22 +91947,28 @@ "clothes": "work vest", "mouth": "tongue out", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6180 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", "background": "aquamarine", "clothes": "tanktop", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6181 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -73431,21 +91976,27 @@ "eyes": "bloodshot", "hat": "girl's hair short", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6182 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "background": "yellow", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6183 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "black holes t", @@ -73453,54 +92004,69 @@ "hat": "spinner hat", "mouth": "bored cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6184 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", "eyes": "sleepy", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6185 + }, "metadata_dict": { "fur": "cream", "background": "orange", "mouth": "bored unshaven cigar", "hat": "bowler", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6186 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "fur": "brown", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6187 + }, "metadata_dict": { "eyes": "closed", "hat": "fez", "mouth": "jovial", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6188 + }, "metadata_dict": { "eyes": "scumbag", "hat": "irish boho", @@ -73508,11 +92074,14 @@ "background": "aquamarine", "mouth": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6189 + }, "metadata_dict": { "hat": "horns", "eyes": "hypnotized", @@ -73520,11 +92089,14 @@ "clothes": "tie dye", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6190 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", @@ -73532,11 +92104,14 @@ "background": "blue", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6191 + }, "metadata_dict": { "background": "blue", "clothes": "leather jacket", @@ -73545,11 +92120,14 @@ "mouth": "bored unshaven cigar", "fur": "cheetah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6192 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "black", @@ -73557,11 +92135,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6193 + }, "metadata_dict": { "fur": "gray", "earring": "gold hoop", @@ -73569,11 +92150,14 @@ "background": "yellow", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6194 + }, "metadata_dict": { "eyes": "scumbag", "fur": "gray", @@ -73581,22 +92165,28 @@ "mouth": "grin diamond grill", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6195 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "background": "purple", "fur": "cheetah", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6196 + }, "metadata_dict": { "fur": "cream", "mouth": "jovial", @@ -73604,11 +92194,14 @@ "hat": "beanie", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6197 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", @@ -73616,11 +92209,14 @@ "mouth": "dumbfounded", "clothes": "pimp coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6198 + }, "metadata_dict": { "fur": "golden brown", "clothes": "rainbow suspenders", @@ -73628,11 +92224,14 @@ "eyes": "bored", "hat": "cowboy hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6199 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin", @@ -73641,11 +92240,14 @@ "hat": "fisherman's hat", "clothes": "caveman pelt", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6200 + }, "metadata_dict": { "fur": "tan", "background": "blue", @@ -73653,11 +92255,14 @@ "mouth": "bored cigarette", "clothes": "bone tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6201 + }, "metadata_dict": { "eyes": "heart", "mouth": "jovial", @@ -73665,22 +92270,28 @@ "hat": "bowler", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6202 + }, "metadata_dict": { "background": "new punk blue", "eyes": "sunglasses", "mouth": "phoneme vuh", "clothes": "tanktop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6203 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "blue", @@ -73688,22 +92299,28 @@ "mouth": "bored", "hat": "police motorcycle helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6204 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "lumberjack shirt", "background": "blue", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6205 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "s&m hat", @@ -73711,22 +92328,28 @@ "background": "blue", "fur": "cheetah", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6206 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "zombie", "background": "orange", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6207 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored bubblegum", @@ -73734,11 +92357,14 @@ "eyes": "blue beams", "hat": "bunny ears", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6208 + }, "metadata_dict": { "hat": "horns", "mouth": "grin multicolored", @@ -73747,11 +92373,14 @@ "clothes": "tweed suit", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6209 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "wool turtleneck", @@ -73759,11 +92388,14 @@ "background": "aquamarine", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6210 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "black holes t", @@ -73771,11 +92403,14 @@ "hat": "seaman's hat", "background": "blue", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6211 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "sushi chef headband", @@ -73783,11 +92418,14 @@ "background": "aquamarine", "fur": "black", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6212 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored unshaven pipe", @@ -73795,22 +92433,28 @@ "clothes": "bayc t black", "fur": "brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6213 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "hat": "irish boho", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6214 + }, "metadata_dict": { "fur": "golden brown", "background": "yellow", @@ -73818,11 +92462,14 @@ "hat": "bowler", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6215 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -73831,11 +92478,14 @@ "fur": "dark brown", "hat": "army hat", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6216 + }, "metadata_dict": { "eyes": "heart", "clothes": "leather jacket", @@ -73843,55 +92493,70 @@ "fur": "dark brown", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6217 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", "mouth": "phoneme vuh", "fur": "dark brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6218 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", "fur": "dark brown", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6219 + }, "metadata_dict": { "earring": "gold hoop", "eyes": "coins", "mouth": "phoneme vuh", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6220 + }, "metadata_dict": { "background": "new punk blue", "hat": "bandana blue", "mouth": "dumbfounded", "eyes": "robot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6221 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "rage", @@ -73900,11 +92565,14 @@ "hat": "cowboy hat", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6222 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", @@ -73912,11 +92580,14 @@ "clothes": "cowboy shirt", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6223 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "horns", @@ -73924,22 +92595,28 @@ "background": "aquamarine", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6224 + }, "metadata_dict": { "fur": "red", "background": "orange", "eyes": "bloodshot", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6225 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", @@ -73947,11 +92624,14 @@ "hat": "army hat", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6226 + }, "metadata_dict": { "background": "blue", "clothes": "smoking jacket", @@ -73960,11 +92640,14 @@ "mouth": "bored", "eyes": "bored", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6227 + }, "metadata_dict": { "eyes": "closed", "hat": "spinner hat", @@ -73972,22 +92655,28 @@ "clothes": "sleeveless logo t", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6228 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", "background": "blue", "fur": "dark brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6229 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "dark brown", @@ -73995,11 +92684,14 @@ "mouth": "bored", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6230 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "heart", @@ -74007,11 +92699,14 @@ "fur": "red", "background": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6231 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "tweed suit", @@ -74020,22 +92715,28 @@ "mouth": "bored cigarette", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6232 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "eyes": "blue beams", "background": "gray", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6233 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -74043,22 +92744,28 @@ "hat": "ww2 pilot helm", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6234 + }, "metadata_dict": { "clothes": "bandolier", "fur": "red", "background": "blue", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6235 + }, "metadata_dict": { "mouth": "grin", "fur": "brown", @@ -74066,11 +92773,14 @@ "hat": "fez", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6236 + }, "metadata_dict": { "hat": "horns", "fur": "gray", @@ -74079,11 +92789,14 @@ "earring": "silver hoop", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6237 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "blue dress", @@ -74091,11 +92804,14 @@ "background": "orange", "eyes": "3d", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6238 + }, "metadata_dict": { "hat": "spinner hat", "clothes": "tuxedo tee", @@ -74103,33 +92819,42 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6239 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven cigarette", "background": "blue", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6240 + }, "metadata_dict": { "background": "new punk blue", "fur": "pink", "clothes": "toga", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6241 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -74137,11 +92862,14 @@ "fur": "brown", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6242 + }, "metadata_dict": { "fur": "black", "background": "orange", @@ -74149,11 +92877,14 @@ "eyes": "bored", "hat": "bowler", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6243 + }, "metadata_dict": { "fur": "tan", "hat": "sea captain's hat", @@ -74161,11 +92892,14 @@ "background": "blue", "earring": "cross", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6244 + }, "metadata_dict": { "hat": "halo", "fur": "brown", @@ -74174,11 +92908,14 @@ "eyes": "bored", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6245 + }, "metadata_dict": { "clothes": "black t", "mouth": "bored unshaven pipe", @@ -74187,11 +92924,14 @@ "background": "purple", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6246 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "brown", @@ -74199,33 +92939,42 @@ "hat": "ww2 pilot helm", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6247 + }, "metadata_dict": { "eyes": "3d", "fur": "dark brown", "mouth": "bored unshaven cigarette", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6248 + }, "metadata_dict": { "fur": "cream", "eyes": "bloodshot", "clothes": "tanktop", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6249 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "striped tee", @@ -74234,11 +92983,14 @@ "mouth": "grin diamond grill", "background": "orange", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6250 + }, "metadata_dict": { "fur": "cream", "earring": "gold stud", @@ -74247,11 +92999,14 @@ "eyes": "bored", "clothes": "lab coat", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6251 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -74259,22 +93014,28 @@ "clothes": "tuxedo tee", "hat": "ww2 pilot helm", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6252 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "dmt", "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6253 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -74283,22 +93044,28 @@ "clothes": "work vest", "hat": "short mohawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6254 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "3d", "fur": "dark brown", "clothes": "sleeveless logo t", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6255 + }, "metadata_dict": { "fur": "cream", "earring": "diamond stud", @@ -74307,11 +93074,14 @@ "eyes": "3d", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6256 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", @@ -74320,11 +93090,14 @@ "background": "blue", "hat": "girl's hair short", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6257 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -74332,11 +93105,14 @@ "background": "blue", "fur": "cheetah", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6258 + }, "metadata_dict": { "mouth": "jovial", "earring": "gold stud", @@ -74345,22 +93121,28 @@ "fur": "brown", "clothes": "guayabera", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6259 + }, "metadata_dict": { "fur": "tan", "clothes": "space suit", "mouth": "bored party horn", "background": "aquamarine", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6260 + }, "metadata_dict": { "fur": "cream", "background": "orange", @@ -74368,11 +93150,14 @@ "hat": "ww2 pilot helm", "clothes": "sleeveless logo t", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6261 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven bubblegum", @@ -74380,11 +93165,14 @@ "background": "yellow", "hat": "bunny ears", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6262 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "zombie", @@ -74392,11 +93180,14 @@ "mouth": "bored cigarette", "clothes": "caveman pelt", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6263 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -74405,32 +93196,41 @@ "background": "aquamarine", "earring": "gold stud", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6264 + }, "metadata_dict": { "fur": "black", "mouth": "tongue out", "clothes": "admirals coat", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6265 + }, "metadata_dict": { "fur": "cheetah", "background": "gray", "mouth": "bored unshaven", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6266 + }, "metadata_dict": { "mouth": "bored dagger", "background": "aquamarine", @@ -74438,22 +93238,28 @@ "hat": "bayc flipped brim", "eyes": "bored", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6267 + }, "metadata_dict": { "fur": "trippy", "background": "blue", "hat": "safari", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6268 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "cream", @@ -74461,22 +93267,28 @@ "background": "gray", "clothes": "prom dress", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6269 + }, "metadata_dict": { "clothes": "caveman pelt", "eyes": "blue beams", "fur": "death bot", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6270 + }, "metadata_dict": { "eyes": "heart", "clothes": "blue dress", @@ -74485,22 +93297,28 @@ "fur": "cheetah", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6271 + }, "metadata_dict": { "clothes": "toga", "eyes": "bloodshot", "fur": "death bot", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6272 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -74508,22 +93326,28 @@ "clothes": "leather jacket", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6273 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", "fur": "golden brown", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6274 + }, "metadata_dict": { "eyes": "sad", "fur": "dark brown", @@ -74531,22 +93355,28 @@ "background": "yellow", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6275 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "clothes": "black suit", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6276 + }, "metadata_dict": { "hat": "girl's hair pink", "background": "orange", @@ -74554,11 +93384,14 @@ "fur": "dark brown", "clothes": "smoking jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6277 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme ooo", @@ -74567,22 +93400,28 @@ "hat": "beanie", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6278 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", "fur": "black", "mouth": "small grin", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6279 + }, "metadata_dict": { "mouth": "bored dagger", "background": "blue", @@ -74590,11 +93429,14 @@ "clothes": "tie dye", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6280 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -74602,11 +93444,14 @@ "fur": "red", "hat": "girl's hair short", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6281 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -74614,11 +93459,14 @@ "hat": "sushi chef headband", "background": "blue", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6282 + }, "metadata_dict": { "background": "new punk blue", "hat": "prussian helmet", @@ -74626,11 +93474,14 @@ "mouth": "jovial", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6283 + }, "metadata_dict": { "eyes": "closed", "clothes": "lumberjack shirt", @@ -74639,22 +93490,28 @@ "background": "orange", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6284 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "zombie", "background": "aquamarine", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6285 + }, "metadata_dict": { "eyes": "angry", "clothes": "tweed suit", @@ -74662,11 +93519,14 @@ "background": "yellow", "fur": "white", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6286 + }, "metadata_dict": { "earring": "gold stud", "fur": "dark brown", @@ -74675,11 +93535,14 @@ "clothes": "guayabera", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6287 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "jovial", @@ -74687,22 +93550,28 @@ "fur": "dark brown", "hat": "vietnam era helmet", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6288 + }, "metadata_dict": { "fur": "cream", "mouth": "phoneme vuh", "hat": "fisherman's hat", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6289 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -74710,11 +93579,14 @@ "fur": "noise", "hat": "fisherman's hat", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6290 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored party horn", @@ -74722,11 +93594,14 @@ "eyes": "bored", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6291 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "3d", @@ -74734,22 +93609,28 @@ "mouth": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6292 + }, "metadata_dict": { "background": "aquamarine", "eyes": "3d", "mouth": "bored", "fur": "robot", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6293 + }, "metadata_dict": { "clothes": "caveman pelt", "earring": "silver hoop", @@ -74758,11 +93639,14 @@ "eyes": "sleepy", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6294 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -74770,11 +93654,14 @@ "clothes": "work vest", "hat": "vietnam era helmet", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6295 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "cowboy hat", @@ -74782,22 +93669,28 @@ "clothes": "stunt jacket", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6296 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "eyes": "robot", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6297 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -74805,22 +93698,28 @@ "background": "yellow", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6298 + }, "metadata_dict": { "clothes": "bone tee", "background": "blue", "eyes": "crazy", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6299 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -74828,11 +93727,14 @@ "fur": "death bot", "hat": "commie hat", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6300 + }, "metadata_dict": { "hat": "baby's bonnet", "mouth": "bored unshaven cigarette", @@ -74840,11 +93742,14 @@ "fur": "dark brown", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6301 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "trippy", @@ -74852,11 +93757,14 @@ "background": "aquamarine", "clothes": "tanktop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6302 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -74864,11 +93772,14 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6303 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -74876,11 +93787,14 @@ "background": "orange", "clothes": "sleeveless logo t", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6304 + }, "metadata_dict": { "eyes": "x eyes", "fur": "dmt", @@ -74889,11 +93803,14 @@ "hat": "army hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6305 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", @@ -74901,11 +93818,14 @@ "eyes": "bored", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6306 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "hypnotized", @@ -74914,11 +93834,14 @@ "background": "orange", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6307 + }, "metadata_dict": { "background": "blue", "mouth": "small grin", @@ -74926,11 +93849,14 @@ "fur": "cheetah", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6308 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", @@ -74938,11 +93864,14 @@ "background": "yellow", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6309 + }, "metadata_dict": { "fur": "tan", "clothes": "sailor shirt", @@ -74950,11 +93879,14 @@ "eyes": "bored", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6310 + }, "metadata_dict": { "background": "blue", "hat": "spinner hat", @@ -74962,11 +93894,14 @@ "eyes": "bored", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6311 + }, "metadata_dict": { "fur": "tan", "background": "yellow", @@ -74974,22 +93909,28 @@ "hat": "ww2 pilot helm", "clothes": "bone necklace", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6312 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", "background": "aquamarine", "mouth": "bored bubblegum", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6313 + }, "metadata_dict": { "earring": "gold hoop", "fur": "pink", @@ -74997,11 +93938,14 @@ "mouth": "bored", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6314 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "dark brown", @@ -75009,11 +93953,14 @@ "hat": "fisherman's hat", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6315 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "trippy", @@ -75021,11 +93968,14 @@ "clothes": "guayabera", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6316 + }, "metadata_dict": { "eyes": "heart", "fur": "black", @@ -75033,22 +93983,28 @@ "hat": "army hat", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6317 + }, "metadata_dict": { "mouth": "grin", "background": "blue", "fur": "black", "eyes": "bloodshot", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6318 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "closed", @@ -75057,11 +94013,14 @@ "fur": "dark brown", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6319 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "gray", @@ -75069,22 +94028,28 @@ "eyes": "bored", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6320 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", "hat": "s&m hat", "background": "blue", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6321 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -75092,11 +94057,14 @@ "eyes": "bored", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6322 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", @@ -75104,11 +94072,14 @@ "clothes": "tanktop", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6323 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", @@ -75116,11 +94087,14 @@ "clothes": "black holes t", "background": "blue", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6324 + }, "metadata_dict": { "clothes": "black holes t", "fur": "zombie", @@ -75128,11 +94102,14 @@ "hat": "spinner hat", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6325 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "discomfort", @@ -75140,11 +94117,14 @@ "clothes": "biker vest", "hat": "short mohawk", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6326 + }, "metadata_dict": { "background": "purple", "clothes": "smoking jacket", @@ -75152,32 +94132,41 @@ "eyes": "sleepy", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6327 + }, "metadata_dict": { "fur": "red", "eyes": "sleepy", "mouth": "bored unshaven", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6328 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "hat": "s&m hat", "background": "aquamarine", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6329 + }, "metadata_dict": { "hat": "prussian helmet", "mouth": "phoneme vuh", @@ -75185,11 +94174,14 @@ "clothes": "biker vest", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6330 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "seaman's hat", @@ -75198,11 +94190,14 @@ "background": "purple", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6331 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -75210,22 +94205,28 @@ "eyes": "bloodshot", "fur": "dark brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6332 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "cowboy hat", "background": "yellow", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6333 + }, "metadata_dict": { "hat": "irish boho", "background": "orange", @@ -75234,11 +94235,14 @@ "clothes": "lab coat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6334 + }, "metadata_dict": { "eyes": "zombie", "background": "blue", @@ -75246,11 +94250,14 @@ "earring": "silver hoop", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6335 + }, "metadata_dict": { "eyes": "blindfold", "hat": "seaman's hat", @@ -75258,11 +94265,14 @@ "clothes": "toga", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6336 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", @@ -75270,11 +94280,14 @@ "eyes": "bored", "fur": "brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6337 + }, "metadata_dict": { "fur": "gray", "hat": "ww2 pilot helm", @@ -75282,11 +94295,14 @@ "background": "purple", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6338 + }, "metadata_dict": { "fur": "brown", "clothes": "prison jumpsuit", @@ -75294,11 +94310,14 @@ "mouth": "bored unshaven cigarette", "hat": "bowler", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6339 + }, "metadata_dict": { "mouth": "grin", "hat": "prussian helmet", @@ -75307,22 +94326,28 @@ "eyes": "3d", "fur": "noise", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6340 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "background": "aquamarine", "clothes": "tanktop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6341 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", @@ -75330,11 +94355,14 @@ "fur": "dark brown", "mouth": "small grin", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6342 + }, "metadata_dict": { "earring": "gold stud", "background": "orange", @@ -75342,11 +94370,14 @@ "mouth": "small grin", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6343 + }, "metadata_dict": { "fur": "dark brown", "hat": "commie hat", @@ -75354,11 +94385,14 @@ "clothes": "bone necklace", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6344 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -75366,11 +94400,14 @@ "hat": "stuntman helmet", "mouth": "phoneme vuh", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6345 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "sleepy", @@ -75378,11 +94415,14 @@ "background": "purple", "clothes": "bone tee", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6346 + }, "metadata_dict": { "eyes": "closed", "clothes": "sailor shirt", @@ -75390,11 +94430,14 @@ "hat": "ww2 pilot helm", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6347 + }, "metadata_dict": { "clothes": "striped tee", "earring": "diamond stud", @@ -75402,22 +94445,28 @@ "fur": "dark brown", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6348 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", "eyes": "bloodshot", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6349 + }, "metadata_dict": { "mouth": "bored dagger", "eyes": "hypnotized", @@ -75425,11 +94474,14 @@ "fur": "pink", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6350 + }, "metadata_dict": { "clothes": "striped tee", "hat": "seaman's hat", @@ -75437,11 +94489,14 @@ "fur": "dark brown", "mouth": "phoneme wah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6351 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -75449,11 +94504,14 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6352 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "tongue out", @@ -75461,22 +94519,28 @@ "eyes": "bloodshot", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6353 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", "earring": "silver stud", "mouth": "phoneme wah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6354 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -75484,55 +94548,70 @@ "eyes": "bloodshot", "fur": "white", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6355 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "cream", "eyes": "bloodshot", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6356 + }, "metadata_dict": { "fur": "tan", "clothes": "work vest", "eyes": "robot", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6357 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", "fur": "pink", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6358 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "coins", "fur": "dark brown", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6359 + }, "metadata_dict": { "hat": "s&m hat", "earring": "gold hoop", @@ -75541,11 +94620,14 @@ "clothes": "tanktop", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6360 + }, "metadata_dict": { "fur": "cream", "clothes": "prison jumpsuit", @@ -75553,11 +94635,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6361 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -75565,11 +94650,14 @@ "background": "orange", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6362 + }, "metadata_dict": { "eyes": "blindfold", "earring": "gold hoop", @@ -75577,22 +94665,28 @@ "fur": "noise", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6363 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme vuh", "background": "gray", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6364 + }, "metadata_dict": { "eyes": "hypnotized", "background": "blue", @@ -75600,11 +94694,14 @@ "earring": "silver hoop", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6365 + }, "metadata_dict": { "clothes": "striped tee", "earring": "diamond stud", @@ -75613,11 +94710,14 @@ "eyes": "crazy", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6366 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -75625,22 +94725,28 @@ "background": "aquamarine", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6367 + }, "metadata_dict": { "clothes": "blue dress", "mouth": "dumbfounded", "fur": "black", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6368 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cheetah", @@ -75648,11 +94754,14 @@ "clothes": "tanktop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6369 + }, "metadata_dict": { "clothes": "space suit", "mouth": "grin multicolored", @@ -75660,11 +94769,14 @@ "background": "orange", "hat": "girl's hair short", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6370 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -75672,11 +94784,14 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6371 + }, "metadata_dict": { "eyes": "heart", "mouth": "discomfort", @@ -75684,11 +94799,14 @@ "fur": "dark brown", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6372 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -75696,11 +94814,14 @@ "background": "aquamarine", "eyes": "3d", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6373 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "gray", @@ -75708,22 +94829,28 @@ "eyes": "3d", "mouth": "tongue out", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6374 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "discomfort", "fur": "tan", "hat": "cowboy hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6375 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "silver stud", @@ -75732,11 +94859,14 @@ "fur": "pink", "eyes": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6376 + }, "metadata_dict": { "hat": "bandana blue", "fur": "golden brown", @@ -75744,22 +94874,28 @@ "clothes": "biker vest", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6377 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "mouth": "grin", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6378 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", @@ -75767,22 +94903,28 @@ "fur": "dmt", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6379 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", "background": "gray", "fur": "robot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6380 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -75791,11 +94933,14 @@ "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6381 + }, "metadata_dict": { "eyes": "holographic", "clothes": "space suit", @@ -75803,44 +94948,56 @@ "fur": "dark brown", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6382 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "coins", "background": "aquamarine", "mouth": "bored bubblegum", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6383 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", "hat": "vietnam era helmet", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6384 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", "hat": "cowboy hat", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6385 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "rainbow suspenders", @@ -75848,11 +95005,14 @@ "hat": "cowboy hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6386 + }, "metadata_dict": { "eyes": "zombie", "mouth": "phoneme vuh", @@ -75860,11 +95020,14 @@ "background": "blue", "fur": "brown", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6387 + }, "metadata_dict": { "fur": "brown", "mouth": "phoneme vuh", @@ -75872,11 +95035,14 @@ "clothes": "tanktop", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6388 + }, "metadata_dict": { "clothes": "bayc t red", "earring": "silver stud", @@ -75885,11 +95051,14 @@ "background": "purple", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6389 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "fur": "black", @@ -75897,11 +95066,14 @@ "hat": "short mohawk", "clothes": "sleeveless logo t", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6390 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", @@ -75910,11 +95082,14 @@ "hat": "short mohawk", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6391 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "robot", @@ -75922,22 +95097,28 @@ "background": "purple", "hat": "commie hat", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6392 + }, "metadata_dict": { "fur": "gray", "eyes": "bored", "hat": "faux hawk", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6393 + }, "metadata_dict": { "eyes": "heart", "earring": "gold hoop", @@ -75946,22 +95127,28 @@ "clothes": "tuxedo tee", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6394 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", "fur": "black", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6395 + }, "metadata_dict": { "eyes": "coins", "clothes": "smoking jacket", @@ -75969,11 +95156,14 @@ "fur": "brown", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6396 + }, "metadata_dict": { "hat": "irish boho", "clothes": "rainbow suspenders", @@ -75981,11 +95171,14 @@ "eyes": "crazy", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6397 + }, "metadata_dict": { "background": "blue", "clothes": "stunt jacket", @@ -75993,11 +95186,14 @@ "mouth": "bored cigarette", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6398 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -76005,11 +95201,14 @@ "eyes": "bored", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6399 + }, "metadata_dict": { "eyes": "holographic", "clothes": "blue dress", @@ -76017,22 +95216,28 @@ "fur": "dark brown", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6400 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", "eyes": "bored", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6401 + }, "metadata_dict": { "fur": "cream", "eyes": "angry", @@ -76040,11 +95245,14 @@ "clothes": "toga", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6402 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -76053,11 +95261,14 @@ "clothes": "tie dye", "hat": "faux hawk", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6403 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -76065,22 +95276,28 @@ "fur": "black", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6404 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored pipe", "fur": "dark brown", "eyes": "bloodshot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6405 + }, "metadata_dict": { "background": "aquamarine", "mouth": "jovial", @@ -76088,11 +95305,14 @@ "fur": "dark brown", "hat": "cowboy hat", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6406 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored unshaven cigar", @@ -76100,22 +95320,28 @@ "clothes": "stunt jacket", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6407 + }, "metadata_dict": { "mouth": "rage", "fur": "brown", "background": "yellow", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6408 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -76123,11 +95349,14 @@ "hat": "girl's hair short", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6409 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "black", @@ -76135,22 +95364,28 @@ "hat": "faux hawk", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6410 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "trippy", "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6411 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "orange", @@ -76159,11 +95394,14 @@ "earring": "silver hoop", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6412 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "leather jacket", @@ -76171,22 +95409,28 @@ "fur": "dark brown", "mouth": "tongue out", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6413 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "background": "orange", "clothes": "toga", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6414 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "phoneme ooo", @@ -76194,11 +95438,14 @@ "eyes": "bloodshot", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6415 + }, "metadata_dict": { "fur": "cream", "mouth": "rage", @@ -76207,11 +95454,14 @@ "background": "purple", "hat": "commie hat", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6416 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -76219,44 +95469,56 @@ "background": "orange", "fur": "cheetah", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6417 + }, "metadata_dict": { "clothes": "hip hop", "fur": "black", "background": "purple", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6418 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "wide eyed", "fur": "cheetah", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6419 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored unshaven pipe", "fur": "black", "background": "purple", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6420 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -76265,11 +95527,14 @@ "eyes": "bored", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6421 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", @@ -76278,22 +95543,28 @@ "earring": "silver stud", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6422 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", "fur": "gray", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6423 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "prison jumpsuit", @@ -76301,22 +95572,28 @@ "hat": "bayc flipped brim", "mouth": "tongue out", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6424 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", "mouth": "phoneme ooo", "background": "aquamarine", "clothes": "cowboy shirt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6425 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bloodshot", @@ -76324,33 +95601,42 @@ "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6426 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", "hat": "party hat 1", "mouth": "phoneme vuh", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6427 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "tongue out", "fur": "brown", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6428 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "seaman's hat", @@ -76359,22 +95645,28 @@ "mouth": "bored", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6429 + }, "metadata_dict": { "mouth": "rage", "background": "blue", "eyes": "bloodshot", "clothes": "bone necklace", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6430 + }, "metadata_dict": { "fur": "robot", "clothes": "striped tee", @@ -76382,22 +95674,28 @@ "mouth": "bored", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6431 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", "clothes": "prison jumpsuit", "background": "orange", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6432 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black t", @@ -76405,11 +95703,14 @@ "background": "blue", "eyes": "bloodshot", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6433 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -76418,11 +95719,14 @@ "background": "orange", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6434 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "puffy vest", @@ -76431,11 +95735,14 @@ "eyes": "bored", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6435 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "king's crown", @@ -76443,11 +95750,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6436 + }, "metadata_dict": { "clothes": "black suit", "mouth": "phoneme vuh", @@ -76455,11 +95765,14 @@ "hat": "bayc flipped brim", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6437 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "irish boho", @@ -76467,11 +95780,14 @@ "background": "gray", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6438 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "police motorcycle helmet", @@ -76480,11 +95796,14 @@ "earring": "gold hoop", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6439 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "striped tee", @@ -76493,11 +95812,14 @@ "fur": "brown", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6440 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -76505,11 +95827,14 @@ "eyes": "coins", "fur": "pink", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6441 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -76517,11 +95842,14 @@ "fur": "brown", "clothes": "navy striped tee", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6442 + }, "metadata_dict": { "fur": "dmt", "hat": "stuntman helmet", @@ -76529,11 +95857,14 @@ "earring": "gold stud", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6443 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black t", @@ -76541,11 +95872,14 @@ "background": "orange", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6444 + }, "metadata_dict": { "eyes": "coins", "hat": "king's crown", @@ -76553,11 +95887,14 @@ "fur": "red", "background": "blue", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6445 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "hat": "horns", @@ -76565,22 +95902,28 @@ "clothes": "black t", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6446 + }, "metadata_dict": { "mouth": "bored bubblegum", "fur": "dark brown", "clothes": "admirals coat", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6447 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -76588,11 +95931,14 @@ "fur": "black", "background": "blue", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6448 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -76600,11 +95946,14 @@ "clothes": "prison jumpsuit", "mouth": "bored pipe", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6449 + }, "metadata_dict": { "clothes": "tie dye", "earring": "gold stud", @@ -76613,33 +95962,42 @@ "background": "gray", "hat": "bowler", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6450 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", "fur": "brown", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6451 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven pipe", "eyes": "bored", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6452 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver stud", @@ -76647,11 +96005,14 @@ "fur": "black", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6453 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -76659,11 +96020,14 @@ "hat": "fisherman's hat", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6454 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "sailor shirt", @@ -76672,11 +96036,14 @@ "fur": "pink", "hat": "cowboy hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6455 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -76684,22 +96051,28 @@ "clothes": "tie dye", "fur": "death bot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6456 + }, "metadata_dict": { "eyes": "zombie", "background": "aquamarine", "fur": "pink", "mouth": "phoneme wah", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6457 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "black t", @@ -76707,11 +96080,14 @@ "fur": "dark brown", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6458 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -76719,32 +96095,41 @@ "eyes": "bloodshot", "clothes": "lab coat", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6459 + }, "metadata_dict": { "background": "gray", "eyes": "robot", "fur": "gray", "mouth": "bored unshaven party horn" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6460 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "mouth": "small grin", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6461 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -76752,11 +96137,14 @@ "hat": "spinner hat", "clothes": "tanktop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6462 + }, "metadata_dict": { "background": "orange", "mouth": "bored pizza", @@ -76764,22 +96152,28 @@ "clothes": "bone necklace", "eyes": "sleepy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6463 + }, "metadata_dict": { "eyes": "closed", "fur": "red", "background": "yellow", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6464 + }, "metadata_dict": { "eyes": "closed", "clothes": "tweed suit", @@ -76788,11 +96182,14 @@ "background": "blue", "fur": "black", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6465 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -76800,11 +96197,14 @@ "background": "orange", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6466 + }, "metadata_dict": { "mouth": "bored dagger", "earring": "silver stud", @@ -76813,11 +96213,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6467 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "sleeveless t", @@ -76825,22 +96228,28 @@ "fur": "black", "background": "orange", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6468 + }, "metadata_dict": { "fur": "cream", "eyes": "sleepy", "mouth": "bored cigarette", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6469 + }, "metadata_dict": { "earring": "gold hoop", "eyes": "bloodshot", @@ -76848,11 +96257,14 @@ "hat": "beanie", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6470 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -76860,11 +96272,14 @@ "mouth": "bored", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6471 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "holographic", @@ -76873,11 +96288,14 @@ "earring": "silver hoop", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6472 + }, "metadata_dict": { "eyes": "3d", "background": "orange", @@ -76886,11 +96304,14 @@ "clothes": "stunt jacket", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6473 + }, "metadata_dict": { "clothes": "smoking jacket", "fur": "solid gold", @@ -76898,11 +96319,14 @@ "mouth": "bored", "hat": "police motorcycle helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6474 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -76910,11 +96334,14 @@ "eyes": "bored", "fur": "robot", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6475 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "black", @@ -76922,11 +96349,14 @@ "clothes": "biker vest", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6476 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven cigarette", @@ -76934,11 +96364,14 @@ "background": "blue", "clothes": "tanktop", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6477 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -76946,44 +96379,56 @@ "fur": "red", "eyes": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6478 + }, "metadata_dict": { "fur": "gray", "hat": "prussian helmet", "eyes": "bored", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6479 + }, "metadata_dict": { "eyes": "hypnotized", "background": "blue", "fur": "noise", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6480 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme vuh", "fur": "black", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6481 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -76991,33 +96436,42 @@ "hat": "short mohawk", "eyes": "bored", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6482 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tweed suit", "eyes": "3d", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6483 + }, "metadata_dict": { "eyes": "robot", "fur": "noise", "mouth": "bored unshaven cigarette", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6484 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -77026,11 +96480,14 @@ "mouth": "small grin", "earring": "silver hoop", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6485 + }, "metadata_dict": { "eyes": "closed", "hat": "laurel wreath", @@ -77038,11 +96495,14 @@ "fur": "gray", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6486 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "baby's bonnet", @@ -77051,11 +96511,14 @@ "earring": "silver hoop", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6487 + }, "metadata_dict": { "eyes": "coins", "clothes": "prom dress", @@ -77063,11 +96526,14 @@ "background": "yellow", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6488 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "prison jumpsuit", @@ -77075,22 +96541,28 @@ "hat": "vietnam era helmet", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6489 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "spinner hat", "fur": "black", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6490 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored pipe", @@ -77098,22 +96570,28 @@ "fur": "dark brown", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6491 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "mouth": "bored unshaven", "hat": "girl's hair short", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6492 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme vuh", @@ -77122,11 +96600,14 @@ "earring": "silver hoop", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6493 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -77135,11 +96616,14 @@ "hat": "army hat", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6494 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -77148,11 +96632,14 @@ "background": "purple", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6495 + }, "metadata_dict": { "clothes": "tuxedo tee", "mouth": "bored", @@ -77160,11 +96647,14 @@ "background": "gray", "hat": "safari", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6496 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "wool turtleneck", @@ -77172,11 +96662,14 @@ "fur": "gray", "background": "blue", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6497 + }, "metadata_dict": { "hat": "bowler", "clothes": "tanktop", @@ -77184,11 +96677,14 @@ "mouth": "bored", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6498 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "jovial", @@ -77196,11 +96692,14 @@ "eyes": "bloodshot", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6499 + }, "metadata_dict": { "clothes": "lumberjack shirt", "background": "orange", @@ -77208,33 +96707,42 @@ "hat": "army hat", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6500 + }, "metadata_dict": { "background": "new punk blue", "hat": "irish boho", "eyes": "coins", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6501 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", "hat": "short mohawk", "eyes": "crazy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6502 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -77242,33 +96750,42 @@ "fur": "pink", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6503 + }, "metadata_dict": { "background": "blue", "eyes": "3d", "mouth": "bored", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6504 + }, "metadata_dict": { "eyes": "zombie", "fur": "gray", "earring": "gold stud", "mouth": "small grin", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6505 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "seaman's hat", @@ -77276,22 +96793,28 @@ "fur": "brown", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6506 + }, "metadata_dict": { "fur": "black", "mouth": "bored pizza", "clothes": "tanktop", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6507 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "scumbag", @@ -77299,11 +96822,14 @@ "background": "orange", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6508 + }, "metadata_dict": { "eyes": "closed", "clothes": "sleeveless t", @@ -77311,11 +96837,14 @@ "hat": "bayc flipped brim", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6509 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven party horn", @@ -77323,11 +96852,14 @@ "hat": "commie hat", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6510 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "gold stud", @@ -77336,11 +96868,14 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6511 + }, "metadata_dict": { "clothes": "black t", "mouth": "rage", @@ -77348,11 +96883,14 @@ "eyes": "3d", "background": "yellow", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6512 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -77360,11 +96898,14 @@ "hat": "beanie", "eyes": "crazy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6513 + }, "metadata_dict": { "fur": "cream", "hat": "king's crown", @@ -77372,11 +96913,14 @@ "background": "yellow", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6514 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "zombie", @@ -77384,22 +96928,28 @@ "hat": "vietnam era helmet", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6515 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", "background": "gray", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6516 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black t", @@ -77407,11 +96957,14 @@ "earring": "gold stud", "eyes": "bloodshot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6517 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -77420,11 +96973,14 @@ "hat": "cowboy hat", "mouth": "tongue out", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6518 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -77432,11 +96988,14 @@ "hat": "short mohawk", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6519 + }, "metadata_dict": { "fur": "tan", "clothes": "black t", @@ -77444,11 +97003,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6520 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -77456,22 +97018,28 @@ "hat": "cowboy hat", "fur": "brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6521 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", "mouth": "phoneme ooo", "background": "orange", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6522 + }, "metadata_dict": { "fur": "tan", "eyes": "blindfold", @@ -77479,11 +97047,14 @@ "mouth": "rage", "hat": "bayc flipped brim", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6523 + }, "metadata_dict": { "fur": "cream", "clothes": "biker vest", @@ -77491,22 +97062,28 @@ "mouth": "bored", "hat": "police motorcycle helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6524 + }, "metadata_dict": { "eyes": "robot", "background": "blue", "fur": "brown", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6525 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "sailor shirt", @@ -77514,11 +97091,14 @@ "fur": "brown", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6526 + }, "metadata_dict": { "earring": "silver stud", "clothes": "leather jacket", @@ -77526,22 +97106,28 @@ "mouth": "bored unshaven cigar", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6527 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", "fur": "black", "mouth": "bored cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6528 + }, "metadata_dict": { "mouth": "bored dagger", "hat": "seaman's hat", @@ -77550,22 +97136,28 @@ "fur": "dark brown", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6529 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "background": "yellow", "clothes": "bone tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6530 + }, "metadata_dict": { "background": "new punk blue", "fur": "dmt", @@ -77573,11 +97165,14 @@ "hat": "short mohawk", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6531 + }, "metadata_dict": { "fur": "brown", "hat": "party hat 1", @@ -77585,11 +97180,14 @@ "eyes": "robot", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6532 + }, "metadata_dict": { "hat": "horns", "fur": "red", @@ -77598,11 +97196,14 @@ "eyes": "bored", "earring": "silver hoop", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6533 + }, "metadata_dict": { "clothes": "bone tee", "mouth": "bored unshaven cigarette", @@ -77610,11 +97211,14 @@ "eyes": "robot", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6534 + }, "metadata_dict": { "fur": "robot", "clothes": "striped tee", @@ -77622,22 +97226,28 @@ "eyes": "bored", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6535 + }, "metadata_dict": { "clothes": "rainbow suspenders", "eyes": "bloodshot", "background": "gray", "mouth": "bored cigar", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6536 + }, "metadata_dict": { "clothes": "black holes t", "fur": "red", @@ -77645,11 +97255,14 @@ "eyes": "sleepy", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6537 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", @@ -77657,11 +97270,14 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6538 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -77670,33 +97286,42 @@ "earring": "silver hoop", "clothes": "toga", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6539 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "eyes": "bored", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6540 + }, "metadata_dict": { "fur": "cheetah", "clothes": "prom dress", "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6541 + }, "metadata_dict": { "clothes": "cowboy shirt", "fur": "black", @@ -77704,11 +97329,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6542 + }, "metadata_dict": { "background": "yellow", "mouth": "jovial", @@ -77716,11 +97344,14 @@ "eyes": "bored", "clothes": "toga", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6543 + }, "metadata_dict": { "mouth": "grin", "clothes": "work vest", @@ -77728,11 +97359,14 @@ "fur": "white", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6544 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "diamond stud", @@ -77740,22 +97374,28 @@ "fur": "white", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6545 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "dumbfounded", "background": "aquamarine", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6546 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "bored unshaven pipe", @@ -77763,22 +97403,28 @@ "hat": "ww2 pilot helm", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6547 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", "clothes": "wool turtleneck", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6548 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -77786,33 +97432,42 @@ "mouth": "tongue out", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6549 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", "clothes": "black t", "background": "blue", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6550 + }, "metadata_dict": { "eyes": "3d", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6551 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "robot", @@ -77820,11 +97475,14 @@ "background": "yellow", "fur": "death bot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6552 + }, "metadata_dict": { "hat": "laurel wreath", "eyes": "hypnotized", @@ -77832,22 +97490,28 @@ "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6553 + }, "metadata_dict": { "fur": "gray", "background": "yellow", "eyes": "sleepy", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6554 + }, "metadata_dict": { "eyes": "hypnotized", "earring": "silver stud", @@ -77855,11 +97519,14 @@ "background": "yellow", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6555 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -77868,22 +97535,28 @@ "fur": "dark brown", "eyes": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6556 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", "clothes": "stunt jacket", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6557 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -77892,22 +97565,28 @@ "fur": "pink", "hat": "army hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6558 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "clothes": "smoking jacket", "background": "gray", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6559 + }, "metadata_dict": { "hat": "horns", "eyes": "zombie", @@ -77915,11 +97594,14 @@ "mouth": "tongue out", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6560 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "rage", @@ -77927,11 +97609,14 @@ "hat": "fisherman's hat", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6561 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored kazoo", @@ -77940,11 +97625,14 @@ "fur": "brown", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6562 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "blindfold", @@ -77952,22 +97640,28 @@ "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6563 + }, "metadata_dict": { "background": "new punk blue", "hat": "king's crown", "fur": "pink", "mouth": "small grin", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6564 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", @@ -77975,11 +97669,14 @@ "background": "aquamarine", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6565 + }, "metadata_dict": { "fur": "cream", "background": "orange", @@ -77987,11 +97684,14 @@ "hat": "bayc hat red", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6566 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -78000,11 +97700,14 @@ "eyes": "bored", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6567 + }, "metadata_dict": { "hat": "king's crown", "fur": "cheetah", @@ -78012,11 +97715,14 @@ "mouth": "bored", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6568 + }, "metadata_dict": { "fur": "dmt", "clothes": "sailor shirt", @@ -78024,11 +97730,14 @@ "mouth": "small grin", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6569 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -78036,22 +97745,28 @@ "mouth": "bored", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6570 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "sleepy", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6571 + }, "metadata_dict": { "clothes": "black suit", "fur": "black", @@ -78060,11 +97775,14 @@ "earring": "silver hoop", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6572 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "phoneme vuh", @@ -78072,11 +97790,14 @@ "background": "purple", "earring": "cross", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6573 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -78084,22 +97805,28 @@ "clothes": "work vest", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6574 + }, "metadata_dict": { "mouth": "jovial", "background": "blue", "eyes": "bored", "fur": "brown", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6575 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -78108,22 +97835,28 @@ "fur": "brown", "hat": "bowler", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6576 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "new punk blue", "clothes": "lumberjack shirt", "eyes": "robot", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6577 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -78131,11 +97864,14 @@ "fur": "black", "eyes": "sleepy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6578 + }, "metadata_dict": { "earring": "gold hoop", "background": "aquamarine", @@ -78143,11 +97879,14 @@ "fur": "brown", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6579 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -78155,11 +97894,14 @@ "clothes": "cowboy shirt", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6580 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", @@ -78167,11 +97909,14 @@ "mouth": "bored unshaven pipe", "fur": "dark brown", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6581 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -78179,11 +97924,14 @@ "fur": "black", "hat": "girl's hair short", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6582 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -78191,11 +97939,14 @@ "background": "orange", "eyes": "3d", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6583 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", @@ -78204,11 +97955,14 @@ "fur": "red", "hat": "spinner hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6584 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -78216,11 +97970,14 @@ "mouth": "bored party horn", "fur": "robot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6585 + }, "metadata_dict": { "clothes": "striped tee", "hat": "prussian helmet", @@ -78228,22 +97985,28 @@ "fur": "dark brown", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6586 + }, "metadata_dict": { "mouth": "bored cigarette", "eyes": "crazy", "fur": "robot", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6587 + }, "metadata_dict": { "background": "gray", "clothes": "sailor shirt", @@ -78251,11 +98014,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6588 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "cowboy hat", @@ -78263,11 +98029,14 @@ "eyes": "crazy", "background": "army green", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6589 + }, "metadata_dict": { "clothes": "lumberjack shirt", "background": "aquamarine", @@ -78275,11 +98044,14 @@ "hat": "beanie", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6590 + }, "metadata_dict": { "clothes": "caveman pelt", "hat": "fez", @@ -78288,11 +98060,14 @@ "earring": "cross", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6591 + }, "metadata_dict": { "clothes": "leather punk jacket", "earring": "diamond stud", @@ -78301,11 +98076,14 @@ "fur": "red", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6592 + }, "metadata_dict": { "eyes": "heart", "clothes": "black t", @@ -78313,11 +98091,14 @@ "background": "orange", "hat": "vietnam era helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6593 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -78325,11 +98106,14 @@ "earring": "gold stud", "fur": "dark brown", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6594 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -78337,11 +98121,14 @@ "eyes": "3d", "background": "orange", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6595 + }, "metadata_dict": { "hat": "party hat 1", "background": "aquamarine", @@ -78350,11 +98137,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6596 + }, "metadata_dict": { "clothes": "rainbow suspenders", "mouth": "jovial", @@ -78362,11 +98152,14 @@ "hat": "beanie", "fur": "death bot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6597 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -78374,11 +98167,14 @@ "fur": "cheetah", "hat": "bunny ears", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6598 + }, "metadata_dict": { "earring": "gold hoop", "eyes": "coins", @@ -78386,22 +98182,28 @@ "mouth": "tongue out", "background": "purple", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6599 + }, "metadata_dict": { "fur": "tan", "eyes": "hypnotized", "mouth": "phoneme ooo", "background": "gray", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6600 + }, "metadata_dict": { "eyes": "closed", "clothes": "biker vest", @@ -78409,11 +98211,14 @@ "mouth": "bored cigarette", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6601 + }, "metadata_dict": { "fur": "black", "mouth": "small grin", @@ -78421,22 +98226,28 @@ "hat": "fisherman's hat", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6602 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", "eyes": "bored", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6603 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "red", @@ -78444,11 +98255,14 @@ "mouth": "bored cigarette", "hat": "police motorcycle helmet", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6604 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -78456,11 +98270,14 @@ "hat": "bunny ears", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6605 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "bandana blue", @@ -78468,11 +98285,14 @@ "clothes": "tuxedo tee", "mouth": "bored pizza", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6606 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "black", @@ -78481,11 +98301,14 @@ "hat": "vietnam era helmet", "earring": "cross", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6607 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", @@ -78493,33 +98316,42 @@ "hat": "horns", "mouth": "small grin", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6608 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme vuh", "background": "aquamarine", "fur": "pink", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6609 + }, "metadata_dict": { "clothes": "smoking jacket", "fur": "cheetah", "background": "yellow", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6610 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "phoneme vuh", @@ -78527,22 +98359,28 @@ "eyes": "bored", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6611 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", "background": "orange", "eyes": "bloodshot", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6612 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -78551,11 +98389,14 @@ "hat": "party hat 1", "eyes": "3d", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6613 + }, "metadata_dict": { "clothes": "rainbow suspenders", "fur": "black", @@ -78563,11 +98404,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6614 + }, "metadata_dict": { "fur": "red", "background": "aquamarine", @@ -78575,11 +98419,14 @@ "hat": "faux hawk", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6615 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -78588,11 +98435,14 @@ "earring": "silver hoop", "clothes": "prom dress", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6616 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "3d", @@ -78600,22 +98450,28 @@ "mouth": "small grin", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6617 + }, "metadata_dict": { "fur": "tan", "background": "aquamarine", "hat": "spinner hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6618 + }, "metadata_dict": { "background": "aquamarine", "earring": "gold stud", @@ -78623,11 +98479,14 @@ "mouth": "bored", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6619 + }, "metadata_dict": { "fur": "golden brown", "clothes": "work vest", @@ -78635,11 +98494,14 @@ "mouth": "bored pipe", "hat": "fisherman's hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6620 + }, "metadata_dict": { "hat": "horns", "clothes": "sailor shirt", @@ -78647,32 +98509,41 @@ "fur": "brown", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6621 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "bloodshot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6622 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", "background": "orange", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6623 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "zombie", @@ -78681,11 +98552,14 @@ "fur": "death bot", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6624 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -78694,11 +98568,14 @@ "earring": "gold stud", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6625 + }, "metadata_dict": { "clothes": "cowboy shirt", "fur": "dark brown", @@ -78707,22 +98584,28 @@ "background": "yellow", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6626 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "closed", "background": "blue", "fur": "noise", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6627 + }, "metadata_dict": { "hat": "s&m hat", "fur": "black", @@ -78730,11 +98613,14 @@ "background": "purple", "mouth": "phoneme wah", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6628 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -78742,11 +98628,14 @@ "mouth": "bored", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6629 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "biker vest", @@ -78754,11 +98643,14 @@ "background": "orange", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6630 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bloodshot", @@ -78766,11 +98658,14 @@ "fur": "brown", "hat": "bowler", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6631 + }, "metadata_dict": { "fur": "dmt", "earring": "gold hoop", @@ -78779,11 +98674,14 @@ "hat": "bunny ears", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6632 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -78791,11 +98689,14 @@ "fur": "golden brown", "hat": "faux hawk", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6633 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "holographic", @@ -78804,33 +98705,42 @@ "background": "orange", "fur": "pink", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6634 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "red", "background": "orange", "eyes": "bored", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6635 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "bored", "mouth": "bored pizza", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6636 + }, "metadata_dict": { "fur": "cream", "hat": "fez", @@ -78838,11 +98748,14 @@ "background": "gray", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6637 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "rage", @@ -78851,11 +98764,14 @@ "earring": "silver hoop", "clothes": "bone necklace", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6638 + }, "metadata_dict": { "hat": "s&m hat", "earring": "gold hoop", @@ -78863,11 +98779,14 @@ "fur": "pink", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6639 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -78875,11 +98794,14 @@ "background": "orange", "clothes": "tanktop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6640 + }, "metadata_dict": { "fur": "cream", "earring": "gold stud", @@ -78887,11 +98809,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6641 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -78900,11 +98825,14 @@ "hat": "fisherman's hat", "earring": "cross", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6642 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "3d", @@ -78913,11 +98841,14 @@ "background": "purple", "hat": "commie hat", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6643 + }, "metadata_dict": { "fur": "tan", "clothes": "black t", @@ -78926,11 +98857,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6644 + }, "metadata_dict": { "fur": "gray", "background": "aquamarine", @@ -78938,11 +98872,14 @@ "eyes": "bored", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6645 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bloodshot", @@ -78950,11 +98887,14 @@ "hat": "army hat", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6646 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", @@ -78962,22 +98902,28 @@ "clothes": "tanktop", "eyes": "angry", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6647 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", "mouth": "grin", "background": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6648 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -78985,22 +98931,28 @@ "earring": "gold hoop", "fur": "red", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6649 + }, "metadata_dict": { "background": "new punk blue", "hat": "king's crown", "fur": "dark brown", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6650 + }, "metadata_dict": { "clothes": "blue dress", "earring": "gold hoop", @@ -79008,11 +98960,14 @@ "eyes": "bored", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6651 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", @@ -79020,22 +98975,28 @@ "background": "aquamarine", "eyes": "bored", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6652 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", "fur": "golden brown", "eyes": "zombie", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6653 + }, "metadata_dict": { "hat": "prussian helmet", "background": "aquamarine", @@ -79043,11 +99004,14 @@ "mouth": "tongue out", "clothes": "pimp coat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6654 + }, "metadata_dict": { "hat": "seaman's hat", "background": "purple", @@ -79055,11 +99019,14 @@ "eyes": "3d", "mouth": "bored unshaven cigarette", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6655 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -79068,22 +99035,28 @@ "background": "orange", "earring": "silver hoop", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6656 + }, "metadata_dict": { "eyes": "zombie", "fur": "death bot", "background": "purple", "mouth": "bored cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6657 + }, "metadata_dict": { "background": "new punk blue", "eyes": "laser eyes", @@ -79092,11 +99065,14 @@ "clothes": "tanktop", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6658 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", @@ -79105,11 +99081,14 @@ "background": "yellow", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6659 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -79117,11 +99096,14 @@ "background": "orange", "hat": "cowboy hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6660 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -79129,11 +99111,14 @@ "fur": "red", "mouth": "bored cigarette", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6661 + }, "metadata_dict": { "fur": "black", "hat": "vietnam era helmet", @@ -79141,22 +99126,28 @@ "mouth": "bored", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6662 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "brown", "mouth": "rage", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6663 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -79164,22 +99155,28 @@ "hat": "fez", "background": "blue", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6664 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", "clothes": "tweed suit", "mouth": "bored unshaven cigar", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6665 + }, "metadata_dict": { "hat": "irish boho", "mouth": "grin", @@ -79187,11 +99184,14 @@ "clothes": "tweed suit", "background": "aquamarine", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6666 + }, "metadata_dict": { "mouth": "jovial", "fur": "dark brown", @@ -79200,11 +99200,14 @@ "clothes": "tanktop", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6667 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -79212,11 +99215,14 @@ "fur": "brown", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6668 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -79224,11 +99230,14 @@ "clothes": "bayc t black", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6669 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -79237,11 +99246,14 @@ "clothes": "leather jacket", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6670 + }, "metadata_dict": { "eyes": "heart", "background": "blue", @@ -79249,11 +99261,14 @@ "hat": "cowboy hat", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6671 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "black", @@ -79261,11 +99276,14 @@ "hat": "cowboy hat", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6672 + }, "metadata_dict": { "eyes": "zombie", "mouth": "dumbfounded", @@ -79273,11 +99291,14 @@ "background": "purple", "fur": "robot", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6673 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -79286,11 +99307,14 @@ "hat": "fez", "background": "yellow", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6674 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "blindfold", @@ -79298,33 +99322,42 @@ "background": "blue", "fur": "brown", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6675 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "clothes": "lab coat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6676 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven cigarette", "eyes": "bored", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6677 + }, "metadata_dict": { "fur": "golden brown", "earring": "diamond stud", @@ -79333,11 +99366,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6678 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -79345,11 +99381,14 @@ "background": "aquamarine", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6679 + }, "metadata_dict": { "hat": "party hat 2", "fur": "cream", @@ -79358,11 +99397,14 @@ "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6680 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -79370,22 +99412,28 @@ "eyes": "bored", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6681 + }, "metadata_dict": { "hat": "commie hat", "eyes": "bored", "fur": "cheetah", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6682 + }, "metadata_dict": { "fur": "golden brown", "hat": "fez", @@ -79393,11 +99441,14 @@ "eyes": "3d", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6683 + }, "metadata_dict": { "eyes": "coins", "background": "blue", @@ -79405,11 +99456,14 @@ "hat": "bayc flipped brim", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6684 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "x eyes", @@ -79417,11 +99471,14 @@ "mouth": "grin", "clothes": "black t", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6685 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "closed", @@ -79429,22 +99486,28 @@ "fur": "gray", "background": "aquamarine", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6686 + }, "metadata_dict": { "eyes": "heart", "clothes": "prison jumpsuit", "background": "aquamarine", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6687 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "black", @@ -79452,11 +99515,14 @@ "hat": "bunny ears", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6688 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -79464,11 +99530,14 @@ "hat": "cowboy hat", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6689 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -79476,11 +99545,14 @@ "background": "blue", "clothes": "tanktop", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6690 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -79489,11 +99561,14 @@ "hat": "bayc flipped brim", "mouth": "bored cigar", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6691 + }, "metadata_dict": { "clothes": "striped tee", "background": "purple", @@ -79502,11 +99577,14 @@ "eyes": "sleepy", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6692 + }, "metadata_dict": { "hat": "fez", "clothes": "prison jumpsuit", @@ -79514,22 +99592,28 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6693 + }, "metadata_dict": { "hat": "horns", "background": "aquamarine", "fur": "black", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6694 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -79537,11 +99621,14 @@ "earring": "gold stud", "eyes": "blue beams", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6695 + }, "metadata_dict": { "eyes": "coins", "earring": "silver stud", @@ -79550,11 +99637,14 @@ "background": "yellow", "hat": "safari", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6696 + }, "metadata_dict": { "background": "new punk blue", "fur": "trippy", @@ -79562,11 +99652,14 @@ "mouth": "bored unshaven cigarette", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6697 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sailor shirt", @@ -79574,22 +99667,28 @@ "hat": "short mohawk", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6698 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "fez", "background": "orange", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6699 + }, "metadata_dict": { "clothes": "space suit", "fur": "gray", @@ -79598,22 +99697,28 @@ "earring": "silver hoop", "background": "gray", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6700 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven kazoo", "hat": "commie hat", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6701 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -79622,11 +99727,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6702 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -79634,11 +99742,14 @@ "background": "yellow", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6703 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "grin", @@ -79646,11 +99757,14 @@ "background": "yellow", "fur": "black", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6704 + }, "metadata_dict": { "fur": "golden brown", "clothes": "rainbow suspenders", @@ -79659,11 +99773,14 @@ "background": "aquamarine", "hat": "beanie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6705 + }, "metadata_dict": { "background": "aquamarine", "hat": "commie hat", @@ -79671,11 +99788,14 @@ "fur": "death bot", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6706 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "dark brown", @@ -79684,22 +99804,28 @@ "clothes": "toga", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6707 + }, "metadata_dict": { "hat": "bayc hat black", "background": "blue", "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6708 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -79707,33 +99833,42 @@ "clothes": "tuxedo tee", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6709 + }, "metadata_dict": { "eyes": "holographic", "clothes": "space suit", "fur": "gray", "mouth": "rage", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6710 + }, "metadata_dict": { "background": "purple", "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet", "fur": "death bot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6711 + }, "metadata_dict": { "eyes": "coins", "clothes": "rainbow suspenders", @@ -79741,22 +99876,28 @@ "earring": "silver hoop", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6712 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored party horn", "fur": "red", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6713 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -79764,11 +99905,14 @@ "hat": "bayc flipped brim", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6714 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -79776,11 +99920,14 @@ "hat": "bayc flipped brim", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6715 + }, "metadata_dict": { "hat": "baby's bonnet", "eyes": "coins", @@ -79789,11 +99936,14 @@ "earring": "silver hoop", "clothes": "lab coat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6716 + }, "metadata_dict": { "fur": "golden brown", "mouth": "grin", @@ -79801,11 +99951,14 @@ "clothes": "guayabera", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6717 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -79813,11 +99966,14 @@ "clothes": "biker vest", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6718 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -79825,11 +99981,14 @@ "earring": "silver hoop", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6719 + }, "metadata_dict": { "fur": "cream", "clothes": "rainbow suspenders", @@ -79837,11 +99996,14 @@ "background": "gray", "hat": "commie hat", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6720 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -79849,11 +100011,14 @@ "eyes": "bored", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6721 + }, "metadata_dict": { "clothes": "striped tee", "hat": "sushi chef headband", @@ -79862,11 +100027,14 @@ "mouth": "dumbfounded", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6722 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -79874,11 +100042,14 @@ "eyes": "bored", "hat": "faux hawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6723 + }, "metadata_dict": { "background": "gray", "clothes": "pimp coat", @@ -79886,11 +100057,14 @@ "fur": "cheetah", "hat": "vietnam era helmet", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6724 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "wool turtleneck", @@ -79898,22 +100072,28 @@ "hat": "ww2 pilot helm", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6725 + }, "metadata_dict": { "clothes": "service", "eyes": "coins", "mouth": "dumbfounded", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6726 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", @@ -79921,11 +100101,14 @@ "earring": "gold stud", "eyes": "3d", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6727 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", @@ -79933,11 +100116,14 @@ "background": "aquamarine", "fur": "pink", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6728 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -79946,22 +100132,28 @@ "fur": "brown", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6729 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "bandolier", "mouth": "grin diamond grill", "fur": "black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6730 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme l", @@ -79970,11 +100162,14 @@ "background": "blue", "hat": "faux hawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6731 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", @@ -79982,11 +100177,14 @@ "hat": "seaman's hat", "fur": "pink", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6732 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bayc t red", @@ -79994,11 +100192,14 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6733 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -80006,22 +100207,28 @@ "clothes": "sailor shirt", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6734 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "bored unshaven", "eyes": "hypnotized", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6735 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -80029,21 +100236,27 @@ "fur": "brown", "background": "yellow", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6736 + }, "metadata_dict": { "eyes": "closed", "background": "yellow", "fur": "dark brown", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6737 + }, "metadata_dict": { "background": "new punk blue", "fur": "zombie", @@ -80051,11 +100264,14 @@ "mouth": "small grin", "hat": "girl's hair short", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6738 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", @@ -80063,11 +100279,14 @@ "background": "aquamarine", "fur": "black", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6739 + }, "metadata_dict": { "fur": "gray", "clothes": "tie dye", @@ -80075,22 +100294,28 @@ "hat": "faux hawk", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6740 + }, "metadata_dict": { "eyes": "laser eyes", "background": "aquamarine", "fur": "cheetah", "mouth": "phoneme wah", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6741 + }, "metadata_dict": { "clothes": "lumberjack shirt", "background": "aquamarine", @@ -80098,11 +100323,14 @@ "fur": "dark brown", "hat": "ww2 pilot helm", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6742 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -80110,11 +100338,14 @@ "mouth": "jovial", "clothes": "stunt jacket", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6743 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bayc t red", @@ -80122,11 +100353,14 @@ "fur": "dark brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6744 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "grin", @@ -80134,11 +100368,14 @@ "fur": "black", "eyes": "bloodshot", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6745 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", @@ -80146,11 +100383,14 @@ "eyes": "coins", "hat": "spinner hat", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6746 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "robot", @@ -80158,11 +100398,14 @@ "fur": "dark brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6747 + }, "metadata_dict": { "earring": "silver stud", "hat": "bunny ears", @@ -80171,11 +100414,14 @@ "mouth": "bored", "clothes": "navy striped tee", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6748 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -80183,33 +100429,42 @@ "mouth": "bored unshaven cigarette", "clothes": "caveman pelt", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6749 + }, "metadata_dict": { "eyes": "scumbag", "background": "blue", "fur": "brown", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6750 + }, "metadata_dict": { "eyes": "zombie", "mouth": "phoneme vuh", "fur": "dark brown", "background": "yellow", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6751 + }, "metadata_dict": { "mouth": "jovial", "clothes": "cowboy shirt", @@ -80217,11 +100472,14 @@ "fur": "dark brown", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6752 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", @@ -80229,11 +100487,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6753 + }, "metadata_dict": { "clothes": "lab coat", "fur": "dark brown", @@ -80241,11 +100502,14 @@ "mouth": "bored unshaven cigarette", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6754 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "irish boho", @@ -80254,11 +100518,14 @@ "fur": "red", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6755 + }, "metadata_dict": { "eyes": "closed", "hat": "stuntman helmet", @@ -80267,21 +100534,27 @@ "clothes": "sleeveless logo t", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6756 + }, "metadata_dict": { "eyes": "sleepy", "fur": "black", "background": "army green", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6757 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "grin multicolored", @@ -80289,11 +100562,14 @@ "fur": "black", "background": "orange", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6758 + }, "metadata_dict": { "clothes": "blue dress", "earring": "gold hoop", @@ -80301,33 +100577,42 @@ "fur": "pink", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6759 + }, "metadata_dict": { "eyes": "heart", "fur": "pink", "background": "orange", "mouth": "tongue out", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6760 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "eyes": "bored", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6761 + }, "metadata_dict": { "eyes": "zombie", "hat": "ww2 pilot helm", @@ -80335,11 +100620,14 @@ "background": "yellow", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6762 + }, "metadata_dict": { "mouth": "discomfort", "fur": "dark brown", @@ -80348,11 +100636,14 @@ "hat": "beanie", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6763 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "stuntman helmet", @@ -80360,11 +100651,14 @@ "background": "orange", "mouth": "small grin", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6764 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -80372,11 +100666,14 @@ "hat": "army hat", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6765 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -80384,11 +100681,14 @@ "background": "aquamarine", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6766 + }, "metadata_dict": { "hat": "baby's bonnet", "eyes": "robot", @@ -80396,11 +100696,14 @@ "fur": "brown", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6767 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -80408,11 +100711,14 @@ "eyes": "bored", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6768 + }, "metadata_dict": { "earring": "silver stud", "mouth": "jovial", @@ -80421,11 +100727,14 @@ "hat": "bayc hat red", "eyes": "sleepy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6769 + }, "metadata_dict": { "fur": "cream", "mouth": "rage", @@ -80433,11 +100742,14 @@ "eyes": "bored", "hat": "halo", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6770 + }, "metadata_dict": { "fur": "tan", "eyes": "coins", @@ -80445,22 +100757,28 @@ "earring": "silver hoop", "clothes": "admirals coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6771 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "clothes": "cowboy shirt", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6772 + }, "metadata_dict": { "fur": "red", "background": "aquamarine", @@ -80468,11 +100786,14 @@ "hat": "ww2 pilot helm", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6773 + }, "metadata_dict": { "hat": "bandana blue", "eyes": "coins", @@ -80481,11 +100802,14 @@ "background": "aquamarine", "clothes": "tanktop", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6774 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -80493,11 +100817,14 @@ "hat": "girl's hair pink", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6775 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "prussian helmet", @@ -80505,11 +100832,14 @@ "background": "blue", "fur": "black", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6776 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -80517,11 +100847,14 @@ "eyes": "blue beams", "clothes": "bone necklace", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6777 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme ooo", @@ -80529,22 +100862,28 @@ "fur": "white", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6778 + }, "metadata_dict": { "fur": "black", "eyes": "bored", "mouth": "bored", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6779 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver stud", @@ -80553,11 +100892,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6780 + }, "metadata_dict": { "eyes": "blindfold", "background": "purple", @@ -80565,33 +100907,42 @@ "mouth": "bored pizza", "clothes": "guayabera", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6781 + }, "metadata_dict": { "fur": "gray", "background": "blue", "eyes": "bloodshot", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6782 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "pink", "background": "yellow", "clothes": "stunt jacket", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6783 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "coins", @@ -80599,11 +100950,14 @@ "hat": "faux hawk", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6784 + }, "metadata_dict": { "clothes": "black holes t", "hat": "fez", @@ -80611,22 +100965,28 @@ "mouth": "small grin", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6785 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "aquamarine", "fur": "black", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6786 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", @@ -80634,11 +100994,14 @@ "hat": "army hat", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6787 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -80646,11 +101009,14 @@ "fur": "black", "clothes": "biker vest", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6788 + }, "metadata_dict": { "hat": "s&m hat", "fur": "dmt", @@ -80658,44 +101024,56 @@ "clothes": "smoking jacket", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6789 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "brown", "background": "purple", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6790 + }, "metadata_dict": { "background": "gray", "mouth": "phoneme ooo", "eyes": "3d", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6791 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "zombie", "mouth": "dumbfounded", "fur": "black", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6792 + }, "metadata_dict": { "fur": "dmt", "eyes": "coins", @@ -80703,22 +101081,28 @@ "clothes": "tuxedo tee", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6793 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", "background": "orange", "hat": "short mohawk", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6794 + }, "metadata_dict": { "mouth": "grin multicolored", "earring": "diamond stud", @@ -80726,11 +101110,14 @@ "fur": "brown", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6795 + }, "metadata_dict": { "clothes": "rainbow suspenders", "hat": "party hat 1", @@ -80738,22 +101125,28 @@ "eyes": "bloodshot", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6796 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", "mouth": "small grin", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6797 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -80762,22 +101155,28 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6798 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", "eyes": "coins", "clothes": "tanktop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6799 + }, "metadata_dict": { "fur": "dmt", "hat": "king's crown", @@ -80785,11 +101184,14 @@ "mouth": "dumbfounded", "background": "blue", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6800 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -80798,33 +101200,42 @@ "fur": "gray", "mouth": "dumbfounded", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6801 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "eyes": "bored", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6802 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", "fur": "black", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6803 + }, "metadata_dict": { "mouth": "discomfort", "fur": "brown", @@ -80832,11 +101243,14 @@ "background": "purple", "eyes": "angry", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6804 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", @@ -80845,11 +101259,14 @@ "earring": "silver hoop", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6805 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "lumberjack shirt", @@ -80857,11 +101274,14 @@ "earring": "gold stud", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6806 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -80870,22 +101290,28 @@ "fur": "noise", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6807 + }, "metadata_dict": { "background": "new punk blue", "hat": "sushi chef headband", "fur": "dark brown", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6808 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -80893,11 +101319,14 @@ "fur": "black", "eyes": "robot", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6809 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -80905,11 +101334,14 @@ "fur": "pink", "clothes": "tanktop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6810 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "sleeveless t", @@ -80918,11 +101350,14 @@ "earring": "gold hoop", "hat": "stuntman helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6811 + }, "metadata_dict": { "clothes": "bayc t red", "background": "blue", @@ -80930,11 +101365,14 @@ "mouth": "bored unshaven cigar", "hat": "bunny ears", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6812 + }, "metadata_dict": { "eyes": "closed", "clothes": "tweed suit", @@ -80943,22 +101381,28 @@ "fur": "brown", "hat": "safari", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6813 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "blindfold", "hat": "baby's bonnet", "fur": "gray", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6814 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven cigarette", @@ -80967,11 +101411,14 @@ "eyes": "bored", "fur": "cheetah", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6815 + }, "metadata_dict": { "mouth": "discomfort", "fur": "dmt", @@ -80979,11 +101426,14 @@ "eyes": "bored", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6816 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", @@ -80991,11 +101441,14 @@ "background": "orange", "hat": "bunny ears", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6817 + }, "metadata_dict": { "clothes": "space suit", "hat": "party hat 1", @@ -81003,11 +101456,14 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6818 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -81016,11 +101472,14 @@ "earring": "silver hoop", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6819 + }, "metadata_dict": { "background": "orange", "mouth": "bored pizza", @@ -81029,22 +101488,28 @@ "fur": "white", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6820 + }, "metadata_dict": { "fur": "tan", "eyes": "bored", "mouth": "bored cigarette", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6821 + }, "metadata_dict": { "clothes": "striped tee", "fur": "black", @@ -81052,11 +101517,14 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6822 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -81064,22 +101532,28 @@ "clothes": "sailor shirt", "hat": "faux hawk", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6823 + }, "metadata_dict": { "fur": "cream", "background": "blue", "eyes": "3d", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6824 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "red", @@ -81087,11 +101561,14 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6825 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", @@ -81100,11 +101577,14 @@ "fur": "brown", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6826 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -81113,11 +101593,14 @@ "earring": "silver hoop", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6827 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -81125,11 +101608,14 @@ "clothes": "black holes t", "hat": "prussian helmet", "mouth": "jovial" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6828 + }, "metadata_dict": { "background": "blue", "fur": "black", @@ -81137,11 +101623,14 @@ "clothes": "toga", "mouth": "bored unshaven cigarette", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6829 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -81149,11 +101638,14 @@ "earring": "silver stud", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6830 + }, "metadata_dict": { "hat": "horns", "clothes": "sailor shirt", @@ -81161,22 +101653,28 @@ "fur": "dark brown", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6831 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "golden brown", "background": "gray", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6832 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sailor shirt", @@ -81184,11 +101682,14 @@ "hat": "bayc flipped brim", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6833 + }, "metadata_dict": { "earring": "silver stud", "fur": "red", @@ -81196,22 +101697,28 @@ "background": "gray", "mouth": "bored unshaven dagger", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6834 + }, "metadata_dict": { "mouth": "discomfort", "fur": "black", "eyes": "bored", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6835 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -81220,11 +101727,14 @@ "eyes": "bloodshot", "hat": "girl's hair short", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6836 + }, "metadata_dict": { "eyes": "heart", "hat": "sushi chef headband", @@ -81232,22 +101742,28 @@ "fur": "red", "clothes": "biker vest", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6837 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", "background": "orange", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6838 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "background": "blue", @@ -81255,11 +101771,14 @@ "hat": "cowboy hat", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6839 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -81267,11 +101786,14 @@ "clothes": "rainbow suspenders", "background": "orange", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6840 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -81279,33 +101801,42 @@ "earring": "gold stud", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6841 + }, "metadata_dict": { "fur": "trippy", "eyes": "bloodshot", "mouth": "bored unshaven cigar", "background": "yellow", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6842 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", "eyes": "3d", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6843 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", @@ -81313,11 +101844,14 @@ "fur": "brown", "clothes": "bone necklace", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6844 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "dumbfounded", @@ -81326,11 +101860,14 @@ "hat": "short mohawk", "fur": "black", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6845 + }, "metadata_dict": { "mouth": "bored kazoo", "hat": "fez", @@ -81338,22 +101875,28 @@ "clothes": "biker vest", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6846 + }, "metadata_dict": { "eyes": "closed", "clothes": "leather punk jacket", "fur": "tan", "mouth": "rage", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6847 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -81361,11 +101904,14 @@ "fur": "dark brown", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6848 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -81374,11 +101920,14 @@ "hat": "short mohawk", "eyes": "bored", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6849 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "kings robe", @@ -81387,11 +101936,14 @@ "earring": "silver stud", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6850 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -81399,22 +101951,28 @@ "hat": "cowboy hat", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6851 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", "fur": "dark brown", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6852 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", @@ -81422,11 +101980,14 @@ "background": "aquamarine", "hat": "bayc flipped brim", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6853 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "closed", @@ -81434,11 +101995,14 @@ "background": "aquamarine", "fur": "dark brown", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6854 + }, "metadata_dict": { "hat": "s&m hat", "earring": "gold hoop", @@ -81447,33 +102011,42 @@ "background": "aquamarine", "fur": "black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6855 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", "eyes": "robot", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6856 + }, "metadata_dict": { "eyes": "blindfold", "hat": "baby's bonnet", "fur": "red", "background": "blue", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6857 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -81481,32 +102054,41 @@ "fur": "red", "background": "blue", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6858 + }, "metadata_dict": { "fur": "red", "eyes": "sunglasses", "mouth": "bored unshaven kazoo", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6859 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "hypnotized", "fur": "golden brown", "hat": "seaman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6860 + }, "metadata_dict": { "fur": "tan", "hat": "irish boho", @@ -81515,11 +102097,14 @@ "clothes": "guayabera", "background": "army green", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6861 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -81528,22 +102113,28 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6862 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", "clothes": "wool turtleneck", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6863 + }, "metadata_dict": { "hat": "fez", "mouth": "rage", @@ -81551,11 +102142,14 @@ "fur": "black", "clothes": "tuxedo tee", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6864 + }, "metadata_dict": { "hat": "girl's hair short", "earring": "silver stud", @@ -81564,31 +102158,40 @@ "eyes": "bored", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6865 + }, "metadata_dict": { "background": "gray", "fur": "gray", "eyes": "bloodshot", "mouth": "bored unshaven kazoo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6866 + }, "metadata_dict": { "fur": "red", "eyes": "sleepy", "mouth": "grin", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6867 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -81596,22 +102199,28 @@ "hat": "fez", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6868 + }, "metadata_dict": { "mouth": "discomfort", "hat": "seaman's hat", "background": "aquamarine", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6869 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -81619,22 +102228,28 @@ "background": "aquamarine", "eyes": "crazy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6870 + }, "metadata_dict": { "fur": "golden brown", "eyes": "3d", "hat": "bayc flipped brim", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6871 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -81642,11 +102257,14 @@ "eyes": "3d", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6872 + }, "metadata_dict": { "eyes": "holographic", "clothes": "tuxedo tee", @@ -81655,21 +102273,27 @@ "mouth": "bored", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6873 + }, "metadata_dict": { "background": "gray", "eyes": "wide eyed", "fur": "cheetah", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6874 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver hoop", @@ -81678,11 +102302,14 @@ "background": "army green", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6875 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme ooo", @@ -81691,11 +102318,14 @@ "fur": "dark brown", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6876 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "dmt", @@ -81703,11 +102333,14 @@ "background": "aquamarine", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6877 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -81715,22 +102348,28 @@ "hat": "short mohawk", "eyes": "bloodshot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6878 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "eyes": "3d", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6879 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "bloodshot", @@ -81739,11 +102378,14 @@ "background": "yellow", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6880 + }, "metadata_dict": { "eyes": "closed", "hat": "baby's bonnet", @@ -81752,11 +102394,14 @@ "mouth": "small grin", "clothes": "tuxedo tee", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6881 + }, "metadata_dict": { "mouth": "grin diamond grill", "background": "aquamarine", @@ -81764,22 +102409,28 @@ "clothes": "bayc t black", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6882 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "hat": "prussian helmet", "eyes": "bloodshot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6883 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "blue", @@ -81787,11 +102438,14 @@ "clothes": "toga", "fur": "brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6884 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -81799,11 +102453,14 @@ "hat": "s&m hat", "background": "aquamarine", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6885 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "earring": "silver stud", @@ -81812,11 +102469,14 @@ "fur": "brown", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6886 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -81825,44 +102485,56 @@ "fur": "black", "eyes": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6887 + }, "metadata_dict": { "mouth": "grin", "eyes": "bored", "fur": "cheetah", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6888 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "cowboy shirt", "eyes": "robot", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6889 + }, "metadata_dict": { "fur": "cream", "clothes": "rainbow suspenders", "background": "orange", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6890 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored kazoo", @@ -81870,11 +102542,14 @@ "background": "orange", "hat": "army hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6891 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "irish boho", @@ -81882,22 +102557,28 @@ "fur": "red", "background": "aquamarine", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6892 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", "background": "aquamarine", "eyes": "bored", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6893 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -81906,22 +102587,28 @@ "fur": "tan", "earring": "silver stud", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6894 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "brown", "background": "yellow", "eyes": "angry", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6895 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "zombie", @@ -81930,11 +102617,14 @@ "background": "orange", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6896 + }, "metadata_dict": { "eyes": "x eyes", "background": "gray", @@ -81942,11 +102632,14 @@ "earring": "gold stud", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6897 + }, "metadata_dict": { "background": "aquamarine", "fur": "pink", @@ -81954,11 +102647,14 @@ "clothes": "tuxedo tee", "mouth": "bored cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6898 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", @@ -81966,11 +102662,14 @@ "eyes": "3d", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6899 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "gold hoop", @@ -81979,11 +102678,14 @@ "hat": "girl's hair short", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6900 + }, "metadata_dict": { "clothes": "tweed suit", "mouth": "bored pipe", @@ -81991,11 +102693,14 @@ "fur": "dark brown", "hat": "bunny ears", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6901 + }, "metadata_dict": { "background": "aquamarine", "clothes": "tuxedo tee", @@ -82004,22 +102709,28 @@ "hat": "bayc hat red", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6902 + }, "metadata_dict": { "background": "aquamarine", "clothes": "tuxedo tee", "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6903 + }, "metadata_dict": { "clothes": "bandolier", "hat": "irish boho", @@ -82027,11 +102738,14 @@ "fur": "black", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6904 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "diamond stud", @@ -82040,21 +102754,27 @@ "background": "orange", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6905 + }, "metadata_dict": { "mouth": "jovial", "eyes": "sleepy", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6906 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -82062,11 +102782,14 @@ "eyes": "bored", "clothes": "sleeveless logo t", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6907 + }, "metadata_dict": { "fur": "tan", "eyes": "bloodshot", @@ -82074,11 +102797,14 @@ "hat": "bowler", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6908 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -82086,11 +102812,14 @@ "background": "aquamarine", "hat": "bayc flipped brim", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6909 + }, "metadata_dict": { "eyes": "closed", "background": "blue", @@ -82098,11 +102827,14 @@ "fur": "brown", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6910 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "hypnotized", @@ -82110,11 +102842,14 @@ "mouth": "bored pipe", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6911 + }, "metadata_dict": { "earring": "gold hoop", "hat": "short mohawk", @@ -82123,11 +102858,14 @@ "background": "gray", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6912 + }, "metadata_dict": { "fur": "cream", "hat": "fez", @@ -82135,11 +102873,14 @@ "clothes": "tanktop", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6913 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -82147,11 +102888,14 @@ "hat": "ww2 pilot helm", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6914 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "blue", @@ -82159,11 +102903,14 @@ "fur": "white", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6915 + }, "metadata_dict": { "eyes": "holographic", "hat": "girl's hair pink", @@ -82172,11 +102919,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6916 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme ooo", @@ -82185,11 +102935,14 @@ "background": "yellow", "fur": "robot", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6917 + }, "metadata_dict": { "eyes": "3d", "clothes": "smoking jacket", @@ -82197,11 +102950,14 @@ "background": "purple", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6918 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "zombie", @@ -82209,11 +102965,14 @@ "mouth": "dumbfounded", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6919 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -82222,11 +102981,14 @@ "clothes": "toga", "background": "gray", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6920 + }, "metadata_dict": { "clothes": "black holes t", "hat": "fez", @@ -82234,11 +102996,14 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6921 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -82246,11 +103011,14 @@ "clothes": "hawaiian", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6922 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -82258,11 +103026,14 @@ "background": "purple", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6923 + }, "metadata_dict": { "fur": "cream", "eyes": "sad", @@ -82270,11 +103041,14 @@ "mouth": "bored unshaven cigarette", "hat": "police motorcycle helmet", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6924 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "bone necklace", @@ -82282,11 +103056,14 @@ "eyes": "bloodshot", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6925 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored dagger", @@ -82295,11 +103072,14 @@ "hat": "spinner hat", "clothes": "smoking jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6926 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sailor shirt", @@ -82307,11 +103087,14 @@ "mouth": "dumbfounded", "eyes": "3d", "fur": "pink" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6927 + }, "metadata_dict": { "eyes": "coins", "clothes": "black t", @@ -82320,11 +103103,14 @@ "earring": "gold stud", "hat": "spinner hat", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6928 + }, "metadata_dict": { "mouth": "phoneme oh", "earring": "silver stud", @@ -82333,11 +103119,14 @@ "hat": "beanie", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6929 + }, "metadata_dict": { "fur": "tan", "hat": "sea captain's hat", @@ -82345,11 +103134,14 @@ "background": "blue", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6930 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "jovial", @@ -82357,22 +103149,28 @@ "hat": "vietnam era helmet", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6931 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "hat": "bayc flipped brim", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6932 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "sleeveless t", @@ -82380,11 +103178,14 @@ "eyes": "3d", "fur": "dark brown", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6933 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -82392,11 +103193,14 @@ "fur": "black", "earring": "silver hoop", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6934 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -82405,11 +103209,14 @@ "earring": "silver stud", "fur": "black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6935 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "pink", @@ -82417,11 +103224,14 @@ "hat": "ww2 pilot helm", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6936 + }, "metadata_dict": { "mouth": "bored dagger", "hat": "baby's bonnet", @@ -82429,22 +103239,28 @@ "clothes": "tuxedo tee", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6937 + }, "metadata_dict": { "eyes": "wide eyed", "mouth": "rage", "clothes": "toga", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6938 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "grin diamond grill", @@ -82453,33 +103269,42 @@ "fur": "dark brown", "eyes": "bored", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6939 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme ooo", "background": "orange", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6940 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored unshaven", "eyes": "hypnotized", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6941 + }, "metadata_dict": { "eyes": "coins", "earring": "silver stud", @@ -82487,11 +103312,14 @@ "fur": "black", "clothes": "lab coat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6942 + }, "metadata_dict": { "background": "orange", "earring": "silver hoop", @@ -82499,11 +103327,14 @@ "mouth": "bored", "fur": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6943 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -82511,11 +103342,14 @@ "fur": "black", "eyes": "3d", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6944 + }, "metadata_dict": { "earring": "diamond stud", "fur": "red", @@ -82524,22 +103358,28 @@ "mouth": "bored unshaven kazoo", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6945 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", "fur": "golden brown", "hat": "seaman's hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6946 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "silver stud", @@ -82548,22 +103388,28 @@ "fur": "brown", "eyes": "angry", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6947 + }, "metadata_dict": { "eyes": "heart", "mouth": "rage", "clothes": "lab coat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6948 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "rage", @@ -82571,22 +103417,28 @@ "clothes": "toga", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6949 + }, "metadata_dict": { "eyes": "closed", "clothes": "bandolier", "fur": "trippy", "background": "blue", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6950 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "king's crown", @@ -82594,11 +103446,14 @@ "fur": "dark brown", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6951 + }, "metadata_dict": { "hat": "irish boho", "eyes": "coins", @@ -82607,22 +103462,28 @@ "earring": "silver hoop", "mouth": "tongue out", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6952 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "eyes": "bored", "background": "yellow", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6953 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -82630,11 +103491,14 @@ "fur": "cream", "clothes": "space suit", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6954 + }, "metadata_dict": { "fur": "tan", "earring": "diamond stud", @@ -82643,11 +103507,14 @@ "hat": "commie hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6955 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "lumberjack shirt", @@ -82655,22 +103522,28 @@ "mouth": "bored cigarette", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6956 + }, "metadata_dict": { "background": "new punk blue", "hat": "spinner hat", "fur": "pink", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6957 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "striped tee", @@ -82679,11 +103552,14 @@ "earring": "gold stud", "hat": "spinner hat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6958 + }, "metadata_dict": { "eyes": "coins", "mouth": "phoneme vuh", @@ -82692,22 +103568,28 @@ "background": "gray", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6959 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "tongue out", "background": "yellow", "fur": "death bot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6960 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -82715,11 +103597,14 @@ "clothes": "toga", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6961 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -82727,11 +103612,14 @@ "clothes": "sailor shirt", "background": "blue", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6962 + }, "metadata_dict": { "earring": "gold hoop", "fur": "dark brown", @@ -82740,11 +103628,14 @@ "background": "yellow", "mouth": "phoneme wah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6963 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "jovial", @@ -82752,11 +103643,14 @@ "fur": "brown", "hat": "commie hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6964 + }, "metadata_dict": { "mouth": "bored dagger", "hat": "horns", @@ -82765,11 +103659,14 @@ "clothes": "bayc t black", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6965 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -82777,11 +103674,14 @@ "background": "orange", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6966 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -82789,11 +103689,14 @@ "fur": "pink", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6967 + }, "metadata_dict": { "mouth": "rage", "fur": "noise", @@ -82801,11 +103704,14 @@ "background": "gray", "eyes": "angry", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6968 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -82813,11 +103719,14 @@ "mouth": "bored pipe", "earring": "gold stud", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6969 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -82826,11 +103735,14 @@ "clothes": "prison jumpsuit", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6970 + }, "metadata_dict": { "fur": "cream", "clothes": "lumberjack shirt", @@ -82839,11 +103751,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6971 + }, "metadata_dict": { "clothes": "striped tee", "background": "blue", @@ -82851,44 +103766,56 @@ "fur": "cheetah", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6972 + }, "metadata_dict": { "fur": "golden brown", "hat": "prussian helmet", "mouth": "bored unshaven pipe", "background": "aquamarine", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6973 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", "fur": "cream", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6974 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", "background": "blue", "eyes": "3d", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6975 + }, "metadata_dict": { "eyes": "heart", "mouth": "rage", @@ -82897,22 +103824,28 @@ "clothes": "tie dye", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6976 + }, "metadata_dict": { "mouth": "tongue out", "eyes": "blindfold", "fur": "dark brown", "hat": "fisherman's hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6977 + }, "metadata_dict": { "fur": "cream", "earring": "diamond stud", @@ -82920,11 +103853,14 @@ "background": "aquamarine", "eyes": "bloodshot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6978 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "hypnotized", @@ -82932,22 +103868,28 @@ "mouth": "bored unshaven cigarette", "earring": "silver stud", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6979 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "brown", "eyes": "angry", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6980 + }, "metadata_dict": { "mouth": "grin", "clothes": "rainbow suspenders", @@ -82955,11 +103897,14 @@ "eyes": "bored", "hat": "bowler", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6981 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -82968,22 +103913,28 @@ "hat": "bowler", "eyes": "sleepy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6982 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "fur": "dark brown", "clothes": "prom dress", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6983 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -82991,11 +103942,14 @@ "background": "blue", "fur": "white", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6984 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", @@ -83004,11 +103958,14 @@ "earring": "silver hoop", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6985 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -83017,22 +103974,28 @@ "hat": "faux hawk", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6986 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "zombie", "fur": "red", "background": "blue", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6987 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -83040,11 +104003,14 @@ "hat": "bowler", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6988 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -83052,44 +104018,56 @@ "background": "blue", "earring": "gold stud", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6989 + }, "metadata_dict": { "eyes": "closed", "fur": "red", "clothes": "biker vest", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6990 + }, "metadata_dict": { "background": "new punk blue", "fur": "brown", "eyes": "sleepy", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6991 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "robot", "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6992 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "lumberjack shirt", @@ -83097,11 +104075,14 @@ "background": "yellow", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6993 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "cowboy shirt", @@ -83109,22 +104090,28 @@ "hat": "cowboy hat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6994 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "clothes": "tweed suit", "fur": "red", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6995 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -83133,11 +104120,14 @@ "background": "aquamarine", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6996 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -83145,11 +104135,14 @@ "eyes": "bored", "clothes": "sleeveless logo t", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6997 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "bandolier", @@ -83157,11 +104150,14 @@ "mouth": "small grin", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6998 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -83169,11 +104165,14 @@ "eyes": "coins", "hat": "beanie", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 6999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 6999 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -83182,11 +104181,14 @@ "earring": "gold stud", "clothes": "bayc t black", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7000 + }, "metadata_dict": { "eyes": "zombie", "earring": "gold hoop", @@ -83194,11 +104196,14 @@ "clothes": "smoking jacket", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7001 + }, "metadata_dict": { "background": "aquamarine", "fur": "dark brown", @@ -83206,11 +104211,14 @@ "mouth": "bored unshaven cigarette", "eyes": "sleepy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7002 + }, "metadata_dict": { "clothes": "striped tee", "fur": "pink", @@ -83218,22 +104226,28 @@ "eyes": "bloodshot", "hat": "ww2 pilot helm", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7003 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "coins", "fur": "black", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7004 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -83242,11 +104256,14 @@ "fur": "death bot", "hat": "commie hat", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7005 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "zombie", @@ -83254,11 +104271,14 @@ "fur": "black", "background": "orange", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7006 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "halo", @@ -83267,11 +104287,14 @@ "background": "orange", "clothes": "toga", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7007 + }, "metadata_dict": { "eyes": "robot", "fur": "cheetah", @@ -83279,32 +104302,41 @@ "mouth": "bored", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7008 + }, "metadata_dict": { "fur": "brown", "eyes": "robot", "background": "blue", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7009 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored party horn", "background": "orange", "fur": "dark brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7010 + }, "metadata_dict": { "mouth": "bored dagger", "clothes": "tweed suit", @@ -83312,33 +104344,42 @@ "fur": "brown", "eyes": "sleepy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7011 + }, "metadata_dict": { "background": "new punk blue", "eyes": "wide eyed", "mouth": "jovial", "fur": "brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7012 + }, "metadata_dict": { "eyes": "x eyes", "hat": "king's crown", "mouth": "bored pipe", "fur": "pink", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7013 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "grin", @@ -83346,11 +104387,14 @@ "fur": "dark brown", "clothes": "bayc t black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7014 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -83358,11 +104402,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7015 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -83370,11 +104417,14 @@ "clothes": "prom dress", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7016 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme vuh", @@ -83382,11 +104432,14 @@ "fur": "pink", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7017 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -83395,22 +104448,28 @@ "background": "orange", "eyes": "bored", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7018 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", "fur": "golden brown", "hat": "baby's bonnet", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7019 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "sailor shirt", @@ -83418,11 +104477,14 @@ "fur": "brown", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7020 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "coins", @@ -83430,11 +104492,14 @@ "clothes": "tweed suit", "background": "blue", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7021 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -83442,11 +104507,14 @@ "fur": "black", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7022 + }, "metadata_dict": { "mouth": "grin", "earring": "silver stud", @@ -83454,22 +104522,28 @@ "hat": "cowboy hat", "fur": "robot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7023 + }, "metadata_dict": { "background": "gray", "mouth": "bored bubblegum", "fur": "brown", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7024 + }, "metadata_dict": { "mouth": "phoneme vuh", "clothes": "leather jacket", @@ -83477,11 +104551,14 @@ "fur": "brown", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7025 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", @@ -83490,11 +104567,14 @@ "earring": "silver stud", "background": "blue", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7026 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -83503,11 +104583,14 @@ "background": "purple", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7027 + }, "metadata_dict": { "eyes": "blindfold", "fur": "cream", @@ -83515,22 +104598,28 @@ "earring": "diamond stud", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7028 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "fur": "dark brown", "background": "gray", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7029 + }, "metadata_dict": { "background": "orange", "fur": "cheetah", @@ -83538,44 +104627,56 @@ "eyes": "sleepy", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7030 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "clothes": "leather punk jacket", "mouth": "jovial", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7031 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "background": "gray", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7032 + }, "metadata_dict": { "eyes": "eyepatch", "background": "aquamarine", "fur": "dark brown", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7033 + }, "metadata_dict": { "fur": "tan", "hat": "fez", @@ -83584,11 +104685,14 @@ "clothes": "navy striped tee", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7034 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -83597,11 +104701,14 @@ "fur": "brown", "background": "yellow", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7035 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "zombie", @@ -83610,33 +104717,42 @@ "background": "orange", "eyes": "bloodshot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7036 + }, "metadata_dict": { "earring": "diamond stud", "fur": "brown", "eyes": "robot", "background": "blue", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7037 + }, "metadata_dict": { "mouth": "grin", "hat": "prussian helmet", "eyes": "bloodshot", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7038 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -83644,11 +104760,14 @@ "background": "orange", "clothes": "pimp coat", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7039 + }, "metadata_dict": { "background": "new punk blue", "hat": "sushi chef headband", @@ -83657,11 +104776,14 @@ "clothes": "tuxedo tee", "fur": "cheetah", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7040 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -83669,11 +104791,14 @@ "eyes": "bored", "background": "gray", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7041 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -83681,33 +104806,42 @@ "mouth": "small grin", "hat": "ww2 pilot helm", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7042 + }, "metadata_dict": { "eyes": "coins", "mouth": "rage", "background": "aquamarine", "hat": "fisherman's hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7043 + }, "metadata_dict": { "background": "orange", "mouth": "bored unshaven cigarette", "eyes": "crazy", "fur": "robot", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7044 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -83715,11 +104849,14 @@ "eyes": "bloodshot", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7045 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "black holes t", @@ -83727,11 +104864,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7046 + }, "metadata_dict": { "hat": "horns", "fur": "gray", @@ -83739,11 +104879,14 @@ "mouth": "bored bubblegum", "clothes": "smoking jacket", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7047 + }, "metadata_dict": { "background": "aquamarine", "clothes": "smoking jacket", @@ -83751,11 +104894,14 @@ "hat": "ww2 pilot helm", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7048 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "blue", @@ -83764,11 +104910,14 @@ "earring": "silver hoop", "fur": "cheetah", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7049 + }, "metadata_dict": { "fur": "pink", "background": "orange", @@ -83776,22 +104925,28 @@ "mouth": "bored unshaven cigarette", "clothes": "prom dress", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7050 + }, "metadata_dict": { "fur": "cream", "hat": "baby's bonnet", "mouth": "small grin", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7051 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "prison jumpsuit", @@ -83799,22 +104954,28 @@ "eyes": "bored", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7052 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", "clothes": "sleeveless logo t", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7053 + }, "metadata_dict": { "hat": "party hat 2", "fur": "golden brown", @@ -83822,21 +104983,27 @@ "background": "purple", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7054 + }, "metadata_dict": { "eyes": "crazy", "mouth": "bored cigarette", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7055 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -83844,11 +105011,14 @@ "eyes": "bloodshot", "hat": "short mohawk", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7056 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -83857,22 +105027,28 @@ "hat": "vietnam era helmet", "eyes": "angry", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7057 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "hat": "bunny ears", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7058 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", @@ -83881,11 +105057,14 @@ "background": "yellow", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7059 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "clothes": "prison jumpsuit", @@ -83893,43 +105072,55 @@ "background": "gray", "eyes": "crazy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7060 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "eyes": "coins", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7061 + }, "metadata_dict": { "background": "yellow", "mouth": "bored unshaven", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7062 + }, "metadata_dict": { "background": "aquamarine", "hat": "spinner hat", "mouth": "tongue out", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7063 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -83937,44 +105128,56 @@ "background": "purple", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7064 + }, "metadata_dict": { "mouth": "phoneme vuh", "eyes": "robot", "fur": "brown", "hat": "bayc hat red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7065 + }, "metadata_dict": { "background": "aquamarine", "eyes": "bored", "fur": "brown", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7066 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "fur": "black", "hat": "bayc flipped brim", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7067 + }, "metadata_dict": { "fur": "gray", "earring": "gold hoop", @@ -83983,22 +105186,28 @@ "eyes": "crazy", "hat": "police motorcycle helmet", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7068 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "background": "blue", "fur": "dark brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7069 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -84006,32 +105215,41 @@ "fur": "golden brown", "earring": "cross", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7070 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "gray", "background": "orange", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7071 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "dark brown", "background": "army green", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7072 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", @@ -84039,22 +105257,28 @@ "clothes": "bayc t black", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7073 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "golden brown", "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7074 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -84062,11 +105286,14 @@ "hat": "army hat", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7075 + }, "metadata_dict": { "eyes": "scumbag", "hat": "seaman's hat", @@ -84074,11 +105301,14 @@ "background": "yellow", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7076 + }, "metadata_dict": { "clothes": "blue dress", "earring": "silver hoop", @@ -84086,11 +105316,14 @@ "fur": "cheetah", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7077 + }, "metadata_dict": { "clothes": "striped tee", "hat": "s&m hat", @@ -84098,11 +105331,14 @@ "fur": "gray", "background": "blue", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7078 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "phoneme vuh", @@ -84110,11 +105346,14 @@ "fur": "black", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7079 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -84122,11 +105361,14 @@ "mouth": "bored unshaven pipe", "clothes": "tanktop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7080 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "baby's bonnet", @@ -84134,11 +105376,14 @@ "background": "gray", "eyes": "sleepy", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7081 + }, "metadata_dict": { "hat": "irish boho", "earring": "diamond stud", @@ -84147,11 +105392,14 @@ "fur": "robot", "clothes": "bone tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7082 + }, "metadata_dict": { "background": "new punk blue", "fur": "brown", @@ -84159,11 +105407,14 @@ "earring": "silver hoop", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7083 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -84171,11 +105422,14 @@ "background": "yellow", "clothes": "guayabera", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7084 + }, "metadata_dict": { "clothes": "striped tee", "hat": "sushi chef headband", @@ -84183,11 +105437,14 @@ "background": "aquamarine", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7085 + }, "metadata_dict": { "earring": "silver stud", "background": "aquamarine", @@ -84195,11 +105452,14 @@ "hat": "safari", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7086 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 1", @@ -84207,11 +105467,14 @@ "eyes": "bored", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7087 + }, "metadata_dict": { "clothes": "rainbow suspenders", "hat": "fez", @@ -84219,11 +105482,14 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7088 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -84232,11 +105498,14 @@ "clothes": "stunt jacket", "hat": "safari", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7089 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -84244,22 +105513,28 @@ "eyes": "sleepy", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7090 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "mouth": "grin multicolored", "fur": "solid gold", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7091 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -84267,11 +105542,14 @@ "eyes": "robot", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7092 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -84279,22 +105557,28 @@ "eyes": "bored", "hat": "girl's hair short", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7093 + }, "metadata_dict": { "fur": "golden brown", "background": "gray", "mouth": "bored", "eyes": "angry", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7094 + }, "metadata_dict": { "mouth": "grin gold grill", "hat": "sushi chef headband", @@ -84302,22 +105586,28 @@ "eyes": "3d", "clothes": "guayabera", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7095 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "hat": "sushi chef headband", "fur": "dark brown", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7096 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -84326,11 +105616,14 @@ "clothes": "tanktop", "hat": "bayc hat red", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7097 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "space suit", @@ -84339,22 +105632,28 @@ "hat": "beanie", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7098 + }, "metadata_dict": { "eyes": "heart", "fur": "black", "background": "yellow", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7099 + }, "metadata_dict": { "hat": "girl's hair pink", "eyes": "robot", @@ -84362,11 +105661,14 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7100 + }, "metadata_dict": { "fur": "gray", "clothes": "tweed suit", @@ -84374,11 +105676,14 @@ "earring": "silver stud", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7101 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "dumbfounded", @@ -84387,11 +105692,14 @@ "background": "purple", "clothes": "hip hop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7102 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "rage", @@ -84399,11 +105707,14 @@ "background": "gray", "earring": "cross", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7103 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -84412,11 +105723,14 @@ "hat": "short mohawk", "earring": "silver hoop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7104 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "spinner hat", @@ -84424,11 +105738,14 @@ "mouth": "tongue out", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7105 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -84437,22 +105754,28 @@ "earring": "gold stud", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7106 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", "fur": "gray", "background": "blue", "hat": "spinner hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7107 + }, "metadata_dict": { "background": "new punk blue", "eyes": "3d", @@ -84460,21 +105783,27 @@ "clothes": "stunt jacket", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7108 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", "fur": "tan", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7109 + }, "metadata_dict": { "eyes": "heart", "hat": "irish boho", @@ -84482,22 +105811,28 @@ "fur": "red", "earring": "gold stud", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7110 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "bored unshaven", "background": "yellow", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7111 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -84505,11 +105840,14 @@ "mouth": "dumbfounded", "hat": "army hat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7112 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", @@ -84517,11 +105855,14 @@ "clothes": "tanktop", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7113 + }, "metadata_dict": { "eyes": "heart", "background": "gray", @@ -84529,22 +105870,28 @@ "hat": "baby's bonnet", "clothes": "bayc t black", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7114 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "robot", "background": "orange", "fur": "dark brown", "mouth": "bored pizza" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7115 + }, "metadata_dict": { "hat": "irish boho", "fur": "cheetah", @@ -84552,22 +105899,28 @@ "eyes": "sleepy", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7116 + }, "metadata_dict": { "mouth": "rage", "fur": "dark brown", "background": "yellow", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7117 + }, "metadata_dict": { "background": "gray", "eyes": "robot", @@ -84576,11 +105929,14 @@ "clothes": "guayabera", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7118 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black suit", @@ -84588,54 +105944,69 @@ "fur": "dark brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7119 + }, "metadata_dict": { "fur": "red", "eyes": "3d", "mouth": "bored bubblegum", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7120 + }, "metadata_dict": { "fur": "cream", "eyes": "bored", "mouth": "bored unshaven cigar", "background": "gray", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7121 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "smoking jacket", "eyes": "bored", "background": "gray", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7122 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", "hat": "fisherman's hat", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7123 + }, "metadata_dict": { "fur": "cream", "hat": "party hat 1", @@ -84643,11 +106014,14 @@ "eyes": "bored", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7124 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", @@ -84655,11 +106029,14 @@ "eyes": "robot", "clothes": "navy striped tee", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7125 + }, "metadata_dict": { "fur": "golden brown", "clothes": "black t", @@ -84667,11 +106044,14 @@ "background": "yellow", "mouth": "bored cigarette", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7126 + }, "metadata_dict": { "background": "blue", "eyes": "bored", @@ -84679,11 +106059,14 @@ "mouth": "bored", "fur": "zombie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7127 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -84691,11 +106074,14 @@ "hat": "beanie", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7128 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -84703,22 +106089,28 @@ "clothes": "guayabera", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7129 + }, "metadata_dict": { "hat": "prussian helmet", "eyes": "sleepy", "mouth": "bored", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7130 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "scumbag", @@ -84726,11 +106118,14 @@ "fur": "dark brown", "mouth": "bored unshaven dagger", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7131 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "gray", @@ -84738,11 +106133,14 @@ "mouth": "bored cigarette", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7132 + }, "metadata_dict": { "eyes": "blindfold", "background": "gray", @@ -84750,22 +106148,28 @@ "mouth": "phoneme vuh", "clothes": "work vest", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7133 + }, "metadata_dict": { "fur": "dmt", "eyes": "zombie", "clothes": "tuxedo tee", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7134 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "gray", @@ -84774,11 +106178,14 @@ "clothes": "bone necklace", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7135 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "red", @@ -84786,32 +106193,41 @@ "eyes": "bored", "hat": "cowboy hat", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7136 + }, "metadata_dict": { "fur": "red", "background": "blue", "mouth": "bored unshaven", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7137 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "background": "yellow", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7138 + }, "metadata_dict": { "fur": "dmt", "mouth": "jovial", @@ -84819,11 +106235,14 @@ "earring": "silver hoop", "hat": "police motorcycle helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7139 + }, "metadata_dict": { "eyes": "coins", "clothes": "sailor shirt", @@ -84831,11 +106250,14 @@ "fur": "black", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7140 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -84843,11 +106265,14 @@ "eyes": "bored", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7141 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -84856,22 +106281,28 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7142 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "hat": "fez", "fur": "red", "eyes": "blue beams" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7143 + }, "metadata_dict": { "background": "aquamarine", "eyes": "robot", @@ -84879,11 +106310,14 @@ "fur": "black", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7144 + }, "metadata_dict": { "mouth": "grin", "eyes": "bored", @@ -84891,11 +106325,14 @@ "clothes": "navy striped tee", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7145 + }, "metadata_dict": { "background": "new punk blue", "eyes": "holographic", @@ -84903,11 +106340,14 @@ "clothes": "prison jumpsuit", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7146 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", @@ -84915,11 +106355,14 @@ "background": "gray", "eyes": "angry", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7147 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -84928,11 +106371,14 @@ "background": "purple", "hat": "fisherman's hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7148 + }, "metadata_dict": { "mouth": "discomfort", "earring": "diamond stud", @@ -84941,11 +106387,14 @@ "hat": "vietnam era helmet", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7149 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -84953,11 +106402,14 @@ "clothes": "leather jacket", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7150 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -84965,11 +106417,14 @@ "fur": "pink", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7151 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "work vest", @@ -84977,11 +106432,14 @@ "eyes": "bloodshot", "hat": "police motorcycle helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7152 + }, "metadata_dict": { "eyes": "closed", "fur": "black", @@ -84989,11 +106447,14 @@ "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7153 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "zombie", @@ -85001,11 +106462,14 @@ "mouth": "bored bubblegum", "hat": "commie hat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7154 + }, "metadata_dict": { "eyes": "closed", "clothes": "bandolier", @@ -85013,11 +106477,14 @@ "fur": "dark brown", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7155 + }, "metadata_dict": { "clothes": "rainbow suspenders", "fur": "dark brown", @@ -85025,22 +106492,28 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7156 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "rainbow suspenders", "mouth": "bored unshaven party horn", "background": "blue", "fur": "noise" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7157 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "seaman's hat", @@ -85048,11 +106521,14 @@ "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7158 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -85060,11 +106536,14 @@ "hat": "army hat", "fur": "white", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7159 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "silver stud", @@ -85073,11 +106552,14 @@ "hat": "short mohawk", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7160 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -85085,11 +106567,14 @@ "hat": "ww2 pilot helm", "clothes": "bone necklace", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7161 + }, "metadata_dict": { "background": "new punk blue", "clothes": "kings robe", @@ -85097,11 +106582,14 @@ "mouth": "bored", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7162 + }, "metadata_dict": { "background": "purple", "fur": "dark brown", @@ -85109,11 +106597,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7163 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "laurel wreath", @@ -85122,44 +106613,56 @@ "fur": "cheetah", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7164 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", "background": "orange", "fur": "dark brown", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7165 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "gray", "background": "aquamarine", "mouth": "small grin", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7166 + }, "metadata_dict": { "eyes": "holographic", "fur": "golden brown", "clothes": "tweed suit", "mouth": "dumbfounded", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7167 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme vuh", @@ -85167,11 +106670,14 @@ "hat": "bowler", "clothes": "caveman pelt", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7168 + }, "metadata_dict": { "eyes": "zombie", "background": "blue", @@ -85180,22 +106686,28 @@ "hat": "bayc hat red", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7169 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin", "fur": "gray", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7170 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -85203,11 +106715,14 @@ "clothes": "leather jacket", "hat": "bayc hat red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7171 + }, "metadata_dict": { "background": "new punk blue", "clothes": "work vest", @@ -85215,11 +106730,14 @@ "earring": "silver hoop", "mouth": "tongue out", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7172 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "cream", @@ -85228,11 +106746,14 @@ "earring": "silver stud", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7173 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -85240,11 +106761,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7174 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -85252,11 +106776,14 @@ "fur": "brown", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7175 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -85264,11 +106791,14 @@ "background": "blue", "clothes": "bone necklace", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7176 + }, "metadata_dict": { "eyes": "heart", "fur": "brown", @@ -85276,11 +106806,14 @@ "hat": "short mohawk", "clothes": "toga", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7177 + }, "metadata_dict": { "hat": "spinner hat", "earring": "gold stud", @@ -85288,11 +106821,14 @@ "mouth": "small grin", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7178 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "laser eyes", @@ -85300,11 +106836,14 @@ "background": "blue", "fur": "brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7179 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "sailor shirt", @@ -85312,11 +106851,14 @@ "fur": "pink", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7180 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -85324,11 +106866,14 @@ "mouth": "phoneme vuh", "background": "blue", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7181 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -85337,43 +106882,55 @@ "fur": "red", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7182 + }, "metadata_dict": { "background": "gray", "eyes": "closed", "fur": "gray", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7183 + }, "metadata_dict": { "fur": "black", "eyes": "bloodshot", "background": "purple", "mouth": "bored cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7184 + }, "metadata_dict": { "fur": "golden brown", "background": "gray", "eyes": "sleepy", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7185 + }, "metadata_dict": { "clothes": "leather jacket", "eyes": "bored", @@ -85381,11 +106938,14 @@ "hat": "bowler", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7186 + }, "metadata_dict": { "earring": "gold hoop", "background": "aquamarine", @@ -85393,11 +106953,14 @@ "hat": "commie hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7187 + }, "metadata_dict": { "hat": "horns", "fur": "trippy", @@ -85405,11 +106968,14 @@ "background": "gray", "clothes": "stunt jacket", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7188 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "dumbfounded", @@ -85417,11 +106983,14 @@ "hat": "bunny ears", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7189 + }, "metadata_dict": { "eyes": "heart", "hat": "s&m hat", @@ -85429,22 +106998,28 @@ "clothes": "tanktop", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7190 + }, "metadata_dict": { "fur": "cheetah", "hat": "seaman's hat", "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7191 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", @@ -85452,11 +107027,14 @@ "clothes": "rainbow suspenders", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7192 + }, "metadata_dict": { "fur": "tan", "clothes": "bandolier", @@ -85464,11 +107042,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7193 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "grin", @@ -85477,22 +107058,28 @@ "background": "orange", "hat": "army hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7194 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "coins", "background": "blue", "hat": "faux hawk", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7195 + }, "metadata_dict": { "eyes": "bloodshot", "fur": "death bot", @@ -85500,22 +107087,28 @@ "hat": "police motorcycle helmet", "clothes": "hawaiian", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7196 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "hat": "stuntman helmet", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7197 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -85523,11 +107116,14 @@ "background": "orange", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7198 + }, "metadata_dict": { "eyes": "zombie", "fur": "brown", @@ -85535,11 +107131,14 @@ "clothes": "pimp coat", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7199 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -85548,22 +107147,28 @@ "fur": "white", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7200 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", "eyes": "3d", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7201 + }, "metadata_dict": { "fur": "gray", "eyes": "coins", @@ -85571,11 +107176,14 @@ "background": "orange", "hat": "short mohawk", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7202 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -85583,22 +107191,28 @@ "fur": "brown", "eyes": "angry", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7203 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "eyes": "3d", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7204 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "aquamarine", @@ -85606,11 +107220,14 @@ "clothes": "tuxedo tee", "fur": "cheetah", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7205 + }, "metadata_dict": { "clothes": "black t", "hat": "sea captain's hat", @@ -85618,11 +107235,14 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7206 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "horns", @@ -85630,32 +107250,41 @@ "background": "aquamarine", "fur": "black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7207 + }, "metadata_dict": { "background": "new punk blue", "fur": "noise", "hat": "bowler", "mouth": "bored cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7208 + }, "metadata_dict": { "background": "gray", "fur": "zombie", "mouth": "bored", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7209 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -85663,11 +107292,14 @@ "mouth": "dumbfounded", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7210 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -85676,11 +107308,14 @@ "hat": "beanie", "clothes": "caveman pelt", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7211 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", @@ -85688,22 +107323,28 @@ "eyes": "bored", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7212 + }, "metadata_dict": { "fur": "cream", "background": "aquamarine", "mouth": "bored", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7213 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", @@ -85711,22 +107352,28 @@ "clothes": "tanktop", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7214 + }, "metadata_dict": { "eyes": "robot", "hat": "fisherman's hat", "fur": "cheetah", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7215 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "sleeveless t", @@ -85735,11 +107382,14 @@ "background": "orange", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7216 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -85748,11 +107398,14 @@ "mouth": "small grin", "earring": "silver hoop", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7217 + }, "metadata_dict": { "mouth": "bored bubblegum", "background": "orange", @@ -85760,11 +107413,14 @@ "hat": "bowler", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7218 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -85773,22 +107429,28 @@ "fur": "dark brown", "mouth": "small grin", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7219 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", "fur": "dark brown", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7220 + }, "metadata_dict": { "fur": "red", "eyes": "robot", @@ -85796,11 +107458,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7221 + }, "metadata_dict": { "fur": "gray", "background": "aquamarine", @@ -85808,11 +107473,14 @@ "hat": "beanie", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7222 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "party hat 1", @@ -85820,22 +107488,28 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7223 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "hat": "s&m hat", "fur": "golden brown", "eyes": "coins" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7224 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -85843,11 +107517,14 @@ "earring": "silver hoop", "clothes": "sleeveless logo t", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7225 + }, "metadata_dict": { "clothes": "black t", "fur": "pink", @@ -85855,22 +107532,28 @@ "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7226 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "grin", "eyes": "3d", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7227 + }, "metadata_dict": { "mouth": "bored cigarette", "eyes": "zombie", @@ -85878,11 +107561,14 @@ "fur": "cheetah", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7228 + }, "metadata_dict": { "fur": "trippy", "background": "orange", @@ -85890,11 +107576,14 @@ "eyes": "bored", "clothes": "admirals coat", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7229 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -85902,77 +107591,98 @@ "fur": "dark brown", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7230 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", "hat": "spinner hat", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7231 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", "fur": "dark brown", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7232 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", "mouth": "bored unshaven", "background": "aquamarine", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7233 + }, "metadata_dict": { "clothes": "black t", "mouth": "bored unshaven pipe", "background": "aquamarine", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7234 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", "clothes": "toga", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7235 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "fur": "tan", "hat": "ww2 pilot helm", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7236 + }, "metadata_dict": { "fur": "tan", "clothes": "black holes t", @@ -85981,11 +107691,14 @@ "background": "purple", "hat": "safari", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7237 + }, "metadata_dict": { "fur": "gray", "hat": "fez", @@ -85994,33 +107707,42 @@ "background": "yellow", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7238 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", "background": "orange", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7239 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "brown", "eyes": "sleepy", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7240 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "sleepy", @@ -86028,11 +107750,14 @@ "clothes": "bayc t black", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7241 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -86041,33 +107766,42 @@ "background": "orange", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7242 + }, "metadata_dict": { "clothes": "smoking jacket", "background": "orange", "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7243 + }, "metadata_dict": { "eyes": "heart", "background": "blue", "fur": "noise", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7244 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -86075,22 +107809,28 @@ "eyes": "3d", "clothes": "tie dye", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7245 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", "fur": "dark brown", "hat": "army hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7246 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "grin diamond grill", @@ -86098,11 +107838,14 @@ "fur": "cheetah", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7247 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -86110,11 +107853,14 @@ "earring": "silver stud", "background": "purple", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7248 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -86122,22 +107868,28 @@ "background": "aquamarine", "fur": "cheetah", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7249 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bored", "mouth": "tongue out", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7250 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "background": "gray", @@ -86145,11 +107897,14 @@ "fur": "white", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7251 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fisherman's hat", @@ -86157,22 +107912,28 @@ "eyes": "sleepy", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7252 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin diamond grill", "eyes": "bored", "fur": "zombie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7253 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "hat": "party hat 2", @@ -86180,54 +107941,69 @@ "fur": "cream", "clothes": "smoking jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7254 + }, "metadata_dict": { "mouth": "bored pipe", "clothes": "smoking jacket", "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7255 + }, "metadata_dict": { "background": "blue", "clothes": "tanktop", "fur": "brown", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7256 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored dagger", "fur": "dark brown", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7257 + }, "metadata_dict": { "mouth": "phoneme l", "background": "purple", "fur": "blue", "eyes": "hypnotized" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7258 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "toga", @@ -86235,11 +108011,14 @@ "hat": "commie hat", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7259 + }, "metadata_dict": { "clothes": "striped tee", "hat": "irish boho", @@ -86247,11 +108026,14 @@ "fur": "red", "background": "orange", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7260 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "tan", @@ -86259,22 +108041,28 @@ "eyes": "bored", "background": "yellow", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7261 + }, "metadata_dict": { "fur": "cream", "background": "blue", "eyes": "bloodshot", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7262 + }, "metadata_dict": { "mouth": "phoneme l", "background": "new punk blue", @@ -86282,11 +108070,14 @@ "eyes": "bored", "hat": "faux hawk", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7263 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "tan", @@ -86294,22 +108085,28 @@ "mouth": "phoneme vuh", "eyes": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7264 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "dark brown", "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7265 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "eyes": "heart", @@ -86318,11 +108115,14 @@ "earring": "gold stud", "clothes": "tie dye", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7266 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -86330,11 +108130,14 @@ "earring": "gold stud", "eyes": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7267 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -86343,11 +108146,14 @@ "clothes": "rainbow suspenders", "earring": "silver stud", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7268 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored dagger", @@ -86355,22 +108161,28 @@ "background": "orange", "eyes": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7269 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", "background": "aquamarine", "clothes": "smoking jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7270 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "jovial", @@ -86378,11 +108190,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7271 + }, "metadata_dict": { "eyes": "closed", "clothes": "bayc t red", @@ -86390,11 +108205,14 @@ "background": "orange", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7272 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored pipe", @@ -86402,22 +108220,28 @@ "clothes": "biker vest", "hat": "girl's hair short", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7273 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "cheetah", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7274 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "aquamarine", @@ -86425,11 +108249,14 @@ "fur": "black", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7275 + }, "metadata_dict": { "background": "aquamarine", "earring": "gold stud", @@ -86438,22 +108265,28 @@ "hat": "bayc flipped brim", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7276 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "cheetah", "clothes": "toga", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7277 + }, "metadata_dict": { "clothes": "sleeveless logo t", "background": "aquamarine", @@ -86461,11 +108294,14 @@ "fur": "cheetah", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7278 + }, "metadata_dict": { "fur": "cream", "hat": "s&m hat", @@ -86473,11 +108309,14 @@ "background": "orange", "eyes": "crazy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7279 + }, "metadata_dict": { "earring": "silver stud", "eyes": "3d", @@ -86485,11 +108324,14 @@ "background": "purple", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7280 + }, "metadata_dict": { "earring": "gold hoop", "fur": "black", @@ -86497,11 +108339,14 @@ "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7281 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven cigarette", @@ -86509,11 +108354,14 @@ "hat": "police motorcycle helmet", "clothes": "bone tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7282 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "zombie", @@ -86521,11 +108369,14 @@ "hat": "spinner hat", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7283 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -86533,11 +108384,14 @@ "eyes": "bored", "hat": "fisherman's hat", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7284 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -86546,11 +108400,14 @@ "earring": "silver hoop", "eyes": "sleepy", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7285 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "zombie", @@ -86558,11 +108415,14 @@ "hat": "bowler", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7286 + }, "metadata_dict": { "eyes": "x eyes", "hat": "party hat 2", @@ -86570,43 +108430,55 @@ "mouth": "grin", "background": "blue", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7287 + }, "metadata_dict": { "background": "yellow", "fur": "pink", "eyes": "crazy", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7288 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", "background": "aquamarine", "eyes": "3d", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7289 + }, "metadata_dict": { "fur": "tan", "hat": "girl's hair pink", "mouth": "rage", "background": "blue", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7290 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "eyepatch", @@ -86614,11 +108486,14 @@ "fur": "tan", "background": "orange", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7291 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "aquamarine", @@ -86626,11 +108501,14 @@ "hat": "police motorcycle helmet", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7292 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "phoneme vuh", @@ -86638,22 +108516,28 @@ "hat": "short mohawk", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7293 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "bored unshaven pipe", "eyes": "bloodshot", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7294 + }, "metadata_dict": { "background": "new punk blue", "hat": "bandana blue", @@ -86661,11 +108545,14 @@ "eyes": "robot", "clothes": "smoking jacket", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7295 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -86673,22 +108560,28 @@ "fur": "black", "clothes": "tanktop", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7296 + }, "metadata_dict": { "earring": "silver stud", "fur": "red", "background": "orange", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7297 + }, "metadata_dict": { "clothes": "lab coat", "mouth": "bored bubblegum", @@ -86697,11 +108590,14 @@ "background": "yellow", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7298 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven cigarette", @@ -86709,22 +108605,28 @@ "clothes": "smoking jacket", "eyes": "bloodshot", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7299 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "smoking jacket", "background": "purple", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7300 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bayc t red", @@ -86732,33 +108634,42 @@ "eyes": "robot", "background": "yellow", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7301 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", "fur": "red", "background": "aquamarine", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7302 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", "fur": "golden brown", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7303 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven party horn", @@ -86766,11 +108677,14 @@ "fur": "dark brown", "hat": "ww2 pilot helm", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7304 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -86778,33 +108692,42 @@ "hat": "girl's hair short", "clothes": "pimp coat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7305 + }, "metadata_dict": { "fur": "pink", "clothes": "guayabera", "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7306 + }, "metadata_dict": { "background": "aquamarine", "eyes": "bored", "hat": "cowboy hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7307 + }, "metadata_dict": { "fur": "golden brown", "hat": "baby's bonnet", @@ -86812,22 +108735,28 @@ "background": "aquamarine", "eyes": "bored", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7308 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", "clothes": "sailor shirt", "fur": "black", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7309 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -86835,33 +108764,42 @@ "background": "aquamarine", "hat": "spinner hat", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7310 + }, "metadata_dict": { "hat": "laurel wreath", "background": "aquamarine", "eyes": "bloodshot", "mouth": "tongue out", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7311 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "robot", "clothes": "service", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7312 + }, "metadata_dict": { "earring": "gold hoop", "hat": "prussian helmet", @@ -86870,11 +108808,14 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7313 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -86882,22 +108823,28 @@ "earring": "silver hoop", "clothes": "toga", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7314 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", "hat": "spinner hat", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7315 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "robot", @@ -86906,11 +108853,14 @@ "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7316 + }, "metadata_dict": { "fur": "cream", "eyes": "zombie", @@ -86918,32 +108868,41 @@ "background": "yellow", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7317 + }, "metadata_dict": { "mouth": "jovial", "background": "yellow", "fur": "black", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7318 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", "hat": "fisherman's hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7319 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "bloodshot", @@ -86951,22 +108910,28 @@ "background": "gray", "earring": "cross", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7320 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "grin", "background": "blue", "fur": "dark brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7321 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "scumbag", @@ -86975,11 +108940,14 @@ "earring": "gold stud", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7322 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "bored", @@ -86987,11 +108955,14 @@ "hat": "beanie", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7323 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -86999,11 +108970,14 @@ "background": "aquamarine", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7324 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t black", @@ -87011,22 +108985,28 @@ "fur": "brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7325 + }, "metadata_dict": { "eyes": "blindfold", "fur": "black", "hat": "army hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7326 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", @@ -87034,11 +109014,14 @@ "eyes": "3d", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7327 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -87046,11 +109029,14 @@ "clothes": "rainbow suspenders", "fur": "noise", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7328 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -87059,11 +109045,14 @@ "clothes": "leather jacket", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7329 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", @@ -87071,22 +109060,28 @@ "fur": "brown", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7330 + }, "metadata_dict": { "fur": "black", "earring": "silver hoop", "background": "yellow", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7331 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "purple", @@ -87095,33 +109090,42 @@ "fur": "brown", "hat": "vietnam era helmet", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7332 + }, "metadata_dict": { "mouth": "small grin", "hat": "cowboy hat", "background": "gray", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7333 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "blindfold", "fur": "brown", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7334 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "cyborg", @@ -87129,11 +109133,14 @@ "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7335 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -87141,33 +109148,42 @@ "hat": "short mohawk", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7336 + }, "metadata_dict": { "background": "aquamarine", "eyes": "bloodshot", "fur": "dark brown", "clothes": "tuxedo tee", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7337 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", "mouth": "grin diamond grill", "fur": "pink", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7338 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "rage", @@ -87176,22 +109192,28 @@ "background": "gray", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7339 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", "fur": "black", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7340 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "yellow", @@ -87199,11 +109221,14 @@ "fur": "dark brown", "hat": "vietnam era helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7341 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bloodshot", @@ -87211,21 +109236,27 @@ "background": "gray", "earring": "cross", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7342 + }, "metadata_dict": { "eyes": "zombie", "background": "purple", "fur": "tan", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7343 + }, "metadata_dict": { "mouth": "dumbfounded", "clothes": "bayc t black", @@ -87233,11 +109264,14 @@ "background": "army green", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7344 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "sleepy", @@ -87245,22 +109279,28 @@ "hat": "army hat", "background": "purple", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7345 + }, "metadata_dict": { "hat": "party hat 2", "eyes": "laser eyes", "fur": "golden brown", "mouth": "bored unshaven party horn", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7346 + }, "metadata_dict": { "mouth": "grin", "fur": "dmt", @@ -87268,11 +109308,14 @@ "hat": "fisherman's hat", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7347 + }, "metadata_dict": { "fur": "brown", "mouth": "phoneme vuh", @@ -87281,22 +109324,28 @@ "earring": "silver hoop", "clothes": "tanktop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7348 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "cream", "eyes": "bored", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7349 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -87304,11 +109353,14 @@ "eyes": "bored", "clothes": "stunt jacket", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7350 + }, "metadata_dict": { "hat": "irish boho", "earring": "gold hoop", @@ -87317,11 +109369,14 @@ "eyes": "bloodshot", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7351 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "seaman's hat", @@ -87329,11 +109384,14 @@ "eyes": "3d", "clothes": "tanktop", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7352 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -87341,11 +109399,14 @@ "eyes": "bloodshot", "fur": "noise", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7353 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -87354,11 +109415,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7354 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "zombie", @@ -87367,22 +109431,28 @@ "earring": "silver hoop", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7355 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "laurel wreath", "eyes": "3d", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7356 + }, "metadata_dict": { "eyes": "heart", "hat": "seaman's hat", @@ -87390,22 +109460,28 @@ "background": "blue", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7357 + }, "metadata_dict": { "eyes": "blindfold", "background": "orange", "mouth": "bored unshaven cigarette", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7358 + }, "metadata_dict": { "clothes": "bandolier", "background": "orange", @@ -87413,11 +109489,14 @@ "fur": "white", "mouth": "bored cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7359 + }, "metadata_dict": { "clothes": "space suit", "fur": "red", @@ -87425,33 +109504,42 @@ "eyes": "sleepy", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7360 + }, "metadata_dict": { "mouth": "grin", "clothes": "smoking jacket", "eyes": "3d", "background": "orange", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7361 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", "eyes": "bored", "hat": "army hat", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7362 + }, "metadata_dict": { "earring": "silver stud", "background": "aquamarine", @@ -87460,11 +109548,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7363 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -87473,11 +109564,14 @@ "background": "aquamarine", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7364 + }, "metadata_dict": { "background": "gray", "clothes": "black t", @@ -87485,11 +109579,14 @@ "mouth": "small grin", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7365 + }, "metadata_dict": { "hat": "girl's hair short", "mouth": "grin", @@ -87498,11 +109595,14 @@ "fur": "death bot", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7366 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -87510,11 +109610,14 @@ "background": "aquamarine", "hat": "ww2 pilot helm", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7367 + }, "metadata_dict": { "clothes": "prison jumpsuit", "hat": "fez", @@ -87523,11 +109626,14 @@ "earring": "silver hoop", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7368 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -87536,11 +109642,14 @@ "earring": "silver hoop", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7369 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -87548,22 +109657,28 @@ "fur": "brown", "clothes": "guayabera", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7370 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", "fur": "cream", "hat": "ww2 pilot helm", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7371 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "jovial", @@ -87571,11 +109686,14 @@ "fur": "dark brown", "hat": "faux hawk", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7372 + }, "metadata_dict": { "fur": "tan", "hat": "s&m hat", @@ -87583,33 +109701,42 @@ "background": "blue", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7373 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "eyes": "coins", "hat": "fez", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7374 + }, "metadata_dict": { "fur": "golden brown", "hat": "beanie", "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7375 + }, "metadata_dict": { "mouth": "discomfort", "background": "yellow", @@ -87618,22 +109745,28 @@ "fur": "dark brown", "hat": "beanie", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7376 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme vuh", "eyes": "robot", "fur": "dark brown", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7377 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -87641,11 +109774,14 @@ "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7378 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -87654,11 +109790,14 @@ "earring": "silver stud", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7379 + }, "metadata_dict": { "earring": "diamond stud", "eyes": "robot", @@ -87667,11 +109806,14 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7380 + }, "metadata_dict": { "eyes": "coins", "fur": "brown", @@ -87679,11 +109821,14 @@ "hat": "short mohawk", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7381 + }, "metadata_dict": { "clothes": "black t", "hat": "king's crown", @@ -87691,11 +109836,14 @@ "fur": "brown", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7382 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -87703,22 +109851,28 @@ "mouth": "dumbfounded", "background": "aquamarine", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7383 + }, "metadata_dict": { "earring": "gold hoop", "eyes": "bloodshot", "fur": "brown", "background": "purple", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7384 + }, "metadata_dict": { "clothes": "black suit", "background": "aquamarine", @@ -87726,22 +109880,28 @@ "fur": "death bot", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7385 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", "background": "aquamarine", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7386 + }, "metadata_dict": { "mouth": "grin", "eyes": "bored", @@ -87749,11 +109909,14 @@ "fur": "cheetah", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7387 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -87762,11 +109925,14 @@ "hat": "beanie", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7388 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "lumberjack shirt", @@ -87774,11 +109940,14 @@ "fur": "black", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7389 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -87786,33 +109955,42 @@ "background": "blue", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7390 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", "fur": "cream", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7391 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", "mouth": "bored unshaven kazoo", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7392 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "scumbag", @@ -87820,11 +109998,14 @@ "fur": "black", "hat": "cowboy hat", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7393 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold stud", @@ -87833,11 +110014,14 @@ "hat": "bayc flipped brim", "background": "purple", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7394 + }, "metadata_dict": { "clothes": "striped tee", "background": "aquamarine", @@ -87845,11 +110029,14 @@ "eyes": "3d", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7395 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "horns", @@ -87857,11 +110044,14 @@ "fur": "dark brown", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7396 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -87869,11 +110059,14 @@ "earring": "silver stud", "fur": "noise", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7397 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -87881,11 +110074,14 @@ "eyes": "bored", "hat": "commie hat", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7398 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -87894,11 +110090,14 @@ "fur": "solid gold", "earring": "silver hoop", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7399 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", @@ -87906,11 +110105,14 @@ "eyes": "bored", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7400 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "aquamarine", @@ -87918,11 +110120,14 @@ "fur": "black", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7401 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "sushi chef headband", @@ -87930,11 +110135,14 @@ "eyes": "bored", "fur": "death bot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7402 + }, "metadata_dict": { "fur": "black", "hat": "spinner hat", @@ -87942,11 +110150,14 @@ "mouth": "bored", "eyes": "angry", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7403 + }, "metadata_dict": { "fur": "trippy", "background": "aquamarine", @@ -87954,11 +110165,14 @@ "hat": "faux hawk", "mouth": "phoneme wah", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7404 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -87966,11 +110180,14 @@ "mouth": "dumbfounded", "background": "aquamarine", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7405 + }, "metadata_dict": { "clothes": "tweed suit", "mouth": "rage", @@ -87978,11 +110195,14 @@ "hat": "bayc hat red", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7406 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -87990,22 +110210,28 @@ "fur": "pink", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7407 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "bored", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7408 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "fez", @@ -88013,33 +110239,42 @@ "eyes": "bloodshot", "clothes": "tuxedo tee", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7409 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "rage", "clothes": "prison jumpsuit", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7410 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "golden brown", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7411 + }, "metadata_dict": { "eyes": "heart", "clothes": "lumberjack shirt", @@ -88048,11 +110283,14 @@ "background": "aquamarine", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7412 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme vuh", @@ -88060,33 +110298,42 @@ "clothes": "guayabera", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7413 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "rage", "background": "blue", "fur": "black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7414 + }, "metadata_dict": { "hat": "trippy captain's hat", "background": "new punk blue", "mouth": "grin", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7415 + }, "metadata_dict": { "fur": "red", "clothes": "biker vest", @@ -88094,33 +110341,42 @@ "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7416 + }, "metadata_dict": { "hat": "horns", "background": "aquamarine", "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7417 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "hat": "fisherman's hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7418 + }, "metadata_dict": { "fur": "cream", "background": "blue", @@ -88128,11 +110384,14 @@ "clothes": "toga", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7419 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "horns", @@ -88140,11 +110399,14 @@ "background": "aquamarine", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7420 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -88152,11 +110414,14 @@ "background": "blue", "clothes": "smoking jacket", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7421 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "work vest", @@ -88164,11 +110429,14 @@ "hat": "commie hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7422 + }, "metadata_dict": { "clothes": "bone tee", "hat": "fez", @@ -88176,11 +110444,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7423 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -88188,22 +110459,28 @@ "fur": "brown", "clothes": "hip hop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7424 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "eyes": "bloodshot", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7425 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", @@ -88211,11 +110488,14 @@ "mouth": "bored", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7426 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -88223,11 +110503,14 @@ "background": "aquamarine", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7427 + }, "metadata_dict": { "clothes": "black t", "hat": "vietnam era helmet", @@ -88235,22 +110518,28 @@ "background": "yellow", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7428 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", "fur": "dark brown", "hat": "commie hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7429 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", @@ -88258,11 +110547,14 @@ "eyes": "bloodshot", "mouth": "tongue out", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7430 + }, "metadata_dict": { "fur": "cream", "mouth": "rage", @@ -88270,11 +110562,14 @@ "hat": "faux hawk", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7431 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -88282,22 +110577,28 @@ "hat": "girl's hair pink", "eyes": "bloodshot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7432 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "noise", "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7433 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -88306,11 +110607,14 @@ "fur": "black", "clothes": "tie dye", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7434 + }, "metadata_dict": { "eyes": "coins", "background": "blue", @@ -88318,11 +110622,14 @@ "clothes": "tanktop", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7435 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -88330,11 +110637,14 @@ "hat": "cowboy hat", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7436 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -88342,11 +110652,14 @@ "eyes": "bored", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7437 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bandolier", @@ -88354,11 +110667,14 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7438 + }, "metadata_dict": { "eyes": "zombie", "background": "orange", @@ -88366,21 +110682,27 @@ "mouth": "tongue out", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7439 + }, "metadata_dict": { "fur": "brown", "background": "yellow", "mouth": "small grin", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7440 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "irish boho", @@ -88388,11 +110710,14 @@ "background": "blue", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7441 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -88400,11 +110725,14 @@ "hat": "bunny ears", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7442 + }, "metadata_dict": { "hat": "halo", "mouth": "phoneme vuh", @@ -88412,33 +110740,42 @@ "eyes": "bloodshot", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7443 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "black", "eyes": "3d", "mouth": "bored bubblegum", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7444 + }, "metadata_dict": { "mouth": "grin", "fur": "cheetah", "clothes": "tie dye", "background": "gray", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7445 + }, "metadata_dict": { "eyes": "coins", "mouth": "phoneme vuh", @@ -88446,11 +110783,14 @@ "background": "purple", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7446 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "scumbag", @@ -88458,22 +110798,28 @@ "hat": "short mohawk", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7447 + }, "metadata_dict": { "eyes": "blindfold", "fur": "pink", "clothes": "bayc t black", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7448 + }, "metadata_dict": { "background": "gray", "hat": "party hat 1", @@ -88481,11 +110827,14 @@ "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7449 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored dagger", @@ -88494,11 +110843,14 @@ "clothes": "guayabera", "earring": "cross", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7450 + }, "metadata_dict": { "fur": "cream", "hat": "seaman's hat", @@ -88506,11 +110858,14 @@ "background": "aquamarine", "eyes": "3d", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7451 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "background": "orange", @@ -88518,11 +110873,14 @@ "clothes": "smoking jacket", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7452 + }, "metadata_dict": { "background": "blue", "eyes": "bloodshot", @@ -88531,21 +110889,27 @@ "clothes": "bone necklace", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7453 + }, "metadata_dict": { "background": "purple", "eyes": "robot", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7454 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", @@ -88553,11 +110917,14 @@ "eyes": "bloodshot", "clothes": "bone necklace", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7455 + }, "metadata_dict": { "clothes": "sailor shirt", "earring": "silver stud", @@ -88566,11 +110933,14 @@ "hat": "fisherman's hat", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7456 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -88579,11 +110949,14 @@ "earring": "gold stud", "fur": "brown", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7457 + }, "metadata_dict": { "fur": "gray", "eyes": "bloodshot", @@ -88591,11 +110964,14 @@ "mouth": "bored unshaven cigar", "background": "gray", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7458 + }, "metadata_dict": { "clothes": "bandolier", "background": "orange", @@ -88603,22 +110979,28 @@ "hat": "bunny ears", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7459 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "space suit", "background": "aquamarine", "fur": "dark brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7460 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -88627,11 +111009,14 @@ "fur": "pink", "clothes": "lab coat", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7461 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "phoneme oh", @@ -88639,11 +111024,14 @@ "eyes": "robot", "earring": "gold stud", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7462 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "blue", @@ -88651,11 +111039,14 @@ "fur": "pink", "hat": "faux hawk", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7463 + }, "metadata_dict": { "mouth": "grin", "earring": "silver stud", @@ -88663,22 +111054,28 @@ "fur": "white", "eyes": "sunglasses", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7464 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "grin diamond grill", "background": "aquamarine", "eyes": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7465 + }, "metadata_dict": { "mouth": "rage", "fur": "black", @@ -88686,11 +111083,14 @@ "eyes": "bloodshot", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7466 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "tan", @@ -88698,11 +111098,14 @@ "background": "aquamarine", "eyes": "bloodshot", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7467 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "golden brown", @@ -88711,11 +111114,14 @@ "clothes": "admirals coat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7468 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -88723,11 +111129,14 @@ "fur": "dark brown", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7469 + }, "metadata_dict": { "clothes": "sleeveless t", "earring": "silver stud", @@ -88736,11 +111145,14 @@ "hat": "short mohawk", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7470 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", @@ -88748,11 +111160,14 @@ "hat": "bayc flipped brim", "clothes": "stunt jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7471 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -88760,11 +111175,14 @@ "eyes": "robot", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7472 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -88773,22 +111191,28 @@ "background": "purple", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7473 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "bloodshot", "mouth": "bored", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7474 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "grin", @@ -88796,11 +111220,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7475 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "dumbfounded", @@ -88808,11 +111235,14 @@ "clothes": "bayc t black", "hat": "army hat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7476 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", @@ -88820,11 +111250,14 @@ "clothes": "leather jacket", "eyes": "bored", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7477 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "earring": "silver stud", @@ -88833,11 +111266,14 @@ "hat": "girl's hair short", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7478 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -88846,11 +111282,14 @@ "fur": "cheetah", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7479 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", @@ -88858,11 +111297,14 @@ "background": "yellow", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7480 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -88870,11 +111312,14 @@ "hat": "irish boho", "clothes": "biker vest", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7481 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", @@ -88882,11 +111327,14 @@ "eyes": "coins", "clothes": "work vest", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7482 + }, "metadata_dict": { "mouth": "grin multicolored", "hat": "king's crown", @@ -88894,11 +111342,14 @@ "fur": "black", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7483 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 1", @@ -88906,11 +111357,14 @@ "clothes": "smoking jacket", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7484 + }, "metadata_dict": { "eyes": "coins", "clothes": "work vest", @@ -88918,22 +111372,28 @@ "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7485 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "dumbfounded", "eyes": "blue beams", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7486 + }, "metadata_dict": { "fur": "dmt", "eyes": "robot", @@ -88941,22 +111401,28 @@ "hat": "fisherman's hat", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7487 + }, "metadata_dict": { "clothes": "bone tee", "mouth": "bored unshaven cigarette", "eyes": "sleepy", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7488 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "tan", @@ -88964,11 +111430,14 @@ "eyes": "hypnotized", "clothes": "work vest", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7489 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "space suit", @@ -88976,11 +111445,14 @@ "eyes": "bloodshot", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7490 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -88988,11 +111460,14 @@ "mouth": "dumbfounded", "earring": "gold stud", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7491 + }, "metadata_dict": { "eyes": "x eyes", "hat": "fez", @@ -89000,11 +111475,14 @@ "background": "gray", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7492 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -89012,11 +111490,14 @@ "clothes": "stunt jacket", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7493 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "striped tee", @@ -89024,22 +111505,28 @@ "hat": "seaman's hat", "background": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7494 + }, "metadata_dict": { "mouth": "grin multicolored", "earring": "silver stud", "background": "aquamarine", "eyes": "3d", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7495 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored dagger", @@ -89048,22 +111535,28 @@ "background": "aquamarine", "earring": "cross", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7496 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "lumberjack shirt", "fur": "black", "background": "orange", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7497 + }, "metadata_dict": { "eyes": "blindfold", "hat": "baby's bonnet", @@ -89071,11 +111564,14 @@ "clothes": "smoking jacket", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7498 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven cigarette", @@ -89083,11 +111579,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7499 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "coins", @@ -89095,11 +111594,14 @@ "clothes": "work vest", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7500 + }, "metadata_dict": { "eyes": "coins", "earring": "silver stud", @@ -89108,11 +111610,14 @@ "background": "purple", "hat": "bunny ears", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7501 + }, "metadata_dict": { "fur": "zombie", "hat": "fez", @@ -89121,22 +111626,28 @@ "background": "gray", "mouth": "bored", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7502 + }, "metadata_dict": { "background": "blue", "hat": "short mohawk", "fur": "brown", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7503 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -89144,11 +111655,14 @@ "background": "orange", "eyes": "bored", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7504 + }, "metadata_dict": { "fur": "tan", "clothes": "lumberjack shirt", @@ -89157,11 +111671,14 @@ "earring": "gold stud", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7505 + }, "metadata_dict": { "fur": "golden brown", "mouth": "grin", @@ -89169,11 +111686,14 @@ "background": "blue", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7506 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -89181,11 +111701,14 @@ "eyes": "robot", "background": "blue", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7507 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "golden brown", @@ -89193,11 +111716,14 @@ "hat": "cowboy hat", "clothes": "lab coat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7508 + }, "metadata_dict": { "mouth": "bored dagger", "background": "gray", @@ -89205,11 +111731,14 @@ "clothes": "tweed suit", "fur": "cheetah", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7509 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", @@ -89217,11 +111746,14 @@ "eyes": "crazy", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7510 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "trippy", @@ -89230,11 +111762,14 @@ "background": "orange", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7511 + }, "metadata_dict": { "eyes": "scumbag", "background": "yellow", @@ -89242,44 +111777,56 @@ "hat": "beanie", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7512 + }, "metadata_dict": { "fur": "tan", "hat": "girl's hair pink", "eyes": "sleepy", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7513 + }, "metadata_dict": { "fur": "dmt", "earring": "gold hoop", "background": "aquamarine", "eyes": "3d", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7514 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "tan", "eyes": "blindfold", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7515 + }, "metadata_dict": { "hat": "baby's bonnet", "eyes": "sleepy", @@ -89287,11 +111834,14 @@ "clothes": "smoking jacket", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7516 + }, "metadata_dict": { "background": "new punk blue", "fur": "brown", @@ -89299,22 +111849,28 @@ "earring": "gold stud", "eyes": "bored", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7517 + }, "metadata_dict": { "clothes": "black t", "mouth": "phoneme vuh", "fur": "black", "eyes": "3d", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7518 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", @@ -89323,11 +111879,14 @@ "earring": "silver hoop", "background": "yellow", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7519 + }, "metadata_dict": { "hat": "horns", "fur": "dmt", @@ -89336,11 +111895,14 @@ "earring": "silver hoop", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7520 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "grin", @@ -89348,11 +111910,14 @@ "fur": "white", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7521 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin multicolored", @@ -89360,11 +111925,14 @@ "clothes": "sailor shirt", "hat": "army hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7522 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -89372,11 +111940,14 @@ "hat": "short mohawk", "eyes": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7523 + }, "metadata_dict": { "mouth": "grin", "earring": "gold stud", @@ -89385,21 +111956,27 @@ "clothes": "navy striped tee", "fur": "zombie", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7524 + }, "metadata_dict": { "fur": "brown", "eyes": "sleepy", "mouth": "bored cigarette", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7525 + }, "metadata_dict": { "clothes": "work vest", "eyes": "bloodshot", @@ -89407,22 +111984,28 @@ "hat": "vietnam era helmet", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7526 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "sleeveless t", "fur": "red", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7527 + }, "metadata_dict": { "background": "new punk blue", "hat": "sea captain's hat", @@ -89430,11 +112013,14 @@ "mouth": "bored", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7528 + }, "metadata_dict": { "fur": "dmt", "eyes": "coins", @@ -89442,11 +112028,14 @@ "hat": "short mohawk", "earring": "silver hoop", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7529 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", @@ -89454,11 +112043,14 @@ "hat": "short mohawk", "eyes": "bored", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7530 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -89466,21 +112058,27 @@ "clothes": "guayabera", "mouth": "phoneme wah", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7531 + }, "metadata_dict": { "background": "yellow", "mouth": "bored unshaven", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7532 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "striped tee", @@ -89489,22 +112087,28 @@ "background": "aquamarine", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7533 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "clothes": "guayabera", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7534 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "bored unshaven bubblegum", @@ -89512,11 +112116,14 @@ "fur": "black", "eyes": "3d", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7535 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "dumbfounded", @@ -89524,11 +112131,14 @@ "fur": "pink", "hat": "army hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7536 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme oh", @@ -89537,11 +112147,14 @@ "fur": "red", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7537 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -89549,11 +112162,14 @@ "fur": "brown", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7538 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -89561,11 +112177,14 @@ "hat": "vietnam era helmet", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7539 + }, "metadata_dict": { "mouth": "bored kazoo", "hat": "s&m hat", @@ -89574,11 +112193,14 @@ "clothes": "sailor shirt", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7540 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -89587,11 +112209,14 @@ "hat": "army hat", "mouth": "tongue out", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7541 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "scumbag", @@ -89599,11 +112224,14 @@ "fur": "red", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7542 + }, "metadata_dict": { "fur": "cream", "clothes": "tweed suit", @@ -89612,33 +112240,42 @@ "mouth": "bored", "earring": "silver hoop", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7543 + }, "metadata_dict": { "clothes": "bandolier", "background": "aquamarine", "fur": "black", "eyes": "bloodshot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7544 + }, "metadata_dict": { "eyes": "coins", "background": "orange", "fur": "brown", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7545 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -89646,11 +112283,14 @@ "background": "aquamarine", "eyes": "bloodshot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7546 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -89658,11 +112298,14 @@ "earring": "silver hoop", "fur": "cheetah", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7547 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven", @@ -89671,22 +112314,28 @@ "fur": "black", "clothes": "smoking jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7548 + }, "metadata_dict": { "clothes": "lab coat", "mouth": "bored unshaven cigarette", "background": "yellow", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7549 + }, "metadata_dict": { "clothes": "bandolier", "mouth": "jovial", @@ -89694,11 +112343,14 @@ "hat": "girl's hair short", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7550 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", @@ -89706,11 +112358,14 @@ "hat": "faux hawk", "clothes": "guayabera", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7551 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "blindfold", @@ -89719,11 +112374,14 @@ "earring": "silver hoop", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7552 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "red", @@ -89731,11 +112389,14 @@ "hat": "short mohawk", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7553 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "zombie", @@ -89743,11 +112404,14 @@ "clothes": "lab coat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7554 + }, "metadata_dict": { "fur": "tan", "mouth": "dumbfounded", @@ -89755,11 +112419,14 @@ "eyes": "sleepy", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7555 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "work vest", @@ -89767,11 +112434,14 @@ "eyes": "bored", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7556 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -89779,11 +112449,14 @@ "mouth": "small grin", "eyes": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7557 + }, "metadata_dict": { "hat": "irish boho", "mouth": "dumbfounded", @@ -89792,22 +112465,28 @@ "clothes": "prom dress", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7558 + }, "metadata_dict": { "fur": "tan", "eyes": "bored", "background": "purple", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7559 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "holographic", @@ -89815,11 +112494,14 @@ "earring": "silver stud", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7560 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "coins", @@ -89827,11 +112509,14 @@ "hat": "spinner hat", "background": "orange", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7561 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -89839,11 +112524,14 @@ "fur": "black", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7562 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -89851,11 +112539,14 @@ "hat": "vietnam era helmet", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7563 + }, "metadata_dict": { "fur": "cream", "mouth": "dumbfounded", @@ -89863,11 +112554,14 @@ "background": "yellow", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7564 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", @@ -89876,11 +112570,14 @@ "fur": "dark brown", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7565 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "s&m hat", @@ -89888,11 +112585,14 @@ "fur": "black", "background": "blue", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7566 + }, "metadata_dict": { "fur": "red", "earring": "silver hoop", @@ -89901,11 +112601,14 @@ "clothes": "bone necklace", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7567 + }, "metadata_dict": { "earring": "silver stud", "fur": "red", @@ -89913,55 +112616,70 @@ "mouth": "phoneme vuh", "eyes": "crazy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7568 + }, "metadata_dict": { "fur": "zombie", "background": "aquamarine", "eyes": "crazy", "mouth": "bored cigar", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7569 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "clothes": "guayabera", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7570 + }, "metadata_dict": { "fur": "golden brown", "background": "orange", "eyes": "bloodshot", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7571 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", "background": "aquamarine", "clothes": "stunt jacket", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7572 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "sea captain's hat", @@ -89969,11 +112687,14 @@ "mouth": "bored unshaven cigarette", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7573 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "wool turtleneck", @@ -89982,11 +112703,14 @@ "eyes": "bored", "hat": "bayc hat red", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7574 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "caveman pelt", @@ -89994,11 +112718,14 @@ "hat": "spinner hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7575 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -90006,11 +112733,14 @@ "fur": "black", "background": "orange", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7576 + }, "metadata_dict": { "hat": "party hat 1", "background": "blue", @@ -90018,22 +112748,28 @@ "mouth": "bored unshaven cigarette", "fur": "robot", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7577 + }, "metadata_dict": { "eyes": "robot", "background": "orange", "fur": "brown", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7578 + }, "metadata_dict": { "clothes": "bayc t red", "earring": "gold hoop", @@ -90042,11 +112778,14 @@ "background": "purple", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7579 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "brown", @@ -90054,11 +112793,14 @@ "clothes": "cowboy shirt", "hat": "bayc flipped brim", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7580 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -90067,11 +112809,14 @@ "earring": "silver hoop", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7581 + }, "metadata_dict": { "hat": "trippy captain's hat", "earring": "gold hoop", @@ -90080,11 +112825,14 @@ "background": "yellow", "clothes": "admirals coat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7582 + }, "metadata_dict": { "mouth": "bored dagger", "clothes": "cowboy shirt", @@ -90092,11 +112840,14 @@ "hat": "army hat", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7583 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -90104,11 +112855,14 @@ "mouth": "grin", "eyes": "bloodshot", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7584 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "scumbag", @@ -90116,11 +112870,14 @@ "mouth": "small grin", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7585 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "silver stud", @@ -90129,11 +112886,14 @@ "eyes": "bored", "mouth": "tongue out", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7586 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "cowboy shirt", @@ -90141,22 +112901,28 @@ "eyes": "bloodshot", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7587 + }, "metadata_dict": { "mouth": "jovial", "fur": "red", "background": "orange", "hat": "bayc hat red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7588 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -90165,11 +112931,14 @@ "fur": "pink", "clothes": "tanktop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7589 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "tan", @@ -90177,11 +112946,14 @@ "clothes": "biker vest", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7590 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "hypnotized", @@ -90190,11 +112962,14 @@ "clothes": "bayc t black", "fur": "cheetah", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7591 + }, "metadata_dict": { "mouth": "grin", "fur": "black", @@ -90202,11 +112977,14 @@ "background": "orange", "eyes": "blue beams", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7592 + }, "metadata_dict": { "fur": "gray", "hat": "stuntman helmet", @@ -90214,22 +112992,28 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7593 + }, "metadata_dict": { "background": "blue", "eyes": "sleepy", "mouth": "bored", "fur": "white", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7594 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme ooo", @@ -90237,11 +113021,14 @@ "clothes": "prison jumpsuit", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7595 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -90249,22 +113036,28 @@ "fur": "dark brown", "background": "yellow", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7596 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "eyes": "bloodshot", "clothes": "toga", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7597 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "scumbag", @@ -90272,11 +113065,14 @@ "hat": "beanie", "clothes": "prom dress", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7598 + }, "metadata_dict": { "eyes": "closed", "hat": "bandana blue", @@ -90284,22 +113080,28 @@ "background": "gray", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7599 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "black", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7600 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "fez", @@ -90307,22 +113109,28 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7601 + }, "metadata_dict": { "mouth": "grin", "fur": "red", "clothes": "biker vest", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7602 + }, "metadata_dict": { "hat": "baby's bonnet", "background": "blue", @@ -90330,11 +113138,14 @@ "eyes": "sleepy", "mouth": "bored cigar", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7603 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -90342,11 +113153,14 @@ "clothes": "bone necklace", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7604 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -90354,11 +113168,14 @@ "fur": "pink", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7605 + }, "metadata_dict": { "eyes": "closed", "earring": "gold stud", @@ -90367,11 +113184,14 @@ "background": "gray", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7606 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven bubblegum", @@ -90379,33 +113199,42 @@ "fur": "brown", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7607 + }, "metadata_dict": { "eyes": "bloodshot", "fur": "dark brown", "background": "purple", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7608 + }, "metadata_dict": { "mouth": "phoneme l", "background": "aquamarine", "fur": "dark brown", "clothes": "bone necklace", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7609 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -90413,11 +113242,14 @@ "hat": "king's crown", "mouth": "dumbfounded", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7610 + }, "metadata_dict": { "background": "blue", "fur": "pink", @@ -90425,32 +113257,41 @@ "mouth": "tongue out", "clothes": "hip hop", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7611 + }, "metadata_dict": { "eyes": "heart", "clothes": "work vest", "background": "aquamarine", "mouth": "bored bubblegum", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7612 + }, "metadata_dict": { "eyes": "x eyes", "background": "blue", "fur": "gray", "mouth": "bored unshaven pipe" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7613 + }, "metadata_dict": { "eyes": "heart", "background": "blue", @@ -90458,33 +113299,42 @@ "fur": "cheetah", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7614 + }, "metadata_dict": { "eyes": "bored", "background": "gray", "mouth": "bored", "clothes": "navy striped tee", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7615 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", "eyes": "3d", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7616 + }, "metadata_dict": { "background": "new punk blue", "fur": "trippy", @@ -90493,11 +113343,14 @@ "hat": "cowboy hat", "earring": "cross", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7617 + }, "metadata_dict": { "mouth": "grin", "clothes": "sailor shirt", @@ -90505,22 +113358,28 @@ "background": "blue", "eyes": "bored", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7618 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "clothes": "prom dress", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7619 + }, "metadata_dict": { "eyes": "closed", "fur": "black", @@ -90528,44 +113387,56 @@ "hat": "bayc hat red", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7620 + }, "metadata_dict": { "eyes": "heart", "mouth": "discomfort", "fur": "cream", "background": "blue", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7621 + }, "metadata_dict": { "fur": "dmt", "eyes": "coins", "mouth": "bored unshaven party horn", "clothes": "sleeveless logo t", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7622 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "hat": "seaman's hat", "mouth": "dumbfounded", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7623 + }, "metadata_dict": { "eyes": "scumbag", "fur": "golden brown", @@ -90573,11 +113444,14 @@ "earring": "silver hoop", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7624 + }, "metadata_dict": { "eyes": "blindfold", "fur": "golden brown", @@ -90586,11 +113460,14 @@ "clothes": "prison jumpsuit", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7625 + }, "metadata_dict": { "hat": "baby's bonnet", "mouth": "rage", @@ -90598,22 +113475,28 @@ "background": "yellow", "clothes": "stunt jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7626 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "dumbfounded", "eyes": "3d", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7627 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -90621,11 +113504,14 @@ "hat": "bowler", "fur": "white", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7628 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -90633,11 +113519,14 @@ "clothes": "sailor shirt", "hat": "vietnam era helmet", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7629 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "orange", @@ -90645,11 +113534,14 @@ "eyes": "bored", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7630 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "striped tee", @@ -90657,11 +113549,14 @@ "hat": "short mohawk", "fur": "brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7631 + }, "metadata_dict": { "eyes": "zombie", "background": "aquamarine", @@ -90669,22 +113564,28 @@ "mouth": "bored", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7632 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "toga", "fur": "brown", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7633 + }, "metadata_dict": { "fur": "tan", "clothes": "prison jumpsuit", @@ -90692,11 +113593,14 @@ "hat": "short mohawk", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7634 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored unshaven kazoo", @@ -90704,22 +113608,28 @@ "background": "gray", "clothes": "navy striped tee", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7635 + }, "metadata_dict": { "fur": "tan", "mouth": "grin diamond grill", "background": "blue", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7636 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "fez", @@ -90728,11 +113638,14 @@ "earring": "silver hoop", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7637 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -90740,11 +113653,14 @@ "mouth": "tongue out", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7638 + }, "metadata_dict": { "earring": "silver stud", "mouth": "dumbfounded", @@ -90753,11 +113669,14 @@ "background": "yellow", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7639 + }, "metadata_dict": { "eyes": "heart", "hat": "bandana blue", @@ -90765,11 +113684,14 @@ "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7640 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven bubblegum", @@ -90778,11 +113700,14 @@ "earring": "silver hoop", "background": "purple", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7641 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -90790,11 +113715,14 @@ "hat": "seaman's hat", "eyes": "bloodshot", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7642 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -90802,11 +113730,14 @@ "fur": "black", "clothes": "tuxedo tee", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7643 + }, "metadata_dict": { "clothes": "black t", "background": "blue", @@ -90814,11 +113745,14 @@ "eyes": "bored", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7644 + }, "metadata_dict": { "eyes": "heart", "mouth": "discomfort", @@ -90826,22 +113760,28 @@ "fur": "golden brown", "background": "blue", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7645 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "phoneme ooo", "eyes": "3d", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7646 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "rage", @@ -90849,11 +113789,14 @@ "fur": "white", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7647 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -90861,22 +113804,28 @@ "fur": "cheetah", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7648 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", "fur": "gray", "clothes": "work vest", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7649 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "holographic", @@ -90884,11 +113833,14 @@ "mouth": "bored unshaven cigarette", "fur": "brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7650 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -90896,44 +113848,56 @@ "fur": "pink", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7651 + }, "metadata_dict": { "eyes": "holographic", "background": "aquamarine", "fur": "dark brown", "clothes": "bayc t black", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7652 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", "hat": "bunny ears", "eyes": "sleepy", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7653 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "background": "blue", "hat": "cowboy hat", "fur": "cheetah", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7654 + }, "metadata_dict": { "eyes": "blindfold", "hat": "sushi chef headband", @@ -90941,11 +113905,14 @@ "background": "orange", "mouth": "bored unshaven cigar", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7655 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "coins", @@ -90953,11 +113920,14 @@ "background": "blue", "fur": "noise", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7656 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -90965,11 +113935,14 @@ "eyes": "bloodshot", "clothes": "sleeveless logo t", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7657 + }, "metadata_dict": { "fur": "brown", "earring": "silver stud", @@ -90978,11 +113951,14 @@ "hat": "short mohawk", "clothes": "admirals coat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7658 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -90990,11 +113966,14 @@ "background": "aquamarine", "clothes": "pimp coat", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7659 + }, "metadata_dict": { "background": "yellow", "clothes": "biker vest", @@ -91002,11 +113981,14 @@ "mouth": "bored", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7660 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -91014,11 +113996,14 @@ "hat": "prussian helmet", "earring": "gold stud", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7661 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored bubblegum", @@ -91026,22 +114011,28 @@ "background": "yellow", "fur": "white", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7662 + }, "metadata_dict": { "fur": "tan", "hat": "s&m hat", "mouth": "phoneme wah", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7663 + }, "metadata_dict": { "hat": "fez", "fur": "dark brown", @@ -91049,22 +114040,28 @@ "background": "purple", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7664 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "fur": "black", "hat": "short mohawk", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7665 + }, "metadata_dict": { "hat": "police motorcycle helmet", "fur": "gray", @@ -91073,22 +114070,28 @@ "earring": "silver hoop", "mouth": "tongue out", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7666 + }, "metadata_dict": { "background": "blue", "fur": "black", "eyes": "bored", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7667 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -91096,11 +114099,14 @@ "hat": "short mohawk", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7668 + }, "metadata_dict": { "eyes": "coins", "clothes": "bone necklace", @@ -91109,11 +114115,14 @@ "earring": "gold stud", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7669 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "phoneme oh", @@ -91121,22 +114130,28 @@ "background": "orange", "eyes": "bloodshot", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7670 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", "eyes": "coins", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7671 + }, "metadata_dict": { "mouth": "grin", "fur": "black", @@ -91144,11 +114159,14 @@ "hat": "girl's hair short", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7672 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "bored unshaven cigarette", @@ -91156,11 +114174,14 @@ "hat": "spinner hat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7673 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "heart", @@ -91168,22 +114189,28 @@ "clothes": "biker vest", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7674 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "golden brown", "background": "orange", "eyes": "bored", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7675 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -91191,11 +114218,14 @@ "hat": "short mohawk", "clothes": "bone necklace", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7676 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -91203,11 +114233,14 @@ "background": "blue", "clothes": "tie dye", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7677 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "black", @@ -91215,11 +114248,14 @@ "eyes": "bored", "hat": "bowler", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7678 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "hat": "king's crown", @@ -91227,33 +114263,42 @@ "eyes": "robot", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7679 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored bubblegum", "eyes": "bloodshot", "hat": "bayc flipped brim", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7680 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "eyes": "bloodshot", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7681 + }, "metadata_dict": { "fur": "trippy", "eyes": "hypnotized", @@ -91261,11 +114306,14 @@ "mouth": "dumbfounded", "background": "aquamarine", "clothes": "smoking jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7682 + }, "metadata_dict": { "clothes": "bandolier", "fur": "brown", @@ -91273,11 +114321,14 @@ "earring": "gold stud", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7683 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -91285,22 +114336,28 @@ "clothes": "rainbow suspenders", "mouth": "bored unshaven bubblegum", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7684 + }, "metadata_dict": { "mouth": "tongue out", "fur": "gray", "eyes": "robot", "hat": "faux hawk", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7685 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -91308,11 +114365,14 @@ "background": "gray", "fur": "white", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7686 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "leather jacket", @@ -91320,22 +114380,28 @@ "background": "orange", "mouth": "phoneme wah", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7687 + }, "metadata_dict": { "earring": "silver stud", "background": "purple", "fur": "dark brown", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7688 + }, "metadata_dict": { "clothes": "black holes t", "hat": "fez", @@ -91344,11 +114410,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7689 + }, "metadata_dict": { "fur": "tan", "background": "blue", @@ -91356,33 +114425,42 @@ "hat": "halo", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7690 + }, "metadata_dict": { "fur": "golden brown", "mouth": "small grin", "background": "gray", "hat": "bunny ears", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7691 + }, "metadata_dict": { "background": "gray", "clothes": "black t", "eyes": "bored", "fur": "cheetah", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7692 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "caveman pelt", @@ -91391,11 +114469,14 @@ "fur": "brown", "eyes": "sleepy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7693 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", @@ -91403,11 +114484,14 @@ "clothes": "biker vest", "hat": "bayc hat red", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7694 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "s&m hat", @@ -91416,11 +114500,14 @@ "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7695 + }, "metadata_dict": { "clothes": "tweed suit", "fur": "black", @@ -91428,22 +114515,28 @@ "mouth": "small grin", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7696 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "red", "background": "yellow", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7697 + }, "metadata_dict": { "mouth": "grin", "eyes": "sunglasses", @@ -91451,11 +114544,14 @@ "clothes": "work vest", "hat": "vietnam era helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7698 + }, "metadata_dict": { "eyes": "heart", "clothes": "leather punk jacket", @@ -91464,11 +114560,14 @@ "background": "orange", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7699 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -91476,11 +114575,14 @@ "clothes": "prom dress", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7700 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", @@ -91488,11 +114590,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7701 + }, "metadata_dict": { "mouth": "grin", "background": "gray", @@ -91500,22 +114605,28 @@ "hat": "bunny ears", "eyes": "crazy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7702 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "coins", "fur": "red", "mouth": "small grin", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7703 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -91524,11 +114635,14 @@ "background": "orange", "clothes": "bayc t black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7704 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -91536,33 +114650,42 @@ "hat": "ww2 pilot helm", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7705 + }, "metadata_dict": { "background": "blue", "mouth": "small grin", "eyes": "bored", "hat": "commie hat", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7706 + }, "metadata_dict": { "eyes": "x eyes", "background": "orange", "fur": "dark brown", "mouth": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7707 + }, "metadata_dict": { "mouth": "bored party horn", "hat": "spinner hat", @@ -91570,22 +114693,28 @@ "background": "orange", "clothes": "bayc t black", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7708 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "golden brown", "earring": "silver stud", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7709 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -91593,22 +114722,28 @@ "fur": "dark brown", "earring": "silver hoop", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7710 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "earring": "silver hoop", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7711 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -91616,11 +114751,14 @@ "fur": "cheetah", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7712 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored party horn", @@ -91628,11 +114766,14 @@ "hat": "ww2 pilot helm", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7713 + }, "metadata_dict": { "hat": "fez", "clothes": "guayabera", @@ -91640,11 +114781,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7714 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -91652,11 +114796,14 @@ "hat": "fisherman's hat", "mouth": "bored cigar", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7715 + }, "metadata_dict": { "clothes": "striped tee", "hat": "seaman's hat", @@ -91665,22 +114812,28 @@ "background": "aquamarine", "eyes": "robot", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7716 + }, "metadata_dict": { "eyes": "closed", "hat": "party hat 1", "mouth": "bored bubblegum", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7717 + }, "metadata_dict": { "fur": "tan", "clothes": "bandolier", @@ -91688,11 +114841,14 @@ "earring": "gold hoop", "background": "aquamarine", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7718 + }, "metadata_dict": { "fur": "tan", "mouth": "bored kazoo", @@ -91701,22 +114857,28 @@ "eyes": "bloodshot", "hat": "bayc flipped brim", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7719 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "orange", "fur": "dark brown", "mouth": "bored cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7720 + }, "metadata_dict": { "mouth": "jovial", "fur": "pink", @@ -91724,11 +114886,14 @@ "eyes": "crazy", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7721 + }, "metadata_dict": { "hat": "fez", "earring": "silver hoop", @@ -91736,11 +114901,14 @@ "mouth": "bored", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7722 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -91748,11 +114916,14 @@ "hat": "spinner hat", "earring": "gold stud", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7723 + }, "metadata_dict": { "mouth": "phoneme wah", "earring": "silver stud", @@ -91760,22 +114931,28 @@ "eyes": "bored", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7724 + }, "metadata_dict": { "eyes": "cyborg", "hat": "prussian helmet", "mouth": "bored unshaven kazoo", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7725 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -91784,11 +114961,14 @@ "hat": "bayc hat red", "earring": "cross", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7726 + }, "metadata_dict": { "fur": "cream", "background": "blue", @@ -91796,11 +114976,14 @@ "hat": "commie hat", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7727 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin multicolored", @@ -91809,11 +114992,14 @@ "fur": "pink", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7728 + }, "metadata_dict": { "eyes": "sad", "fur": "dark brown", @@ -91821,11 +115007,14 @@ "hat": "police motorcycle helmet", "clothes": "bone tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7729 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", @@ -91833,11 +115022,14 @@ "eyes": "bored", "background": "yellow", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7730 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -91846,11 +115038,14 @@ "eyes": "coins", "earring": "silver stud", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7731 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -91858,11 +115053,14 @@ "hat": "cowboy hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7732 + }, "metadata_dict": { "eyes": "heart", "hat": "s&m hat", @@ -91870,22 +115068,28 @@ "fur": "golden brown", "background": "orange", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7733 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", "hat": "fisherman's hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7734 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", @@ -91893,11 +115097,14 @@ "hat": "bayc flipped brim", "eyes": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7735 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -91905,11 +115112,14 @@ "eyes": "bored", "clothes": "toga", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7736 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "striped tee", @@ -91917,11 +115127,14 @@ "background": "aquamarine", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7737 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "stuntman helmet", @@ -91930,11 +115143,14 @@ "background": "orange", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7738 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "robot", @@ -91942,11 +115158,14 @@ "earring": "silver hoop", "background": "gray", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7739 + }, "metadata_dict": { "background": "purple", "hat": "short mohawk", @@ -91955,21 +115174,27 @@ "clothes": "guayabera", "earring": "cross", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7740 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "background": "orange", "eyes": "blue beams" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7741 + }, "metadata_dict": { "clothes": "space suit", "background": "aquamarine", @@ -91977,11 +115202,14 @@ "eyes": "bored", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7742 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "bored", @@ -91989,11 +115217,14 @@ "hat": "bowler", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7743 + }, "metadata_dict": { "clothes": "striped tee", "hat": "fez", @@ -92001,11 +115232,14 @@ "eyes": "3d", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7744 + }, "metadata_dict": { "hat": "bayc flipped brim", "mouth": "small grin", @@ -92013,11 +115247,14 @@ "background": "purple", "fur": "white", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7745 + }, "metadata_dict": { "background": "new punk blue", "hat": "baby's bonnet", @@ -92026,11 +115263,14 @@ "earring": "silver hoop", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7746 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -92038,11 +115278,14 @@ "mouth": "bored unshaven bubblegum", "fur": "brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7747 + }, "metadata_dict": { "clothes": "black holes t", "fur": "brown", @@ -92051,33 +115294,42 @@ "eyes": "bored", "background": "gray", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7748 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "black", "background": "yellow", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7749 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "tweed suit", "background": "aquamarine", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7750 + }, "metadata_dict": { "hat": "laurel wreath", "clothes": "work vest", @@ -92085,22 +115337,28 @@ "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7751 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", "eyes": "coins", "clothes": "cowboy shirt", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7752 + }, "metadata_dict": { "fur": "gray", "earring": "silver stud", @@ -92108,11 +115366,14 @@ "clothes": "bayc t black", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7753 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", @@ -92120,11 +115381,14 @@ "background": "yellow", "hat": "police motorcycle helmet", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7754 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "hypnotized", @@ -92133,22 +115397,28 @@ "mouth": "tongue out", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7755 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "mouth": "small grin", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7756 + }, "metadata_dict": { "eyes": "closed", "hat": "party hat 1", @@ -92157,11 +115427,14 @@ "fur": "pink", "clothes": "sleeveless logo t", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7757 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven cigarette", @@ -92170,11 +115443,14 @@ "clothes": "sleeveless logo t", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7758 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -92183,11 +115459,14 @@ "earring": "silver hoop", "hat": "girl's hair short", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7759 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -92195,11 +115474,14 @@ "fur": "brown", "clothes": "caveman pelt", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7760 + }, "metadata_dict": { "hat": "king's crown", "clothes": "leather jacket", @@ -92207,11 +115489,14 @@ "mouth": "bored cigarette", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7761 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "rage", @@ -92219,44 +115504,56 @@ "hat": "cowboy hat", "fur": "cheetah", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7762 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "red", "clothes": "bayc t black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7763 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", "mouth": "dumbfounded", "fur": "dark brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7764 + }, "metadata_dict": { "mouth": "bored dagger", "fur": "golden brown", "eyes": "bored", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7765 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "horns", @@ -92264,11 +115561,14 @@ "background": "purple", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7766 + }, "metadata_dict": { "eyes": "heart", "mouth": "discomfort", @@ -92276,11 +115576,14 @@ "background": "orange", "fur": "noise", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7767 + }, "metadata_dict": { "hat": "girl's hair short", "clothes": "black t", @@ -92289,11 +115592,14 @@ "earring": "silver hoop", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7768 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -92301,11 +115607,14 @@ "eyes": "robot", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7769 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -92313,11 +115622,14 @@ "eyes": "bored", "hat": "fisherman's hat", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7770 + }, "metadata_dict": { "fur": "cream", "background": "aquamarine", @@ -92325,11 +115637,14 @@ "eyes": "bored", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7771 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -92337,11 +115652,14 @@ "fur": "golden brown", "hat": "ww2 pilot helm", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7772 + }, "metadata_dict": { "fur": "robot", "mouth": "bored unshaven", @@ -92350,11 +115668,14 @@ "earring": "silver hoop", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7773 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -92362,11 +115683,14 @@ "eyes": "bloodshot", "clothes": "tanktop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7774 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -92374,11 +115698,14 @@ "eyes": "bloodshot", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7775 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "s&m hat", @@ -92386,11 +115713,14 @@ "eyes": "bored", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7776 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -92399,11 +115729,14 @@ "fur": "brown", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7777 + }, "metadata_dict": { "fur": "tan", "background": "blue", @@ -92411,11 +115744,14 @@ "hat": "ww2 pilot helm", "mouth": "bored unshaven cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7778 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -92424,21 +115760,27 @@ "hat": "commie hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7779 + }, "metadata_dict": { "fur": "golden brown", "eyes": "closed", "background": "gray", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7780 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -92446,11 +115788,14 @@ "fur": "brown", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7781 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -92458,22 +115803,28 @@ "eyes": "bored", "hat": "girl's hair short", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7782 + }, "metadata_dict": { "clothes": "work vest", "background": "blue", "fur": "brown", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7783 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "black suit", @@ -92481,22 +115832,28 @@ "background": "orange", "hat": "army hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7784 + }, "metadata_dict": { "fur": "red", "eyes": "3d", "background": "orange", "hat": "girl's hair short", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7785 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", @@ -92504,11 +115861,14 @@ "fur": "dark brown", "hat": "faux hawk", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7786 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "hypnotized", @@ -92516,11 +115876,14 @@ "mouth": "bored party horn", "clothes": "tuxedo tee", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7787 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -92529,33 +115892,42 @@ "hat": "army hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7788 + }, "metadata_dict": { "background": "blue", "mouth": "small grin", "fur": "cheetah", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7789 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "golden brown", "background": "gray", "mouth": "phoneme wah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7790 + }, "metadata_dict": { "eyes": "closed", "hat": "fez", @@ -92563,11 +115935,14 @@ "fur": "brown", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7791 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sailor shirt", @@ -92575,22 +115950,28 @@ "mouth": "bored", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7792 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "smoking jacket", "eyes": "bored", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7793 + }, "metadata_dict": { "clothes": "striped tee", "earring": "silver stud", @@ -92598,11 +115979,14 @@ "eyes": "3d", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7794 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "black", @@ -92611,11 +115995,14 @@ "mouth": "bored cigarette", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7795 + }, "metadata_dict": { "eyes": "closed", "earring": "diamond stud", @@ -92624,33 +116011,42 @@ "background": "blue", "mouth": "bored unshaven cigarette", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7796 + }, "metadata_dict": { "clothes": "striped tee", "background": "aquamarine", "eyes": "blue beams", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7797 + }, "metadata_dict": { "fur": "tan", "background": "orange", "mouth": "bored", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7798 + }, "metadata_dict": { "fur": "tan", "clothes": "bone tee", @@ -92658,22 +116054,28 @@ "mouth": "bored", "hat": "safari", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7799 + }, "metadata_dict": { "hat": "bandana blue", "mouth": "dumbfounded", "background": "aquamarine", "eyes": "bored", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7800 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "black holes t", @@ -92682,21 +116084,27 @@ "eyes": "bored", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7801 + }, "metadata_dict": { "background": "gray", "eyes": "robot", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7802 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "zombie", @@ -92705,11 +116113,14 @@ "fur": "black", "hat": "faux hawk", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7803 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -92717,11 +116128,14 @@ "background": "orange", "fur": "dark brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7804 + }, "metadata_dict": { "background": "blue", "fur": "pink", @@ -92729,11 +116143,14 @@ "mouth": "bored", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7805 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", @@ -92741,11 +116158,14 @@ "mouth": "bored", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7806 + }, "metadata_dict": { "mouth": "tongue out", "clothes": "guayabera", @@ -92753,22 +116173,28 @@ "eyes": "bored", "hat": "ww2 pilot helm", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7807 + }, "metadata_dict": { "eyes": "heart", "background": "orange", "fur": "noise", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7808 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "s&m hat", @@ -92776,11 +116202,14 @@ "background": "blue", "clothes": "hip hop", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7809 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -92789,33 +116218,42 @@ "earring": "silver stud", "fur": "red", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7810 + }, "metadata_dict": { "fur": "cream", "background": "orange", "eyes": "bored", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7811 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", "clothes": "prison jumpsuit", "background": "orange", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7812 + }, "metadata_dict": { "eyes": "closed", "clothes": "lumberjack shirt", @@ -92823,11 +116261,14 @@ "background": "gray", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7813 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "holographic", @@ -92835,11 +116276,14 @@ "fur": "black", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7814 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -92847,11 +116291,14 @@ "fur": "red", "background": "aquamarine", "hat": "spinner hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7815 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -92859,11 +116306,14 @@ "eyes": "bloodshot", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7816 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -92871,11 +116321,14 @@ "hat": "stuntman helmet", "clothes": "sleeveless logo t", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7817 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -92883,22 +116336,28 @@ "fur": "black", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7818 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", "clothes": "prison jumpsuit", "eyes": "bloodshot", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7819 + }, "metadata_dict": { "fur": "tan", "hat": "seaman's hat", @@ -92906,11 +116365,14 @@ "eyes": "bored", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7820 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -92919,11 +116381,14 @@ "earring": "gold stud", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7821 + }, "metadata_dict": { "earring": "gold hoop", "fur": "black", @@ -92932,11 +116397,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7822 + }, "metadata_dict": { "clothes": "leather punk jacket", "hat": "fez", @@ -92945,22 +116413,28 @@ "mouth": "bored unshaven cigarette", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7823 + }, "metadata_dict": { "hat": "irish boho", "fur": "pink", "background": "gray", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7824 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -92968,11 +116442,14 @@ "mouth": "small grin", "eyes": "bored", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7825 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", @@ -92980,11 +116457,14 @@ "fur": "brown", "eyes": "sleepy", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7826 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -92992,11 +116472,14 @@ "hat": "fez", "fur": "cheetah", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7827 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "work vest", @@ -93005,11 +116488,14 @@ "hat": "fisherman's hat", "mouth": "phoneme wah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7828 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "black", @@ -93017,11 +116503,14 @@ "clothes": "navy striped tee", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7829 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -93029,11 +116518,14 @@ "hat": "fisherman's hat", "fur": "brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7830 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold stud", @@ -93041,11 +116533,14 @@ "fur": "brown", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7831 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", @@ -93053,22 +116548,28 @@ "hat": "safari", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7832 + }, "metadata_dict": { "mouth": "grin", "fur": "black", "background": "gray", "eyes": "angry", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7833 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme oh", @@ -93077,21 +116578,27 @@ "earring": "silver hoop", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7834 + }, "metadata_dict": { "mouth": "grin", "background": "orange", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7835 + }, "metadata_dict": { "eyes": "holographic", "fur": "golden brown", @@ -93099,22 +116606,28 @@ "hat": "fisherman's hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7836 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "sleepy", "fur": "white", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7837 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -93122,11 +116635,14 @@ "background": "yellow", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7838 + }, "metadata_dict": { "background": "orange", "clothes": "bayc t black", @@ -93134,22 +116650,28 @@ "fur": "brown", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7839 + }, "metadata_dict": { "mouth": "bored party horn", "hat": "bayc flipped brim", "eyes": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7840 + }, "metadata_dict": { "fur": "black", "eyes": "bloodshot", @@ -93157,11 +116679,14 @@ "earring": "silver hoop", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7841 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -93169,11 +116694,14 @@ "clothes": "lumberjack shirt", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7842 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", @@ -93181,22 +116709,28 @@ "hat": "fez", "background": "orange", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7843 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "mouth": "bored unshaven", "fur": "tan", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7844 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "sushi chef headband", @@ -93204,11 +116738,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7845 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", @@ -93217,11 +116754,14 @@ "clothes": "tuxedo tee", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7846 + }, "metadata_dict": { "eyes": "closed", "clothes": "leather punk jacket", @@ -93229,11 +116769,14 @@ "background": "blue", "fur": "pink", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7847 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -93241,11 +116784,14 @@ "mouth": "bored", "fur": "zombie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7848 + }, "metadata_dict": { "eyes": "closed", "clothes": "black t", @@ -93253,22 +116799,28 @@ "background": "yellow", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7849 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "bored", "hat": "bowler", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7850 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -93277,22 +116829,28 @@ "background": "aquamarine", "fur": "black", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7851 + }, "metadata_dict": { "eyes": "coins", "background": "blue", "fur": "black", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7852 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -93301,22 +116859,28 @@ "mouth": "small grin", "hat": "bowler", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7853 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "black", "eyes": "bored", "mouth": "tongue out", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7854 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -93324,11 +116888,14 @@ "hat": "army hat", "fur": "cheetah", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7855 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "leather jacket", @@ -93336,11 +116903,14 @@ "hat": "fisherman's hat", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7856 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -93348,33 +116918,42 @@ "background": "gray", "hat": "prussian helmet", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7857 + }, "metadata_dict": { "clothes": "bandolier", "fur": "dark brown", "mouth": "small grin", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7858 + }, "metadata_dict": { "eyes": "zombie", "fur": "black", "clothes": "lab coat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7859 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -93383,11 +116962,14 @@ "background": "gray", "eyes": "crazy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7860 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -93396,11 +116978,14 @@ "earring": "gold stud", "eyes": "bloodshot", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7861 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -93408,22 +116993,28 @@ "fur": "cheetah", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7862 + }, "metadata_dict": { "background": "aquamarine", "fur": "noise", "hat": "cowboy hat", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7863 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", @@ -93431,33 +117022,42 @@ "clothes": "pimp coat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7864 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", "fur": "black", "mouth": "bored unshaven kazoo", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7865 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "golden brown", "hat": "seaman's hat", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7866 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "gold hoop", @@ -93465,11 +117065,14 @@ "clothes": "tie dye", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7867 + }, "metadata_dict": { "eyes": "coins", "fur": "dark brown", @@ -93477,22 +117080,28 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7868 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "hat": "spinner hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7869 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -93500,22 +117109,28 @@ "clothes": "space suit", "eyes": "coins", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7870 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "fur": "tan", "clothes": "sleeveless logo t", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7871 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -93524,11 +117139,14 @@ "clothes": "lab coat", "hat": "bowler", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7872 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -93537,11 +117155,14 @@ "mouth": "jovial", "hat": "spinner hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7873 + }, "metadata_dict": { "hat": "bandana blue", "eyes": "coins", @@ -93550,11 +117171,14 @@ "fur": "pink", "clothes": "bayc t black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7874 + }, "metadata_dict": { "hat": "horns", "eyes": "hypnotized", @@ -93562,22 +117186,28 @@ "fur": "golden brown", "clothes": "leather jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7875 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", "hat": "irish boho", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7876 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -93586,11 +117216,14 @@ "fur": "black", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7877 + }, "metadata_dict": { "fur": "golden brown", "hat": "king's crown", @@ -93598,11 +117231,14 @@ "eyes": "robot", "clothes": "smoking jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7878 + }, "metadata_dict": { "eyes": "closed", "clothes": "toga", @@ -93611,22 +117247,28 @@ "earring": "silver hoop", "mouth": "tongue out", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7879 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "prison jumpsuit", "background": "blue", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7880 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -93635,22 +117277,28 @@ "eyes": "3d", "background": "orange", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7881 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "golden brown", "background": "aquamarine", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7882 + }, "metadata_dict": { "eyes": "zombie", "earring": "gold stud", @@ -93659,11 +117307,14 @@ "clothes": "admirals coat", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7883 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "background": "orange", @@ -93671,11 +117322,14 @@ "fur": "cheetah", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7884 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -93683,11 +117337,14 @@ "mouth": "bored bubblegum", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7885 + }, "metadata_dict": { "clothes": "bayc t red", "background": "aquamarine", @@ -93695,11 +117352,14 @@ "fur": "death bot", "hat": "commie hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7886 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -93707,11 +117367,14 @@ "earring": "gold stud", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7887 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "noise", @@ -93719,11 +117382,14 @@ "eyes": "sleepy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7888 + }, "metadata_dict": { "earring": "gold hoop", "fur": "dark brown", @@ -93731,22 +117397,28 @@ "background": "purple", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7889 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "black t", "fur": "dark brown", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7890 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -93754,11 +117426,14 @@ "hat": "army hat", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7891 + }, "metadata_dict": { "hat": "trippy captain's hat", "background": "blue", @@ -93766,11 +117441,14 @@ "fur": "brown", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7892 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "cowboy shirt", @@ -93778,11 +117456,14 @@ "eyes": "bored", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7893 + }, "metadata_dict": { "eyes": "coins", "mouth": "jovial", @@ -93790,33 +117471,42 @@ "background": "blue", "hat": "bowler", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7894 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "laurel wreath", "fur": "golden brown", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7895 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", "fur": "pink", "eyes": "bored", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7896 + }, "metadata_dict": { "clothes": "bandolier", "hat": "seaman's hat", @@ -93824,22 +117514,28 @@ "background": "aquamarine", "fur": "pink", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7897 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "dumbfounded", "hat": "beanie", "fur": "death bot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7898 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -93847,11 +117543,14 @@ "fur": "black", "clothes": "biker vest", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7899 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -93859,22 +117558,28 @@ "eyes": "bored", "hat": "girl's hair short", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7900 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "aquamarine", "hat": "fisherman's hat", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7901 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "bored unshaven pipe", @@ -93883,11 +117588,14 @@ "clothes": "admirals coat", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7902 + }, "metadata_dict": { "fur": "cream", "earring": "gold hoop", @@ -93895,11 +117603,14 @@ "hat": "bayc hat red", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7903 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "bored party horn", @@ -93908,11 +117619,14 @@ "fur": "black", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7904 + }, "metadata_dict": { "eyes": "blindfold", "fur": "pink", @@ -93920,11 +117634,14 @@ "hat": "cowboy hat", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7905 + }, "metadata_dict": { "clothes": "work vest", "mouth": "jovial", @@ -93932,11 +117649,14 @@ "background": "gray", "fur": "robot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7906 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -93945,11 +117665,14 @@ "eyes": "bored", "clothes": "lab coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7907 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -93958,43 +117681,55 @@ "fur": "dark brown", "hat": "short mohawk", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7908 + }, "metadata_dict": { "fur": "pink", "background": "yellow", "eyes": "sleepy", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7909 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "grin", "fur": "red", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7910 + }, "metadata_dict": { "background": "gray", "fur": "black", "mouth": "grin", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7911 + }, "metadata_dict": { "background": "gray", "eyes": "coins", @@ -94002,11 +117737,14 @@ "clothes": "tuxedo tee", "fur": "cheetah", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7912 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -94014,11 +117752,14 @@ "fur": "tan", "hat": "sushi chef headband", "clothes": "biker vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7913 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored bubblegum", @@ -94027,11 +117768,14 @@ "hat": "cowboy hat", "background": "gray", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7914 + }, "metadata_dict": { "fur": "pink", "eyes": "3d", @@ -94039,11 +117783,14 @@ "clothes": "bone necklace", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7915 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -94051,11 +117798,14 @@ "hat": "sushi chef headband", "background": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7916 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme vuh", @@ -94063,22 +117813,28 @@ "hat": "bayc flipped brim", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7917 + }, "metadata_dict": { "eyes": "holographic", "fur": "cream", "hat": "fisherman's hat", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7918 + }, "metadata_dict": { "eyes": "holographic", "mouth": "rage", @@ -94086,22 +117842,28 @@ "background": "orange", "hat": "short mohawk", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7919 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "holographic", "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7920 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cheetah", @@ -94109,22 +117871,28 @@ "eyes": "3d", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7921 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "holographic", "clothes": "rainbow suspenders", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7922 + }, "metadata_dict": { "background": "aquamarine", "eyes": "bloodshot", @@ -94132,22 +117900,28 @@ "earring": "silver hoop", "clothes": "prom dress", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7923 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "cream", "eyes": "robot", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7924 + }, "metadata_dict": { "clothes": "black t", "background": "yellow", @@ -94156,11 +117930,14 @@ "hat": "bowler", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7925 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -94168,11 +117945,14 @@ "hat": "short mohawk", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7926 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -94180,22 +117960,28 @@ "clothes": "bayc t black", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7927 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "zombie", "fur": "noise", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7928 + }, "metadata_dict": { "hat": "baby's bonnet", "clothes": "sailor shirt", @@ -94203,11 +117989,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7929 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "seaman's hat", @@ -94215,11 +118004,14 @@ "fur": "pink", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7930 + }, "metadata_dict": { "clothes": "black t", "eyes": "3d", @@ -94227,11 +118019,14 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7931 + }, "metadata_dict": { "mouth": "grin diamond grill", "earring": "gold stud", @@ -94240,22 +118035,28 @@ "hat": "vietnam era helmet", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7932 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "mouth": "dumbfounded", "background": "aquamarine", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7933 + }, "metadata_dict": { "hat": "party hat 1", "background": "aquamarine", @@ -94263,11 +118064,14 @@ "eyes": "bloodshot", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7934 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "scumbag", @@ -94275,11 +118079,14 @@ "fur": "black", "hat": "faux hawk", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7935 + }, "metadata_dict": { "fur": "tan", "earring": "diamond stud", @@ -94287,11 +118094,14 @@ "hat": "commie hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7936 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "sleeveless t", @@ -94299,11 +118109,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7937 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "lumberjack shirt", @@ -94311,33 +118124,42 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7938 + }, "metadata_dict": { "fur": "cream", "mouth": "dumbfounded", "eyes": "bored", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7939 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 1", "mouth": "bored pizza", "fur": "cheetah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7940 + }, "metadata_dict": { "earring": "diamond stud", "eyes": "bored", @@ -94345,33 +118167,42 @@ "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7941 + }, "metadata_dict": { "mouth": "grin", "clothes": "blue dress", "background": "blue", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7942 + }, "metadata_dict": { "hat": "fez", "fur": "black", "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7943 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -94379,11 +118210,14 @@ "fur": "noise", "hat": "cowboy hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7944 + }, "metadata_dict": { "hat": "horns", "fur": "golden brown", @@ -94391,11 +118225,14 @@ "clothes": "bayc t black", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7945 + }, "metadata_dict": { "background": "new punk blue", "hat": "baby's bonnet", @@ -94403,33 +118240,42 @@ "mouth": "small grin", "fur": "white", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7946 + }, "metadata_dict": { "clothes": "black holes t", "fur": "golden brown", "mouth": "grin", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7947 + }, "metadata_dict": { "clothes": "blue dress", "fur": "cheetah", "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7948 + }, "metadata_dict": { "clothes": "black holes t", "background": "orange", @@ -94438,11 +118284,14 @@ "earring": "silver hoop", "hat": "faux hawk", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7949 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "red", @@ -94451,22 +118300,28 @@ "clothes": "lab coat", "hat": "army hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7950 + }, "metadata_dict": { "eyes": "coins", "fur": "black", "clothes": "sleeveless logo t", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7951 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -94474,22 +118329,28 @@ "clothes": "leather jacket", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7952 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", "background": "aquamarine", "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7953 + }, "metadata_dict": { "earring": "silver stud", "eyes": "3d", @@ -94497,22 +118358,28 @@ "background": "purple", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7954 + }, "metadata_dict": { "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7955 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", @@ -94520,22 +118387,28 @@ "hat": "cowboy hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7956 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "dark brown", "eyes": "bored", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7957 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", @@ -94543,11 +118416,14 @@ "fur": "brown", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7958 + }, "metadata_dict": { "eyes": "closed", "clothes": "black holes t", @@ -94555,11 +118431,14 @@ "background": "yellow", "hat": "bunny ears", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7959 + }, "metadata_dict": { "clothes": "black holes t", "fur": "gray", @@ -94567,11 +118446,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7960 + }, "metadata_dict": { "eyes": "closed", "fur": "black", @@ -94579,11 +118461,14 @@ "hat": "short mohawk", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7961 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -94591,33 +118476,42 @@ "hat": "beanie", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7962 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "tuxedo tee", "fur": "brown", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7963 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "background": "orange", "hat": "army hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7964 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -94625,11 +118519,14 @@ "mouth": "bored unshaven cigarette", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7965 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "red", @@ -94637,11 +118534,14 @@ "clothes": "smoking jacket", "hat": "short mohawk", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7966 + }, "metadata_dict": { "mouth": "bored cigarette", "earring": "silver hoop", @@ -94649,11 +118549,14 @@ "background": "purple", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7967 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", @@ -94661,11 +118564,14 @@ "clothes": "guayabera", "hat": "girl's hair short", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7968 + }, "metadata_dict": { "hat": "halo", "clothes": "space suit", @@ -94673,11 +118579,14 @@ "background": "gray", "eyes": "angry", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7969 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black t", @@ -94686,11 +118595,14 @@ "earring": "silver hoop", "background": "yellow", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7970 + }, "metadata_dict": { "mouth": "discomfort", "background": "blue", @@ -94698,11 +118610,14 @@ "eyes": "bored", "hat": "fisherman's hat", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7971 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "gray", @@ -94710,11 +118625,14 @@ "background": "yellow", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7972 + }, "metadata_dict": { "hat": "trippy captain's hat", "background": "new punk blue", @@ -94722,11 +118640,14 @@ "eyes": "blindfold", "mouth": "phoneme vuh", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7973 + }, "metadata_dict": { "mouth": "bored unshaven bubblegum", "background": "aquamarine", @@ -94735,11 +118656,14 @@ "hat": "commie hat", "clothes": "hip hop", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7974 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "black suit", @@ -94747,11 +118671,14 @@ "hat": "fisherman's hat", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7975 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "kings robe", @@ -94759,11 +118686,14 @@ "fur": "dark brown", "hat": "cowboy hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7976 + }, "metadata_dict": { "fur": "dmt", "background": "blue", @@ -94771,22 +118701,28 @@ "hat": "girl's hair short", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7977 + }, "metadata_dict": { "fur": "golden brown", "mouth": "jovial", "background": "orange", "hat": "short mohawk", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7978 + }, "metadata_dict": { "mouth": "grin", "fur": "black", @@ -94794,11 +118730,14 @@ "hat": "spinner hat", "background": "gray", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7979 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "cowboy shirt", @@ -94807,11 +118746,14 @@ "hat": "cowboy hat", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7980 + }, "metadata_dict": { "mouth": "bored pipe", "hat": "cowboy hat", @@ -94819,11 +118761,14 @@ "eyes": "crazy", "clothes": "caveman pelt", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7981 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -94832,11 +118777,14 @@ "earring": "gold stud", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7982 + }, "metadata_dict": { "clothes": "kings robe", "earring": "gold hoop", @@ -94845,22 +118793,28 @@ "mouth": "bored", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7983 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", "fur": "dmt", "clothes": "tuxedo tee", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7984 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -94868,11 +118822,14 @@ "mouth": "bored unshaven pipe", "fur": "cheetah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7985 + }, "metadata_dict": { "eyes": "x eyes", "background": "gray", @@ -94881,11 +118838,14 @@ "fur": "dark brown", "clothes": "pimp coat", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7986 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -94893,11 +118853,14 @@ "background": "blue", "hat": "girl's hair short", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7987 + }, "metadata_dict": { "clothes": "prison jumpsuit", "mouth": "jovial", @@ -94905,11 +118868,14 @@ "hat": "beanie", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7988 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -94917,11 +118883,14 @@ "background": "yellow", "eyes": "angry", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7989 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bloodshot", @@ -94929,33 +118898,42 @@ "hat": "cowboy hat", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7990 + }, "metadata_dict": { "eyes": "zombie", "clothes": "tweed suit", "background": "yellow", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7991 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "robot", "clothes": "leather jacket", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7992 + }, "metadata_dict": { "clothes": "bandolier", "earring": "silver stud", @@ -94963,11 +118941,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7993 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme oh", @@ -94975,11 +118956,14 @@ "clothes": "work vest", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7994 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", @@ -94987,22 +118971,28 @@ "background": "blue", "clothes": "guayabera", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7995 + }, "metadata_dict": { "hat": "stuntman helmet", "fur": "black", "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7996 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "eyepatch", @@ -95010,11 +119000,14 @@ "fur": "brown", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7997 + }, "metadata_dict": { "background": "new punk blue", "hat": "sushi chef headband", @@ -95022,11 +119015,14 @@ "eyes": "bored", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7998 + }, "metadata_dict": { "mouth": "jovial", "clothes": "biker vest", @@ -95035,22 +119031,28 @@ "background": "yellow", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 7999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 7999 + }, "metadata_dict": { "hat": "laurel wreath", "eyes": "bored", "background": "gray", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8000 + }, "metadata_dict": { "hat": "irish boho", "clothes": "space suit", @@ -95059,11 +119061,14 @@ "eyes": "bored", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8001 + }, "metadata_dict": { "eyes": "closed", "clothes": "tweed suit", @@ -95072,11 +119077,14 @@ "fur": "death bot", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8002 + }, "metadata_dict": { "fur": "tan", "clothes": "leather jacket", @@ -95084,11 +119092,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8003 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -95096,22 +119107,28 @@ "clothes": "leather jacket", "eyes": "3d", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8004 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", "earring": "silver stud", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8005 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "coins", @@ -95120,11 +119137,14 @@ "earring": "silver stud", "background": "aquamarine", "clothes": "leather jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8006 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -95132,11 +119152,14 @@ "background": "yellow", "clothes": "guayabera", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8007 + }, "metadata_dict": { "mouth": "rage", "fur": "red", @@ -95144,11 +119167,14 @@ "hat": "bowler", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8008 + }, "metadata_dict": { "eyes": "coins", "clothes": "prom dress", @@ -95156,11 +119182,14 @@ "earring": "silver stud", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8009 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -95168,11 +119197,14 @@ "clothes": "black t", "background": "aquamarine", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8010 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "silver stud", @@ -95180,11 +119212,14 @@ "background": "blue", "hat": "beanie", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8011 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "leather jacket", @@ -95192,32 +119227,41 @@ "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8012 + }, "metadata_dict": { "mouth": "grin", "eyes": "3d", "background": "orange", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8013 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "jovial", "background": "orange", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8014 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -95225,22 +119269,28 @@ "fur": "gray", "background": "aquamarine", "earring": "gold stud" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8015 + }, "metadata_dict": { "background": "blue", "eyes": "bloodshot", "mouth": "bored unshaven kazoo", "hat": "bowler", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8016 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -95248,22 +119298,28 @@ "clothes": "leather jacket", "mouth": "bored pizza", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8017 + }, "metadata_dict": { "background": "blue", "fur": "black", "eyes": "bloodshot", "clothes": "bayc t black", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8018 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "zombie", @@ -95271,11 +119327,14 @@ "background": "gray", "hat": "beanie", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8019 + }, "metadata_dict": { "hat": "irish boho", "background": "orange", @@ -95283,11 +119342,14 @@ "eyes": "bored", "mouth": "bored unshaven cigar", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8020 + }, "metadata_dict": { "eyes": "blindfold", "background": "gray", @@ -95295,22 +119357,28 @@ "clothes": "tanktop", "hat": "spinner hat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8021 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "mouth": "bored cigarette", "fur": "tan", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8022 + }, "metadata_dict": { "clothes": "navy striped tee", "earring": "silver stud", @@ -95319,11 +119387,14 @@ "mouth": "bored cigar", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8023 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "closed", @@ -95331,11 +119402,14 @@ "fur": "trippy", "clothes": "black holes t", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8024 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "heart", @@ -95344,22 +119418,28 @@ "fur": "black", "earring": "silver hoop", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8025 + }, "metadata_dict": { "background": "blue", "fur": "dark brown", "mouth": "bored unshaven cigarette", "eyes": "sleepy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8026 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "sleeveless t", @@ -95368,11 +119448,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8027 + }, "metadata_dict": { "background": "new punk blue", "fur": "blue", @@ -95380,33 +119463,42 @@ "clothes": "admirals coat", "hat": "beanie", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8028 + }, "metadata_dict": { "fur": "brown", "clothes": "prison jumpsuit", "mouth": "dumbfounded", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8029 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", "fur": "black", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8030 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored party horn", @@ -95414,33 +119506,42 @@ "eyes": "bored", "earring": "silver hoop", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8031 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "earring": "gold stud", "fur": "dark brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8032 + }, "metadata_dict": { "fur": "gray", "background": "orange", "eyes": "sleepy", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8033 + }, "metadata_dict": { "clothes": "lumberjack shirt", "background": "aquamarine", @@ -95448,22 +119549,28 @@ "mouth": "bored", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8034 + }, "metadata_dict": { "eyes": "heart", "clothes": "black holes t", "mouth": "rage", "fur": "red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8035 + }, "metadata_dict": { "clothes": "vietnam jacket", "mouth": "bored unshaven cigarette", @@ -95471,22 +119578,28 @@ "eyes": "angry", "fur": "zombie", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8036 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "eyepatch", "background": "aquamarine", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8037 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "seaman's hat", @@ -95494,22 +119607,28 @@ "fur": "pink", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8038 + }, "metadata_dict": { "background": "orange", "mouth": "bored", "fur": "white", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8039 + }, "metadata_dict": { "fur": "pink", "eyes": "bloodshot", @@ -95517,22 +119636,28 @@ "hat": "safari", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8040 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "clothes": "sleeveless t", "fur": "pink", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8041 + }, "metadata_dict": { "clothes": "bandolier", "background": "blue", @@ -95541,11 +119666,14 @@ "fur": "brown", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8042 + }, "metadata_dict": { "mouth": "phoneme vuh", "eyes": "bloodshot", @@ -95553,11 +119681,14 @@ "background": "purple", "fur": "white", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8043 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -95565,22 +119696,28 @@ "eyes": "zombie", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8044 + }, "metadata_dict": { "clothes": "striped tee", "fur": "black", "mouth": "bored bubblegum", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8045 + }, "metadata_dict": { "fur": "brown", "clothes": "black t", @@ -95589,11 +119726,14 @@ "hat": "fisherman's hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8046 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", @@ -95601,22 +119741,28 @@ "background": "aquamarine", "eyes": "bloodshot", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8047 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", "clothes": "smoking jacket", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8048 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -95625,11 +119771,14 @@ "earring": "silver stud", "hat": "vietnam era helmet", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8049 + }, "metadata_dict": { "fur": "tan", "clothes": "leather jacket", @@ -95637,22 +119786,28 @@ "background": "yellow", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8050 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "sleepy", "background": "purple", "fur": "death bot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8051 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -95660,11 +119815,14 @@ "fur": "brown", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8052 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", @@ -95672,11 +119830,14 @@ "fur": "brown", "mouth": "bored cigarette", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8053 + }, "metadata_dict": { "eyes": "scumbag", "earring": "diamond stud", @@ -95684,11 +119845,14 @@ "fur": "red", "background": "orange", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8054 + }, "metadata_dict": { "fur": "tan", "clothes": "bandolier", @@ -95696,11 +119860,14 @@ "eyes": "bloodshot", "mouth": "small grin", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8055 + }, "metadata_dict": { "mouth": "grin", "fur": "black", @@ -95708,11 +119875,14 @@ "hat": "beanie", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8056 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -95720,22 +119890,28 @@ "fur": "noise", "hat": "bunny ears", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8057 + }, "metadata_dict": { "fur": "black", "clothes": "tie dye", "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8058 + }, "metadata_dict": { "eyes": "zombie", "earring": "diamond stud", @@ -95744,11 +119920,14 @@ "background": "blue", "hat": "fisherman's hat", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8059 + }, "metadata_dict": { "mouth": "dumbfounded", "hat": "fisherman's hat", @@ -95756,11 +119935,14 @@ "clothes": "navy striped tee", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8060 + }, "metadata_dict": { "clothes": "black holes t", "hat": "seaman's hat", @@ -95769,11 +119951,14 @@ "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8061 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "horns", @@ -95781,11 +119966,14 @@ "fur": "dark brown", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8062 + }, "metadata_dict": { "eyes": "x eyes", "hat": "horns", @@ -95793,11 +119981,14 @@ "earring": "gold stud", "mouth": "bored unshaven kazoo", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8063 + }, "metadata_dict": { "hat": "irish boho", "mouth": "jovial", @@ -95805,22 +119996,28 @@ "eyes": "crazy", "fur": "white", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8064 + }, "metadata_dict": { "hat": "bowler", "mouth": "bored", "eyes": "angry", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8065 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "blue", @@ -95828,22 +120025,28 @@ "clothes": "smoking jacket", "fur": "dark brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8066 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", "fur": "dmt", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8067 + }, "metadata_dict": { "fur": "tan", "clothes": "black t", @@ -95851,11 +120054,14 @@ "mouth": "bored pipe", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8068 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "blue", @@ -95863,11 +120069,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8069 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -95875,11 +120084,14 @@ "background": "blue", "fur": "dark brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8070 + }, "metadata_dict": { "clothes": "sailor shirt", "background": "aquamarine", @@ -95887,11 +120099,14 @@ "mouth": "small grin", "eyes": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8071 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "aquamarine", @@ -95899,22 +120114,28 @@ "hat": "beanie", "mouth": "bored cigarette", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8072 + }, "metadata_dict": { "eyes": "heart", "fur": "black", "background": "orange", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8073 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -95923,11 +120144,14 @@ "eyes": "bloodshot", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8074 + }, "metadata_dict": { "background": "yellow", "earring": "silver stud", @@ -95936,22 +120160,28 @@ "fur": "brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8075 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "orange", "eyes": "bored", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8076 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "dark brown", @@ -95959,22 +120189,28 @@ "hat": "bayc hat red", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8077 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", "fur": "cheetah", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8078 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -95982,11 +120218,14 @@ "fur": "black", "mouth": "tongue out", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8079 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "blue", @@ -95994,11 +120233,14 @@ "eyes": "bored", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8080 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -96006,11 +120248,14 @@ "fur": "brown", "clothes": "prom dress", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8081 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "coins", @@ -96018,11 +120263,14 @@ "background": "orange", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8082 + }, "metadata_dict": { "eyes": "blindfold", "hat": "fez", @@ -96031,11 +120279,14 @@ "clothes": "stunt jacket", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8083 + }, "metadata_dict": { "eyes": "robot", "background": "blue", @@ -96043,33 +120294,42 @@ "hat": "bowler", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8084 + }, "metadata_dict": { "eyes": "heart", "fur": "cheetah", "mouth": "phoneme vuh", "hat": "spinner hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8085 + }, "metadata_dict": { "eyes": "blindfold", "hat": "seaman's hat", "mouth": "dumbfounded", "background": "aquamarine", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8086 + }, "metadata_dict": { "background": "new punk blue", "clothes": "leather punk jacket", @@ -96077,11 +120337,14 @@ "eyes": "bored", "fur": "brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8087 + }, "metadata_dict": { "mouth": "grin", "earring": "silver stud", @@ -96089,11 +120352,14 @@ "fur": "black", "background": "orange", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8088 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "small grin", @@ -96101,11 +120367,14 @@ "hat": "halo", "fur": "blue", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8089 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "gray", @@ -96114,11 +120383,14 @@ "clothes": "tuxedo tee", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8090 + }, "metadata_dict": { "hat": "prussian helmet", "clothes": "sailor shirt", @@ -96126,11 +120398,14 @@ "fur": "cheetah", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8091 + }, "metadata_dict": { "clothes": "kings robe", "hat": "bandana blue", @@ -96138,11 +120413,14 @@ "mouth": "dumbfounded", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8092 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "blindfold", @@ -96150,11 +120428,14 @@ "hat": "party hat 1", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8093 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -96162,11 +120443,14 @@ "hat": "army hat", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8094 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -96174,33 +120458,42 @@ "clothes": "toga", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8095 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "dark brown", "eyes": "bored", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8096 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "coins", "mouth": "dumbfounded", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8097 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven dagger", @@ -96209,11 +120502,14 @@ "clothes": "sleeveless logo t", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8098 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "silver stud", @@ -96221,11 +120517,14 @@ "fur": "death bot", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8099 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "lumberjack shirt", @@ -96233,11 +120532,14 @@ "background": "blue", "hat": "cowboy hat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8100 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "silver stud", @@ -96246,11 +120548,14 @@ "mouth": "bored cigarette", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8101 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", @@ -96258,11 +120563,14 @@ "hat": "short mohawk", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8102 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "sunglasses", @@ -96270,11 +120578,14 @@ "background": "blue", "clothes": "stunt jacket", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8103 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -96282,11 +120593,14 @@ "clothes": "cowboy shirt", "background": "blue", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8104 + }, "metadata_dict": { "clothes": "striped tee", "earring": "gold hoop", @@ -96295,11 +120609,14 @@ "mouth": "bored", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8105 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "bloodshot", @@ -96308,11 +120625,14 @@ "background": "yellow", "fur": "death bot", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8106 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "bandana blue", @@ -96320,11 +120640,14 @@ "mouth": "bored pipe", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8107 + }, "metadata_dict": { "clothes": "striped tee", "hat": "beanie", @@ -96332,11 +120655,14 @@ "mouth": "bored cigarette", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8108 + }, "metadata_dict": { "fur": "golden brown", "mouth": "grin", @@ -96344,11 +120670,14 @@ "hat": "cowboy hat", "clothes": "hip hop", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8109 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -96356,11 +120685,14 @@ "fur": "black", "eyes": "bloodshot", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8110 + }, "metadata_dict": { "mouth": "bored party horn", "fur": "dark brown", @@ -96368,11 +120700,14 @@ "eyes": "sleepy", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8111 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -96380,11 +120715,14 @@ "background": "aquamarine", "hat": "spinner hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8112 + }, "metadata_dict": { "hat": "horns", "eyes": "hypnotized", @@ -96392,22 +120730,28 @@ "background": "blue", "fur": "dark brown", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8113 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven party horn", "clothes": "black t", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8114 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "bored unshaven", @@ -96415,11 +120759,14 @@ "eyes": "bored", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8115 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -96427,22 +120774,28 @@ "hat": "commie hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8116 + }, "metadata_dict": { "fur": "cream", "clothes": "tweed suit", "mouth": "phoneme vuh", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8117 + }, "metadata_dict": { "eyes": "eyepatch", "background": "aquamarine", @@ -96450,11 +120803,14 @@ "fur": "dark brown", "hat": "fisherman's hat", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8118 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -96462,11 +120818,14 @@ "fur": "dark brown", "hat": "cowboy hat", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8119 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -96474,11 +120833,14 @@ "eyes": "bored", "hat": "fisherman's hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8120 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "space suit", @@ -96486,11 +120848,14 @@ "mouth": "bored unshaven bubblegum", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8121 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", @@ -96498,22 +120863,28 @@ "clothes": "bone necklace", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8122 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", "mouth": "bored pipe", "eyes": "3d", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8123 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -96521,11 +120892,14 @@ "fur": "brown", "clothes": "stunt jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8124 + }, "metadata_dict": { "clothes": "striped tee", "fur": "gray", @@ -96533,22 +120907,28 @@ "background": "yellow", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8125 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", "mouth": "grin diamond grill", "fur": "dark brown", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8126 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "irish boho", @@ -96556,11 +120936,14 @@ "clothes": "tie dye", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8127 + }, "metadata_dict": { "fur": "tan", "hat": "cowboy hat", @@ -96568,11 +120951,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8128 + }, "metadata_dict": { "eyes": "coins", "mouth": "rage", @@ -96580,22 +120966,28 @@ "fur": "black", "background": "orange", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8129 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "brown", "hat": "bayc flipped brim", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8130 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -96603,22 +120995,28 @@ "mouth": "small grin", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8131 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "fur": "golden brown", "mouth": "jovial", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8132 + }, "metadata_dict": { "mouth": "discomfort", "hat": "sushi chef headband", @@ -96627,11 +121025,14 @@ "eyes": "3d", "fur": "dark brown", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8133 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "bone tee", @@ -96640,22 +121041,28 @@ "mouth": "bored pipe", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8134 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "cream", "clothes": "prison jumpsuit", "eyes": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8135 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "hypnotized", @@ -96664,11 +121071,14 @@ "mouth": "bored unshaven dagger", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8136 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -96676,11 +121086,14 @@ "hat": "short mohawk", "clothes": "tuxedo tee", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8137 + }, "metadata_dict": { "mouth": "grin multicolored", "background": "orange", @@ -96688,11 +121101,14 @@ "fur": "brown", "hat": "vietnam era helmet", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8138 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "black", @@ -96700,33 +121116,42 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8139 + }, "metadata_dict": { "eyes": "scumbag", "hat": "party hat 1", "mouth": "jovial", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8140 + }, "metadata_dict": { "clothes": "black t", "fur": "pink", "background": "gray", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8141 + }, "metadata_dict": { "eyes": "closed", "hat": "army hat", @@ -96734,22 +121159,28 @@ "background": "purple", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8142 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "background": "blue", "eyes": "sleepy", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8143 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "red", @@ -96757,22 +121188,28 @@ "hat": "short mohawk", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8144 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "grin", "earring": "diamond stud", "background": "blue", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8145 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored party horn", @@ -96780,32 +121217,41 @@ "hat": "short mohawk", "eyes": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8146 + }, "metadata_dict": { "fur": "red", "mouth": "jovial", "background": "purple", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8147 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "cheetah", "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8148 + }, "metadata_dict": { "clothes": "striped tee", "hat": "irish boho", @@ -96813,11 +121259,14 @@ "background": "orange", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8149 + }, "metadata_dict": { "hat": "prussian helmet", "clothes": "sailor shirt", @@ -96825,11 +121274,14 @@ "background": "blue", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8150 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -96837,11 +121289,14 @@ "eyes": "blue beams", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8151 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "cream", @@ -96850,11 +121305,14 @@ "earring": "gold stud", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8152 + }, "metadata_dict": { "earring": "silver hoop", "clothes": "guayabera", @@ -96862,33 +121320,42 @@ "eyes": "angry", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8153 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", "background": "orange", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8154 + }, "metadata_dict": { "eyes": "zombie", "mouth": "bored party horn", "fur": "noise", "clothes": "bayc t black", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8155 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -96896,11 +121363,14 @@ "mouth": "dumbfounded", "clothes": "leather jacket", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8156 + }, "metadata_dict": { "eyes": "heart", "hat": "sushi chef headband", @@ -96908,11 +121378,14 @@ "clothes": "work vest", "background": "aquamarine", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8157 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", @@ -96920,11 +121393,14 @@ "eyes": "bloodshot", "hat": "bayc hat red", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8158 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black suit", @@ -96932,21 +121408,27 @@ "eyes": "bloodshot", "hat": "army hat", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8159 + }, "metadata_dict": { "background": "aquamarine", "eyes": "3d", "fur": "tan", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8160 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored dagger", @@ -96954,11 +121436,14 @@ "clothes": "smoking jacket", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8161 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "baby's bonnet", @@ -96967,11 +121452,14 @@ "eyes": "3d", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8162 + }, "metadata_dict": { "earring": "gold hoop", "fur": "black", @@ -96980,11 +121468,14 @@ "hat": "bayc flipped brim", "clothes": "lab coat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8163 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -96992,11 +121483,14 @@ "hat": "army hat", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8164 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -97004,22 +121498,28 @@ "clothes": "biker vest", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8165 + }, "metadata_dict": { "hat": "fez", "eyes": "bloodshot", "mouth": "small grin", "fur": "noise", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8166 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -97027,11 +121527,14 @@ "fur": "cheetah", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8167 + }, "metadata_dict": { "mouth": "rage", "earring": "silver hoop", @@ -97039,11 +121542,14 @@ "background": "purple", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8168 + }, "metadata_dict": { "clothes": "black t", "mouth": "phoneme vuh", @@ -97051,11 +121557,14 @@ "fur": "noise", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8169 + }, "metadata_dict": { "hat": "irish boho", "clothes": "black holes t", @@ -97064,22 +121573,28 @@ "earring": "silver hoop", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8170 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "aquamarine", "fur": "pink", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8171 + }, "metadata_dict": { "eyes": "blindfold", "fur": "cream", @@ -97087,11 +121602,14 @@ "earring": "gold hoop", "mouth": "jovial", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8172 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -97099,11 +121617,14 @@ "eyes": "bored", "mouth": "bored pizza", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8173 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "baby's bonnet", @@ -97112,11 +121633,14 @@ "background": "yellow", "eyes": "sleepy", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8174 + }, "metadata_dict": { "eyes": "x eyes", "background": "gray", @@ -97124,11 +121648,14 @@ "clothes": "tanktop", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8175 + }, "metadata_dict": { "hat": "girl's hair pink", "earring": "gold stud", @@ -97137,11 +121664,14 @@ "clothes": "sleeveless logo t", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8176 + }, "metadata_dict": { "clothes": "sailor shirt", "earring": "silver stud", @@ -97149,11 +121679,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8177 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "leather punk jacket", @@ -97161,22 +121694,28 @@ "hat": "s&m hat", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8178 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "eyes": "bored", "hat": "bayc hat red", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8179 + }, "metadata_dict": { "clothes": "black t", "background": "blue", @@ -97184,11 +121723,14 @@ "eyes": "bored", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8180 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", @@ -97196,11 +121738,14 @@ "clothes": "lab coat", "hat": "bowler", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8181 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "cream", @@ -97208,11 +121753,14 @@ "clothes": "bayc t black", "hat": "army hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8182 + }, "metadata_dict": { "hat": "bandana blue", "eyes": "blindfold", @@ -97221,33 +121769,42 @@ "background": "aquamarine", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8183 + }, "metadata_dict": { "fur": "tan", "clothes": "cowboy shirt", "background": "orange", "eyes": "blue beams", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8184 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "bored", "fur": "brown", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8185 + }, "metadata_dict": { "eyes": "zombie", "earring": "diamond stud", @@ -97256,11 +121813,14 @@ "fur": "brown", "background": "yellow", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8186 + }, "metadata_dict": { "background": "aquamarine", "clothes": "bayc t black", @@ -97268,11 +121828,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8187 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -97280,11 +121843,14 @@ "fur": "dmt", "hat": "king's crown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8188 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "hypnotized", @@ -97292,22 +121858,28 @@ "background": "blue", "mouth": "bored unshaven cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8189 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "gray", "eyes": "bored", "background": "purple", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8190 + }, "metadata_dict": { "fur": "black", "background": "orange", @@ -97315,11 +121887,14 @@ "eyes": "bored", "mouth": "phoneme wah", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8191 + }, "metadata_dict": { "eyes": "zombie", "background": "aquamarine", @@ -97327,11 +121902,14 @@ "clothes": "work vest", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8192 + }, "metadata_dict": { "background": "gray", "eyes": "zombie", @@ -97339,11 +121917,14 @@ "fur": "cheetah", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8193 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", @@ -97351,11 +121932,14 @@ "background": "gray", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8194 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "gold stud", @@ -97364,11 +121948,14 @@ "background": "purple", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8195 + }, "metadata_dict": { "hat": "horns", "clothes": "work vest", @@ -97377,11 +121964,14 @@ "eyes": "bored", "earring": "silver hoop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8196 + }, "metadata_dict": { "mouth": "bored pipe", "earring": "silver hoop", @@ -97390,11 +121980,14 @@ "background": "purple", "eyes": "angry", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8197 + }, "metadata_dict": { "mouth": "phoneme ooo", "earring": "gold hoop", @@ -97403,11 +121996,14 @@ "clothes": "biker vest", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8198 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -97415,11 +122011,14 @@ "clothes": "cowboy shirt", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8199 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", @@ -97427,44 +122026,56 @@ "clothes": "tanktop", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8200 + }, "metadata_dict": { "eyes": "heart", "fur": "gray", "mouth": "phoneme vuh", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8201 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "clothes": "blue dress", "eyes": "3d", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8202 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", "fur": "dark brown", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8203 + }, "metadata_dict": { "eyes": "holographic", "clothes": "black holes t", @@ -97473,11 +122084,14 @@ "earring": "silver hoop", "hat": "girl's hair short", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8204 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -97485,33 +122099,42 @@ "clothes": "lab coat", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8205 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", "hat": "sushi chef headband", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8206 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "stunt jacket", "background": "yellow", "eyes": "sleepy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8207 + }, "metadata_dict": { "eyes": "heart", "mouth": "jovial", @@ -97519,11 +122142,14 @@ "hat": "short mohawk", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8208 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "cream", @@ -97531,11 +122157,14 @@ "clothes": "biker vest", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8209 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -97543,22 +122172,28 @@ "mouth": "bored unshaven cigar", "eyes": "crazy", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8210 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", "fur": "gray", "background": "blue", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8211 + }, "metadata_dict": { "eyes": "closed", "clothes": "kings robe", @@ -97567,11 +122202,14 @@ "earring": "silver hoop", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8212 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -97579,22 +122217,28 @@ "mouth": "small grin", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8213 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", "fur": "cream", "eyes": "coins", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8214 + }, "metadata_dict": { "eyes": "x eyes", "hat": "fisherman's hat", @@ -97602,11 +122246,14 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8215 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "hypnotized", @@ -97615,11 +122262,14 @@ "fur": "dark brown", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8216 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "black t", @@ -97627,11 +122277,14 @@ "fur": "dark brown", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8217 + }, "metadata_dict": { "fur": "tan", "eyes": "scumbag", @@ -97639,11 +122292,14 @@ "mouth": "grin", "background": "aquamarine", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8218 + }, "metadata_dict": { "hat": "s&m hat", "fur": "dark brown", @@ -97651,11 +122307,14 @@ "mouth": "bored", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8219 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin diamond grill", @@ -97664,33 +122323,42 @@ "fur": "cheetah", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8220 + }, "metadata_dict": { "mouth": "bored party horn", "hat": "bowler", "fur": "pink", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8221 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "party hat 2", "fur": "tan", "eyes": "heart", "background": "new punk blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8222 + }, "metadata_dict": { "mouth": "rage", "background": "orange", @@ -97698,11 +122366,14 @@ "hat": "fisherman's hat", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8223 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "coins", @@ -97710,11 +122381,14 @@ "hat": "spinner hat", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8224 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", @@ -97722,11 +122396,14 @@ "hat": "spinner hat", "mouth": "small grin", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8225 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -97734,22 +122411,28 @@ "background": "yellow", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8226 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "blue dress", "mouth": "grin diamond grill", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8227 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sailor shirt", @@ -97757,22 +122440,28 @@ "fur": "black", "hat": "fisherman's hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8228 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather jacket", "fur": "black", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8229 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -97780,55 +122469,70 @@ "mouth": "dumbfounded", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8230 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "eyes": "zombie", "clothes": "tie dye", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8231 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", "fur": "black", "hat": "girl's hair short", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8232 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "aquamarine", "fur": "black", "eyes": "3d", "clothes": "biker vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8233 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "brown", "clothes": "rainbow suspenders", "eyes": "robot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8234 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "zombie", @@ -97836,21 +122540,27 @@ "fur": "dark brown", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8235 + }, "metadata_dict": { "fur": "black", "background": "orange", "eyes": "bored", "mouth": "bored pizza" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8236 + }, "metadata_dict": { "mouth": "bored kazoo", "earring": "diamond stud", @@ -97858,11 +122568,14 @@ "clothes": "smoking jacket", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8237 + }, "metadata_dict": { "eyes": "heart", "mouth": "phoneme ooo", @@ -97870,11 +122583,14 @@ "fur": "brown", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8238 + }, "metadata_dict": { "background": "new punk blue", "eyes": "robot", @@ -97882,11 +122598,14 @@ "hat": "commie hat", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8239 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -97895,11 +122614,14 @@ "mouth": "tongue out", "eyes": "cyborg", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8240 + }, "metadata_dict": { "fur": "robot", "earring": "silver stud", @@ -97907,22 +122629,28 @@ "mouth": "bored unshaven cigarette", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8241 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", "hat": "s&m hat", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8242 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "stuntman helmet", @@ -97930,22 +122658,28 @@ "clothes": "tie dye", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8243 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", "eyes": "scumbag", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8244 + }, "metadata_dict": { "clothes": "black suit", "background": "blue", @@ -97953,11 +122687,14 @@ "mouth": "bored", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8245 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "dmt", @@ -97966,33 +122703,42 @@ "hat": "bunny ears", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8246 + }, "metadata_dict": { "hat": "short mohawk", "fur": "cheetah", "background": "yellow", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8247 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "hypnotized", "fur": "golden brown", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8248 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -98001,33 +122747,42 @@ "eyes": "bored", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8249 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", "clothes": "black t", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8250 + }, "metadata_dict": { "clothes": "tweed suit", "background": "blue", "mouth": "bored cigarette", "fur": "robot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8251 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "zombie", @@ -98036,11 +122791,14 @@ "earring": "silver hoop", "hat": "beanie", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8252 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "discomfort", @@ -98048,11 +122806,14 @@ "background": "blue", "fur": "dark brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8253 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "horns", @@ -98060,11 +122821,14 @@ "clothes": "work vest", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8254 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -98073,32 +122837,41 @@ "eyes": "bored", "mouth": "bored unshaven cigarette", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8255 + }, "metadata_dict": { "eyes": "coins", "earring": "silver hoop", "mouth": "bored", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8256 + }, "metadata_dict": { "fur": "dmt", "eyes": "coins", "background": "army green", "mouth": "rage" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8257 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -98107,22 +122880,28 @@ "clothes": "prison jumpsuit", "fur": "black", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8258 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", "hat": "cowboy hat", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8259 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "spinner hat", @@ -98131,11 +122910,14 @@ "clothes": "bayc t black", "earring": "silver hoop", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8260 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -98144,22 +122926,28 @@ "earring": "silver stud", "eyes": "3d", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8261 + }, "metadata_dict": { "mouth": "bored cigarette", "background": "gray", "clothes": "navy striped tee", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8262 + }, "metadata_dict": { "fur": "gray", "mouth": "bored party horn", @@ -98167,65 +122955,83 @@ "clothes": "guayabera", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8263 + }, "metadata_dict": { "clothes": "black t", "mouth": "dumbfounded", "fur": "brown", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8264 + }, "metadata_dict": { "eyes": "heart", "fur": "brown", "background": "purple", "mouth": "bored cigarette", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8265 + }, "metadata_dict": { "fur": "gray", "eyes": "sleepy", "background": "orange", "mouth": "bored unshaven" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8266 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", "eyes": "robot", "mouth": "bored unshaven kazoo", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8267 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", "background": "aquamarine", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8268 + }, "metadata_dict": { "fur": "cream", "mouth": "bored party horn", @@ -98233,11 +123039,14 @@ "background": "gray", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8269 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cream", @@ -98246,22 +123055,28 @@ "hat": "fisherman's hat", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8270 + }, "metadata_dict": { "eyes": "zombie", "fur": "black", "background": "orange", "clothes": "tuxedo tee", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8271 + }, "metadata_dict": { "clothes": "black t", "earring": "silver stud", @@ -98269,11 +123084,14 @@ "eyes": "bored", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8272 + }, "metadata_dict": { "clothes": "sailor shirt", "background": "aquamarine", @@ -98281,22 +123099,28 @@ "fur": "brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8273 + }, "metadata_dict": { "eyes": "holographic", "mouth": "phoneme vuh", "fur": "black", "clothes": "biker vest", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8274 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "3d", @@ -98304,11 +123128,14 @@ "fur": "cheetah", "background": "yellow", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8275 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -98316,11 +123143,14 @@ "fur": "brown", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8276 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -98328,33 +123158,42 @@ "earring": "silver hoop", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8277 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "hat": "short mohawk", "eyes": "bored", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8278 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", "fur": "red", "background": "purple", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8279 + }, "metadata_dict": { "fur": "cream", "clothes": "lumberjack shirt", @@ -98362,11 +123201,14 @@ "hat": "fisherman's hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8280 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -98374,11 +123216,14 @@ "background": "blue", "eyes": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8281 + }, "metadata_dict": { "eyes": "scumbag", "fur": "gray", @@ -98386,11 +123231,14 @@ "background": "purple", "hat": "safari", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8282 + }, "metadata_dict": { "earring": "diamond stud", "hat": "beanie", @@ -98399,11 +123247,14 @@ "background": "yellow", "mouth": "phoneme wah", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8283 + }, "metadata_dict": { "earring": "diamond stud", "background": "aquamarine", @@ -98411,11 +123262,14 @@ "eyes": "bloodshot", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8284 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -98424,11 +123278,14 @@ "fur": "death bot", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8285 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", @@ -98436,32 +123293,41 @@ "fur": "brown", "mouth": "bored cigarette", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8286 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "background": "yellow", "fur": "black", "eyes": "scumbag" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8287 + }, "metadata_dict": { "eyes": "scumbag", "fur": "red", "hat": "beanie", "background": "purple", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8288 + }, "metadata_dict": { "fur": "golden brown", "hat": "baby's bonnet", @@ -98470,11 +123336,14 @@ "earring": "silver hoop", "eyes": "sleepy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8289 + }, "metadata_dict": { "mouth": "phoneme l", "background": "aquamarine", @@ -98483,33 +123352,42 @@ "clothes": "bone necklace", "earring": "cross", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8290 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "grin", "eyes": "bored", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8291 + }, "metadata_dict": { "hat": "party hat 1", "background": "aquamarine", "eyes": "bored", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8292 + }, "metadata_dict": { "eyes": "closed", "hat": "horns", @@ -98517,22 +123395,28 @@ "background": "yellow", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8293 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", "mouth": "bored pipe", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8294 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", @@ -98540,11 +123424,14 @@ "hat": "cowboy hat", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8295 + }, "metadata_dict": { "fur": "trippy", "hat": "seaman's hat", @@ -98552,11 +123439,14 @@ "clothes": "stunt jacket", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8296 + }, "metadata_dict": { "fur": "tan", "clothes": "black t", @@ -98565,11 +123455,14 @@ "background": "yellow", "hat": "safari", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8297 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -98578,11 +123471,14 @@ "hat": "bayc flipped brim", "fur": "cheetah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8298 + }, "metadata_dict": { "hat": "s&m hat", "background": "orange", @@ -98590,11 +123486,14 @@ "fur": "dark brown", "mouth": "bored unshaven cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8299 + }, "metadata_dict": { "background": "gray", "earring": "gold hoop", @@ -98603,11 +123502,14 @@ "hat": "bowler", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8300 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -98616,33 +123518,42 @@ "fur": "death bot", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8301 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", "background": "aquamarine", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8302 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "bandolier", "fur": "tan", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8303 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "striped tee", @@ -98650,11 +123561,14 @@ "eyes": "bored", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8304 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "stuntman helmet", @@ -98662,11 +123576,14 @@ "eyes": "bloodshot", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8305 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", @@ -98675,11 +123592,14 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8306 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -98687,11 +123607,14 @@ "eyes": "bored", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8307 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "irish boho", @@ -98700,11 +123623,14 @@ "background": "aquamarine", "earring": "gold stud", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8308 + }, "metadata_dict": { "hat": "horns", "background": "gray", @@ -98713,11 +123639,14 @@ "mouth": "bored unshaven cigarette", "clothes": "guayabera", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8309 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -98725,11 +123654,14 @@ "eyes": "bloodshot", "hat": "safari", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8310 + }, "metadata_dict": { "fur": "gray", "clothes": "tuxedo tee", @@ -98737,11 +123669,14 @@ "mouth": "bored", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8311 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme ooo", @@ -98750,11 +123685,14 @@ "fur": "dark brown", "earring": "silver hoop", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8312 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "black t", @@ -98762,11 +123700,14 @@ "hat": "bayc flipped brim", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8313 + }, "metadata_dict": { "fur": "tan", "mouth": "dumbfounded", @@ -98774,11 +123715,14 @@ "hat": "beanie", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8314 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -98786,11 +123730,14 @@ "background": "aquamarine", "eyes": "sleepy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8315 + }, "metadata_dict": { "fur": "golden brown", "clothes": "smoking jacket", @@ -98798,22 +123745,28 @@ "eyes": "bored", "hat": "bunny ears", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8316 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "phoneme oh", "background": "aquamarine", "fur": "dark brown", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8317 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "smoking jacket", @@ -98821,22 +123774,28 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8318 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "small grin", "eyes": "bored", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8319 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -98844,11 +123803,14 @@ "fur": "black", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8320 + }, "metadata_dict": { "fur": "tan", "hat": "party hat 1", @@ -98856,33 +123818,42 @@ "clothes": "stunt jacket", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8321 + }, "metadata_dict": { "fur": "brown", "background": "purple", "mouth": "bored", "eyes": "crazy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8322 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "holographic", "mouth": "grin", "fur": "black", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8323 + }, "metadata_dict": { "fur": "cream", "clothes": "sleeveless t", @@ -98890,33 +123861,42 @@ "background": "aquamarine", "eyes": "bloodshot", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8324 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", "mouth": "small grin", "eyes": "bored", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8325 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", "clothes": "biker vest", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8326 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "tweed suit", @@ -98925,11 +123905,14 @@ "hat": "army hat", "mouth": "phoneme wah", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8327 + }, "metadata_dict": { "fur": "cream", "earring": "gold hoop", @@ -98937,22 +123920,28 @@ "eyes": "bored", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8328 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", "fur": "red", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8329 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -98960,11 +123949,14 @@ "eyes": "bloodshot", "fur": "dark brown", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8330 + }, "metadata_dict": { "eyes": "scumbag", "hat": "girl's hair pink", @@ -98972,11 +123964,14 @@ "clothes": "biker vest", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8331 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "laurel wreath", @@ -98985,11 +123980,14 @@ "background": "orange", "fur": "dark brown", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8332 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "irish boho", @@ -98997,11 +123995,14 @@ "eyes": "bloodshot", "clothes": "sleeveless logo t", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8333 + }, "metadata_dict": { "fur": "trippy", "mouth": "grin", @@ -99010,11 +124011,14 @@ "hat": "faux hawk", "clothes": "pimp coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8334 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -99022,22 +124026,28 @@ "background": "orange", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8335 + }, "metadata_dict": { "clothes": "tweed suit", "background": "orange", "fur": "cheetah", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8336 + }, "metadata_dict": { "clothes": "bandolier", "eyes": "coins", @@ -99045,11 +124055,14 @@ "background": "yellow", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8337 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "cream", @@ -99057,11 +124070,14 @@ "background": "blue", "hat": "fisherman's hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8338 + }, "metadata_dict": { "fur": "tan", "eyes": "zombie", @@ -99069,11 +124085,14 @@ "hat": "cowboy hat", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8339 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -99082,11 +124101,14 @@ "earring": "diamond stud", "fur": "red", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8340 + }, "metadata_dict": { "background": "new punk blue", "clothes": "prison jumpsuit", @@ -99095,11 +124117,14 @@ "eyes": "robot", "fur": "dark brown", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8341 + }, "metadata_dict": { "mouth": "bored pipe", "background": "blue", @@ -99107,11 +124132,14 @@ "hat": "beanie", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8342 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -99120,11 +124148,14 @@ "fur": "dark brown", "hat": "girl's hair short", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8343 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -99133,11 +124164,14 @@ "hat": "army hat", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8344 + }, "metadata_dict": { "mouth": "phoneme vuh", "fur": "noise", @@ -99145,11 +124179,14 @@ "hat": "fisherman's hat", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8345 + }, "metadata_dict": { "hat": "fez", "background": "orange", @@ -99157,11 +124194,14 @@ "clothes": "toga", "mouth": "bored unshaven cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8346 + }, "metadata_dict": { "mouth": "discomfort", "hat": "horns", @@ -99170,11 +124210,14 @@ "earring": "gold stud", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8347 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme ooo", @@ -99182,11 +124225,14 @@ "background": "yellow", "hat": "bunny ears", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8348 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "golden brown", @@ -99195,22 +124241,28 @@ "mouth": "bored", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8349 + }, "metadata_dict": { "mouth": "grin", "earring": "diamond stud", "background": "blue", "eyes": "3d", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8350 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored cigar", @@ -99218,33 +124270,42 @@ "eyes": "robot", "fur": "brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8351 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", "background": "blue", "eyes": "3d", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8352 + }, "metadata_dict": { "clothes": "tweed suit", "background": "orange", "mouth": "bored unshaven cigarette", "fur": "white", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8353 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "black holes t", @@ -99252,33 +124313,42 @@ "eyes": "robot", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8354 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", "background": "aquamarine", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8355 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "gray", "hat": "stuntman helmet", "background": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8356 + }, "metadata_dict": { "mouth": "grin", "fur": "brown", @@ -99287,11 +124357,14 @@ "hat": "short mohawk", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8357 + }, "metadata_dict": { "earring": "gold hoop", "background": "aquamarine", @@ -99300,11 +124373,14 @@ "mouth": "bored", "eyes": "angry", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8358 + }, "metadata_dict": { "fur": "gray", "eyes": "coins", @@ -99313,22 +124389,28 @@ "mouth": "tongue out", "background": "purple", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8359 + }, "metadata_dict": { "hat": "fez", "background": "blue", "fur": "cheetah", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8360 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -99336,11 +124418,14 @@ "mouth": "rage", "earring": "silver hoop", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8361 + }, "metadata_dict": { "mouth": "grin multicolored", "fur": "gray", @@ -99348,11 +124433,14 @@ "hat": "bayc hat red", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8362 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "red", @@ -99360,11 +124448,14 @@ "background": "orange", "mouth": "bored unshaven cigar", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8363 + }, "metadata_dict": { "eyes": "x eyes", "fur": "robot", @@ -99373,11 +124464,14 @@ "earring": "silver stud", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8364 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -99385,11 +124479,14 @@ "clothes": "tuxedo tee", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8365 + }, "metadata_dict": { "hat": "horns", "fur": "white", @@ -99397,11 +124494,14 @@ "eyes": "angry", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8366 + }, "metadata_dict": { "clothes": "bone necklace", "background": "aquamarine", @@ -99410,11 +124510,14 @@ "fur": "brown", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8367 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", @@ -99422,33 +124525,42 @@ "hat": "prussian helmet", "fur": "red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8368 + }, "metadata_dict": { "clothes": "striped tee", "fur": "black", "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8369 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", "clothes": "bayc t black", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8370 + }, "metadata_dict": { "eyes": "holographic", "mouth": "dumbfounded", @@ -99456,11 +124568,14 @@ "hat": "bayc flipped brim", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8371 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", @@ -99468,22 +124583,28 @@ "background": "purple", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8372 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", "hat": "irish boho", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8373 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme vuh", @@ -99491,22 +124612,28 @@ "fur": "noise", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8374 + }, "metadata_dict": { "background": "new punk blue", "fur": "dmt", "hat": "fisherman's hat", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8375 + }, "metadata_dict": { "background": "new punk blue", "hat": "irish boho", @@ -99514,22 +124641,28 @@ "fur": "black", "mouth": "bored unshaven kazoo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8376 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "diamond stud", "background": "gray", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8377 + }, "metadata_dict": { "fur": "gray", "hat": "fez", @@ -99537,11 +124670,14 @@ "clothes": "bone necklace", "mouth": "bored cigar", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8378 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -99549,11 +124685,14 @@ "eyes": "bored", "earring": "silver hoop", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8379 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "cowboy shirt", @@ -99561,11 +124700,14 @@ "eyes": "bored", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8380 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", @@ -99573,22 +124715,28 @@ "clothes": "black t", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8381 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "fur": "dark brown", "eyes": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8382 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored unshaven bubblegum", @@ -99596,11 +124744,14 @@ "background": "orange", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8383 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -99608,11 +124759,14 @@ "hat": "bayc flipped brim", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8384 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "bayc t red", @@ -99620,11 +124774,14 @@ "fur": "black", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8385 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -99632,33 +124789,42 @@ "fur": "red", "background": "aquamarine", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8386 + }, "metadata_dict": { "eyes": "laser eyes", "earring": "silver stud", "fur": "red", "mouth": "dumbfounded", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8387 + }, "metadata_dict": { "fur": "blue", "eyes": "zombie", "background": "purple", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8388 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -99666,11 +124832,14 @@ "background": "purple", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8389 + }, "metadata_dict": { "hat": "horns", "clothes": "tweed suit", @@ -99678,22 +124847,28 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8390 + }, "metadata_dict": { "fur": "golden brown", "background": "orange", "mouth": "bored", "earring": "cross", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8391 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", @@ -99701,11 +124876,14 @@ "hat": "fisherman's hat", "clothes": "hip hop", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8392 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cream", @@ -99713,11 +124891,14 @@ "background": "blue", "eyes": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8393 + }, "metadata_dict": { "background": "aquamarine", "eyes": "3d", @@ -99725,11 +124906,14 @@ "hat": "cowboy hat", "mouth": "bored unshaven cigar", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8394 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "phoneme ooo", @@ -99737,11 +124921,14 @@ "fur": "black", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8395 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "yellow", @@ -99749,11 +124936,14 @@ "eyes": "bored", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8396 + }, "metadata_dict": { "earring": "gold hoop", "fur": "pink", @@ -99761,22 +124951,28 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8397 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", "eyes": "robot", "fur": "dark brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8398 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven cigarette", @@ -99784,11 +124980,14 @@ "hat": "halo", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8399 + }, "metadata_dict": { "mouth": "rage", "fur": "dark brown", @@ -99796,11 +124995,14 @@ "background": "army green", "clothes": "hawaiian", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8400 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "blindfold", @@ -99808,11 +125010,14 @@ "background": "orange", "fur": "dark brown", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8401 + }, "metadata_dict": { "eyes": "closed", "clothes": "bone tee", @@ -99821,11 +125026,14 @@ "mouth": "bored", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8402 + }, "metadata_dict": { "hat": "party hat 1", "eyes": "3d", @@ -99833,11 +125041,14 @@ "background": "yellow", "clothes": "navy striped tee", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8403 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "rage", @@ -99845,22 +125056,28 @@ "eyes": "3d", "fur": "brown", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8404 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "phoneme ooo", "background": "blue", "eyes": "robot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8405 + }, "metadata_dict": { "fur": "tan", "clothes": "prison jumpsuit", @@ -99868,11 +125085,14 @@ "mouth": "bored bubblegum", "hat": "commie hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8406 + }, "metadata_dict": { "eyes": "holographic", "hat": "fez", @@ -99881,11 +125101,14 @@ "clothes": "cowboy shirt", "fur": "dark brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8407 + }, "metadata_dict": { "eyes": "heart", "clothes": "striped tee", @@ -99893,21 +125116,27 @@ "mouth": "phoneme ooo", "fur": "gray", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8408 + }, "metadata_dict": { "fur": "golden brown", "background": "army green", "eyes": "bored", "mouth": "phoneme l" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8409 + }, "metadata_dict": { "hat": "baby's bonnet", "earring": "gold hoop", @@ -99915,22 +125144,28 @@ "eyes": "3d", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8410 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", "clothes": "bone tee", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8411 + }, "metadata_dict": { "hat": "sushi chef headband", "background": "aquamarine", @@ -99938,11 +125173,14 @@ "eyes": "3d", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8412 + }, "metadata_dict": { "fur": "red", "background": "blue", @@ -99950,11 +125188,14 @@ "eyes": "bored", "hat": "fisherman's hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8413 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -99963,11 +125204,14 @@ "fur": "dark brown", "clothes": "pimp coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8414 + }, "metadata_dict": { "fur": "cream", "eyes": "bloodshot", @@ -99975,11 +125219,14 @@ "background": "gray", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8415 + }, "metadata_dict": { "eyes": "heart", "fur": "brown", @@ -99987,22 +125234,28 @@ "background": "blue", "clothes": "admirals coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8416 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", "eyes": "bored", "background": "yellow", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8417 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "dumbfounded", @@ -100010,11 +125263,14 @@ "eyes": "bloodshot", "hat": "army hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8418 + }, "metadata_dict": { "clothes": "black t", "background": "blue", @@ -100023,11 +125279,14 @@ "mouth": "bored cigarette", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8419 + }, "metadata_dict": { "fur": "gray", "hat": "beanie", @@ -100035,11 +125294,14 @@ "eyes": "bored", "background": "yellow", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8420 + }, "metadata_dict": { "clothes": "space suit", "earring": "diamond stud", @@ -100047,11 +125309,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8421 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme vuh", @@ -100059,11 +125324,14 @@ "eyes": "bloodshot", "hat": "beanie", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8422 + }, "metadata_dict": { "eyes": "holographic", "earring": "diamond stud", @@ -100071,11 +125339,14 @@ "hat": "bayc flipped brim", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8423 + }, "metadata_dict": { "clothes": "black t", "eyes": "bloodshot", @@ -100083,11 +125354,14 @@ "hat": "short mohawk", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8424 + }, "metadata_dict": { "hat": "horns", "mouth": "phoneme vuh", @@ -100095,11 +125369,14 @@ "background": "gray", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8425 + }, "metadata_dict": { "eyes": "heart", "clothes": "rainbow suspenders", @@ -100108,11 +125385,14 @@ "background": "gray", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8426 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -100120,11 +125400,14 @@ "clothes": "black t", "hat": "vietnam era helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8427 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", @@ -100132,11 +125415,14 @@ "eyes": "bored", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8428 + }, "metadata_dict": { "hat": "sushi chef headband", "clothes": "prison jumpsuit", @@ -100144,11 +125430,14 @@ "background": "purple", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8429 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "coins", @@ -100156,11 +125445,14 @@ "background": "aquamarine", "fur": "pink", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8430 + }, "metadata_dict": { "fur": "golden brown", "hat": "prussian helmet", @@ -100168,11 +125460,14 @@ "eyes": "3d", "mouth": "bored cigarette", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8431 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -100180,11 +125475,14 @@ "clothes": "bayc t black", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8432 + }, "metadata_dict": { "fur": "gray", "mouth": "phoneme vuh", @@ -100192,11 +125490,14 @@ "hat": "cowboy hat", "clothes": "tanktop", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8433 + }, "metadata_dict": { "background": "new punk blue", "eyes": "hypnotized", @@ -100204,11 +125505,14 @@ "hat": "king's crown", "clothes": "tuxedo tee", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8434 + }, "metadata_dict": { "hat": "party hat 1", "clothes": "work vest", @@ -100216,22 +125520,28 @@ "mouth": "bored bubblegum", "eyes": "3d", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8435 + }, "metadata_dict": { "clothes": "tweed suit", "mouth": "dumbfounded", "background": "aquamarine", "eyes": "bloodshot", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8436 + }, "metadata_dict": { "background": "aquamarine", "fur": "noise", @@ -100239,22 +125549,28 @@ "eyes": "blue beams", "hat": "beanie", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8437 + }, "metadata_dict": { "background": "blue", "fur": "black", "clothes": "tuxedo tee", "mouth": "phoneme wah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8438 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -100262,11 +125578,14 @@ "background": "gray", "fur": "death bot", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8439 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "dumbfounded", @@ -100274,11 +125593,14 @@ "earring": "silver stud", "fur": "black", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8440 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -100286,22 +125608,28 @@ "hat": "spinner hat", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8441 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "scumbag", "fur": "golden brown", "mouth": "phoneme vuh", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8442 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -100309,11 +125637,14 @@ "clothes": "tuxedo tee", "hat": "girl's hair short", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8443 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -100321,11 +125652,14 @@ "hat": "bandana blue", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8444 + }, "metadata_dict": { "clothes": "biker vest", "background": "orange", @@ -100333,11 +125667,14 @@ "earring": "silver hoop", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8445 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -100345,11 +125682,14 @@ "clothes": "tanktop", "hat": "vietnam era helmet", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8446 + }, "metadata_dict": { "earring": "gold hoop", "background": "blue", @@ -100357,33 +125697,42 @@ "mouth": "bored", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8447 + }, "metadata_dict": { "background": "purple", "fur": "pink", "clothes": "biker vest", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8448 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "trippy", "hat": "fez", "background": "orange", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8449 + }, "metadata_dict": { "hat": "baby's bonnet", "clothes": "black t", @@ -100391,11 +125740,14 @@ "fur": "black", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8450 + }, "metadata_dict": { "eyes": "x eyes", "hat": "irish boho", @@ -100403,11 +125755,14 @@ "mouth": "small grin", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8451 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "gray", @@ -100416,11 +125771,14 @@ "background": "gray", "hat": "bowler", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8452 + }, "metadata_dict": { "clothes": "striped tee", "background": "blue", @@ -100428,11 +125786,14 @@ "mouth": "bored cigarette", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8453 + }, "metadata_dict": { "clothes": "bayc t red", "hat": "fez", @@ -100441,21 +125802,27 @@ "eyes": "bloodshot", "mouth": "small grin", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8454 + }, "metadata_dict": { "background": "yellow", "fur": "white", "eyes": "sunglasses", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8455 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "wool turtleneck", @@ -100464,11 +125831,14 @@ "background": "aquamarine", "earring": "gold stud", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8456 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -100476,11 +125846,14 @@ "earring": "silver stud", "fur": "dark brown", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8457 + }, "metadata_dict": { "fur": "dmt", "hat": "prussian helmet", @@ -100488,22 +125861,28 @@ "clothes": "cowboy shirt", "mouth": "small grin", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8458 + }, "metadata_dict": { "background": "blue", "fur": "black", "mouth": "bored unshaven cigar", "eyes": "sleepy", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8459 + }, "metadata_dict": { "eyes": "closed", "hat": "baby's bonnet", @@ -100511,11 +125890,14 @@ "clothes": "biker vest", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8460 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -100524,11 +125906,14 @@ "earring": "silver hoop", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8461 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -100536,11 +125921,14 @@ "earring": "diamond stud", "clothes": "tweed suit", "mouth": "bored pizza" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8462 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -100548,11 +125936,14 @@ "fur": "black", "eyes": "3d", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8463 + }, "metadata_dict": { "background": "yellow", "fur": "dark brown", @@ -100560,11 +125951,14 @@ "hat": "bowler", "mouth": "bored cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8464 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -100572,11 +125966,14 @@ "eyes": "3d", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8465 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -100584,11 +125981,14 @@ "background": "blue", "fur": "black", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8466 + }, "metadata_dict": { "hat": "short mohawk", "eyes": "bored", @@ -100597,11 +125997,14 @@ "mouth": "bored", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8467 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "rage", @@ -100609,33 +126012,42 @@ "fur": "cheetah", "background": "yellow", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8468 + }, "metadata_dict": { "background": "gray", "mouth": "bored", "fur": "robot", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8469 + }, "metadata_dict": { "mouth": "grin", "eyes": "sleepy", "fur": "brown", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8470 + }, "metadata_dict": { "mouth": "phoneme vuh", "earring": "silver stud", @@ -100643,11 +126055,14 @@ "eyes": "bored", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8471 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -100655,11 +126070,14 @@ "earring": "silver hoop", "background": "yellow", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8472 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -100667,11 +126085,14 @@ "fur": "cheetah", "hat": "vietnam era helmet", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8473 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -100679,11 +126100,14 @@ "hat": "seaman's hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8474 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -100692,11 +126116,14 @@ "earring": "silver stud", "clothes": "leather jacket", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8475 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -100704,11 +126131,14 @@ "mouth": "bored unshaven pipe", "background": "blue", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8476 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "closed", @@ -100717,21 +126147,27 @@ "fur": "brown", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8477 + }, "metadata_dict": { "background": "purple", "eyes": "crazy", "mouth": "bored unshaven", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8478 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "diamond stud", @@ -100740,11 +126176,14 @@ "fur": "death bot", "clothes": "prom dress", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8479 + }, "metadata_dict": { "fur": "cream", "clothes": "lumberjack shirt", @@ -100752,11 +126191,14 @@ "eyes": "bloodshot", "hat": "vietnam era helmet", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8480 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored unshaven bubblegum", @@ -100765,11 +126207,14 @@ "clothes": "smoking jacket", "background": "army green", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8481 + }, "metadata_dict": { "fur": "tan", "hat": "irish boho", @@ -100777,11 +126222,14 @@ "clothes": "black t", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8482 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "grin", @@ -100789,33 +126237,42 @@ "background": "blue", "fur": "dark brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8483 + }, "metadata_dict": { "background": "new punk blue", "clothes": "smoking jacket", "fur": "dark brown", "eyes": "blue beams", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8484 + }, "metadata_dict": { "eyes": "holographic", "mouth": "phoneme ooo", "earring": "gold stud", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8485 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -100823,22 +126280,28 @@ "fur": "brown", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8486 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", "fur": "golden brown", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8487 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -100846,11 +126309,14 @@ "background": "yellow", "clothes": "guayabera", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8488 + }, "metadata_dict": { "eyes": "holographic", "clothes": "smoking jacket", @@ -100858,11 +126324,14 @@ "background": "yellow", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8489 + }, "metadata_dict": { "eyes": "coins", "mouth": "jovial", @@ -100871,11 +126340,14 @@ "fur": "brown", "background": "yellow", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8490 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -100883,11 +126355,14 @@ "hat": "fez", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8491 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -100896,11 +126371,14 @@ "earring": "silver hoop", "clothes": "lab coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8492 + }, "metadata_dict": { "clothes": "black t", "mouth": "jovial", @@ -100908,11 +126386,14 @@ "fur": "pink", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8493 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -100921,11 +126402,14 @@ "hat": "spinner hat", "eyes": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8494 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "coins", @@ -100933,11 +126417,14 @@ "mouth": "tongue out", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8495 + }, "metadata_dict": { "eyes": "heart", "fur": "dmt", @@ -100945,33 +126432,42 @@ "background": "gray", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8496 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", "fur": "cheetah", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8497 + }, "metadata_dict": { "clothes": "space suit", "fur": "dark brown", "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8498 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -100979,11 +126475,14 @@ "background": "blue", "earring": "silver hoop", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8499 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "clothes": "hawaiian", @@ -100991,11 +126490,14 @@ "background": "gray", "hat": "bunny ears", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8500 + }, "metadata_dict": { "fur": "brown", "clothes": "work vest", @@ -101004,11 +126506,14 @@ "background": "gray", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8501 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -101017,11 +126522,14 @@ "clothes": "work vest", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8502 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", @@ -101029,11 +126537,14 @@ "background": "blue", "earring": "gold stud", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8503 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "diamond stud", @@ -101042,22 +126553,28 @@ "hat": "fisherman's hat", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8504 + }, "metadata_dict": { "mouth": "grin", "background": "orange", "eyes": "bloodshot", "fur": "pink", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8505 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sailor shirt", @@ -101065,11 +126582,14 @@ "background": "yellow", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8506 + }, "metadata_dict": { "hat": "fez", "mouth": "phoneme vuh", @@ -101078,44 +126598,56 @@ "fur": "dark brown", "clothes": "bayc t black", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8507 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "bored", "background": "gray", "fur": "death bot", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8508 + }, "metadata_dict": { "fur": "cream", "mouth": "grin", "background": "blue", "eyes": "sunglasses", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8509 + }, "metadata_dict": { "background": "new punk blue", "clothes": "smoking jacket", "fur": "brown", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8510 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", @@ -101123,11 +126655,14 @@ "mouth": "bored", "eyes": "sunglasses", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8511 + }, "metadata_dict": { "background": "new punk blue", "eyes": "wide eyed", @@ -101135,22 +126670,28 @@ "mouth": "bored", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8512 + }, "metadata_dict": { "fur": "cream", "background": "blue", "eyes": "bloodshot", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8513 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -101159,11 +126700,14 @@ "fur": "brown", "earring": "cross", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8514 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -101171,11 +126715,14 @@ "fur": "red", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8515 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -101183,11 +126730,14 @@ "mouth": "dumbfounded", "clothes": "tanktop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8516 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -101196,11 +126746,14 @@ "background": "blue", "fur": "brown", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8517 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -101208,11 +126761,14 @@ "earring": "gold hoop", "clothes": "prison jumpsuit", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8518 + }, "metadata_dict": { "clothes": "black t", "hat": "party hat 1", @@ -101220,11 +126776,14 @@ "fur": "dark brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8519 + }, "metadata_dict": { "eyes": "eyepatch", "background": "gray", @@ -101232,11 +126791,14 @@ "mouth": "bored unshaven cigarette", "earring": "cross", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8520 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "black", @@ -101244,22 +126806,28 @@ "background": "gray", "clothes": "prom dress", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8521 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", "fur": "pink", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8522 + }, "metadata_dict": { "fur": "trippy", "eyes": "zombie", @@ -101268,11 +126836,14 @@ "earring": "silver hoop", "background": "gray", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8523 + }, "metadata_dict": { "clothes": "wool turtleneck", "background": "gray", @@ -101280,22 +126851,28 @@ "fur": "cheetah", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8524 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "work vest", "fur": "black", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8525 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "vietnam jacket", @@ -101303,22 +126880,28 @@ "background": "purple", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8526 + }, "metadata_dict": { "clothes": "tweed suit", "fur": "red", "background": "purple", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8527 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather jacket", @@ -101326,11 +126909,14 @@ "fur": "death bot", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8528 + }, "metadata_dict": { "clothes": "tuxedo tee", "hat": "commie hat", @@ -101339,11 +126925,14 @@ "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8529 + }, "metadata_dict": { "fur": "tan", "clothes": "sleeveless t", @@ -101351,11 +126940,14 @@ "background": "orange", "eyes": "bloodshot", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8530 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", @@ -101364,11 +126956,14 @@ "eyes": "bored", "earring": "silver hoop", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8531 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -101376,11 +126971,14 @@ "hat": "fez", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8532 + }, "metadata_dict": { "mouth": "jovial", "clothes": "smoking jacket", @@ -101388,11 +126986,14 @@ "hat": "bayc flipped brim", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8533 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "gold hoop", @@ -101401,11 +127002,14 @@ "background": "purple", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8534 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -101413,11 +127017,14 @@ "clothes": "pimp coat", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8535 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin diamond grill", @@ -101425,22 +127032,28 @@ "hat": "beanie", "fur": "robot", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8536 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "fur": "gray", "clothes": "sailor shirt", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8537 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "black holes t", @@ -101448,11 +127061,14 @@ "fur": "black", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8538 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -101461,11 +127077,14 @@ "earring": "silver hoop", "clothes": "guayabera", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8539 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven party horn", @@ -101474,11 +127093,14 @@ "eyes": "bored", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8540 + }, "metadata_dict": { "eyes": "closed", "hat": "girl's hair pink", @@ -101486,11 +127108,14 @@ "mouth": "bored cigarette", "fur": "robot", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8541 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -101498,11 +127123,14 @@ "clothes": "guayabera", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8542 + }, "metadata_dict": { "fur": "pink", "eyes": "bloodshot", @@ -101510,11 +127138,14 @@ "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8543 + }, "metadata_dict": { "fur": "golden brown", "earring": "gold hoop", @@ -101522,11 +127153,14 @@ "eyes": "robot", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8544 + }, "metadata_dict": { "mouth": "grin gold grill", "clothes": "sleeveless t", @@ -101535,11 +127169,14 @@ "eyes": "sleepy", "background": "purple", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8545 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -101547,11 +127184,14 @@ "earring": "silver stud", "fur": "red", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8546 + }, "metadata_dict": { "clothes": "tweed suit", "mouth": "jovial", @@ -101559,11 +127199,14 @@ "background": "yellow", "fur": "zombie", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8547 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -101571,33 +127214,42 @@ "clothes": "caveman pelt", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8548 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", "background": "orange", "eyes": "crazy", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8549 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", "eyes": "bored", "mouth": "bored unshaven cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8550 + }, "metadata_dict": { "hat": "horns", "clothes": "black t", @@ -101605,22 +127257,28 @@ "eyes": "bored", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8551 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "cowboy shirt", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8552 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "bored pipe", @@ -101629,11 +127287,14 @@ "fur": "solid gold", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8553 + }, "metadata_dict": { "mouth": "grin multicolored", "background": "yellow", @@ -101641,11 +127302,14 @@ "clothes": "biker vest", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8554 + }, "metadata_dict": { "fur": "gray", "mouth": "rage", @@ -101653,22 +127317,28 @@ "eyes": "bored", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8555 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "grin diamond grill", "eyes": "sleepy", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8556 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "dark brown", @@ -101676,22 +127346,28 @@ "mouth": "bored unshaven cigarette", "hat": "bayc hat red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8557 + }, "metadata_dict": { "clothes": "service", "mouth": "rage", "eyes": "3d", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8558 + }, "metadata_dict": { "background": "new punk blue", "clothes": "wool turtleneck", @@ -101699,11 +127375,14 @@ "earring": "silver stud", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8559 + }, "metadata_dict": { "clothes": "black t", "mouth": "dumbfounded", @@ -101712,21 +127391,27 @@ "eyes": "bored", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8560 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored", "fur": "robot", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8561 + }, "metadata_dict": { "eyes": "closed", "hat": "fisherman's hat", @@ -101734,11 +127419,14 @@ "fur": "dark brown", "clothes": "toga", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8562 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "sushi chef headband", @@ -101747,22 +127435,28 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8563 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "aquamarine", "clothes": "tuxedo tee", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8564 + }, "metadata_dict": { "eyes": "closed", "hat": "horns", @@ -101770,11 +127464,14 @@ "fur": "pink", "background": "orange", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8565 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -101782,11 +127479,14 @@ "fur": "gray", "eyes": "robot", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8566 + }, "metadata_dict": { "mouth": "bored cigarette", "clothes": "black holes t", @@ -101794,33 +127494,42 @@ "earring": "silver hoop", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8567 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "gray", "background": "blue", "hat": "vietnam era helmet", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8568 + }, "metadata_dict": { "eyes": "x eyes", "fur": "tan", "background": "yellow", "mouth": "jovial", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8569 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -101828,11 +127537,14 @@ "clothes": "sleeveless t", "hat": "horns", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8570 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -101841,11 +127553,14 @@ "hat": "beanie", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8571 + }, "metadata_dict": { "clothes": "striped tee", "hat": "baby's bonnet", @@ -101853,11 +127568,14 @@ "eyes": "3d", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8572 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "cowboy hat", @@ -101865,32 +127583,41 @@ "background": "purple", "mouth": "bored cigar", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8573 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", "clothes": "smoking jacket", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8574 + }, "metadata_dict": { "eyes": "sleepy", "fur": "gray", "mouth": "small grin", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8575 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -101898,11 +127625,14 @@ "fur": "black", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8576 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "dumbfounded", @@ -101910,11 +127640,14 @@ "hat": "cowboy hat", "background": "gray", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8577 + }, "metadata_dict": { "eyes": "scumbag", "earring": "gold hoop", @@ -101923,11 +127656,14 @@ "fur": "cheetah", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8578 + }, "metadata_dict": { "eyes": "x eyes", "hat": "horns", @@ -101936,11 +127672,14 @@ "fur": "dark brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8579 + }, "metadata_dict": { "eyes": "heart", "hat": "party hat 1", @@ -101948,11 +127687,14 @@ "fur": "cheetah", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8580 + }, "metadata_dict": { "eyes": "holographic", "clothes": "black suit", @@ -101961,11 +127703,14 @@ "earring": "gold stud", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8581 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -101973,11 +127718,14 @@ "fur": "dark brown", "clothes": "lab coat", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8582 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -101985,11 +127733,14 @@ "background": "blue", "clothes": "toga", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8583 + }, "metadata_dict": { "mouth": "grin", "hat": "fez", @@ -101998,33 +127749,42 @@ "clothes": "biker vest", "earring": "silver hoop", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8584 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "phoneme oh", "fur": "red", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8585 + }, "metadata_dict": { "eyes": "heart", "fur": "trippy", "hat": "king's crown", "mouth": "phoneme vuh", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8586 + }, "metadata_dict": { "clothes": "black t", "mouth": "phoneme vuh", @@ -102033,11 +127793,14 @@ "eyes": "bored", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8587 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -102046,11 +127809,14 @@ "fur": "dark brown", "hat": "girl's hair short", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8588 + }, "metadata_dict": { "clothes": "sailor shirt", "hat": "fez", @@ -102058,22 +127824,28 @@ "background": "gray", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8589 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored bubblegum", "fur": "dark brown", "eyes": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8590 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -102082,11 +127854,14 @@ "background": "orange", "fur": "pink", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8591 + }, "metadata_dict": { "mouth": "discomfort", "fur": "tan", @@ -102094,11 +127869,14 @@ "hat": "vietnam era helmet", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8592 + }, "metadata_dict": { "fur": "tan", "hat": "girl's hair short", @@ -102107,11 +127885,14 @@ "earring": "cross", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8593 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", @@ -102119,11 +127900,14 @@ "fur": "noise", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8594 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "cheetah", @@ -102131,11 +127915,14 @@ "mouth": "grin diamond grill", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8595 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -102143,22 +127930,28 @@ "hat": "fisherman's hat", "fur": "cheetah", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8596 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "baby's bonnet", "fur": "black", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8597 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -102167,33 +127960,42 @@ "mouth": "small grin", "hat": "cowboy hat", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8598 + }, "metadata_dict": { "fur": "dmt", "background": "gray", "clothes": "guayabera", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8599 + }, "metadata_dict": { "fur": "pink", "eyes": "bored", "mouth": "bored unshaven cigar", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8600 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t red", @@ -102201,11 +128003,14 @@ "hat": "spinner hat", "eyes": "bored", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8601 + }, "metadata_dict": { "eyes": "blindfold", "hat": "seaman's hat", @@ -102214,11 +128019,14 @@ "fur": "black", "clothes": "sleeveless logo t", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8602 + }, "metadata_dict": { "eyes": "eyepatch", "background": "blue", @@ -102226,11 +128034,14 @@ "hat": "bayc hat red", "mouth": "bored cigarette", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8603 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", @@ -102239,11 +128050,14 @@ "earring": "silver hoop", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8604 + }, "metadata_dict": { "eyes": "coins", "fur": "red", @@ -102251,11 +128065,14 @@ "mouth": "bored unshaven cigarette", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8605 + }, "metadata_dict": { "fur": "tan", "clothes": "bone necklace", @@ -102264,11 +128081,14 @@ "hat": "beanie", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8606 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin diamond grill", @@ -102277,21 +128097,27 @@ "hat": "beanie", "clothes": "stunt jacket", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8607 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored unshaven cigarette", "eyes": "sleepy", "fur": "pink" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8608 + }, "metadata_dict": { "eyes": "holographic", "fur": "cream", @@ -102299,11 +128125,14 @@ "mouth": "grin", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8609 + }, "metadata_dict": { "eyes": "coins", "clothes": "prison jumpsuit", @@ -102311,33 +128140,42 @@ "hat": "fisherman's hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8610 + }, "metadata_dict": { "eyes": "coins", "clothes": "sleeveless logo t", "mouth": "dumbfounded", "background": "aquamarine", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8611 + }, "metadata_dict": { "fur": "tan", "background": "orange", "clothes": "guayabera", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8612 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", @@ -102345,11 +128183,14 @@ "hat": "short mohawk", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8613 + }, "metadata_dict": { "fur": "tan", "hat": "bunny ears", @@ -102357,11 +128198,14 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8614 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "golden brown", @@ -102369,11 +128213,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8615 + }, "metadata_dict": { "eyes": "holographic", "hat": "halo", @@ -102382,11 +128229,14 @@ "background": "purple", "mouth": "bored cigarette", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8616 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", @@ -102394,11 +128244,14 @@ "background": "orange", "hat": "cowboy hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8617 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -102406,11 +128259,14 @@ "clothes": "bayc t black", "fur": "robot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8618 + }, "metadata_dict": { "clothes": "bayc t red", "background": "purple", @@ -102418,11 +128274,14 @@ "fur": "brown", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8619 + }, "metadata_dict": { "fur": "gray", "mouth": "bored pizza", @@ -102430,11 +128289,14 @@ "hat": "commie hat", "eyes": "angry", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8620 + }, "metadata_dict": { "background": "orange", "clothes": "bayc t black", @@ -102442,11 +128304,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8621 + }, "metadata_dict": { "clothes": "leather jacket", "fur": "black", @@ -102454,11 +128319,14 @@ "hat": "bunny ears", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8622 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -102466,22 +128334,28 @@ "hat": "bayc flipped brim", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8623 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "eyes": "bored", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8624 + }, "metadata_dict": { "mouth": "rage", "background": "aquamarine", @@ -102489,33 +128363,42 @@ "fur": "dark brown", "earring": "cross", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8625 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "sleepy", "fur": "brown", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8626 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "work vest", "fur": "black", "background": "orange", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8627 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "striped tee", @@ -102523,11 +128406,14 @@ "hat": "beanie", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8628 + }, "metadata_dict": { "eyes": "closed", "mouth": "rage", @@ -102535,11 +128421,14 @@ "fur": "brown", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8629 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -102547,11 +128436,14 @@ "eyes": "sleepy", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8630 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -102560,11 +128452,14 @@ "earring": "silver hoop", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8631 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -102572,11 +128467,14 @@ "fur": "golden brown", "eyes": "bloodshot", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8632 + }, "metadata_dict": { "clothes": "striped tee", "earring": "gold hoop", @@ -102585,32 +128483,41 @@ "hat": "cowboy hat", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8633 + }, "metadata_dict": { "eyes": "scumbag", "background": "orange", "fur": "trippy", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8634 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "background": "gray", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8635 + }, "metadata_dict": { "eyes": "blindfold", "fur": "black", @@ -102619,11 +128526,14 @@ "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8636 + }, "metadata_dict": { "background": "new punk blue", "hat": "baby's bonnet", @@ -102631,11 +128541,14 @@ "clothes": "pimp coat", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8637 + }, "metadata_dict": { "fur": "tan", "eyes": "blindfold", @@ -102644,22 +128557,28 @@ "clothes": "toga", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8638 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", "fur": "noise", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8639 + }, "metadata_dict": { "eyes": "holographic", "clothes": "caveman pelt", @@ -102667,11 +128586,14 @@ "hat": "fez", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8640 + }, "metadata_dict": { "fur": "dmt", "clothes": "prison jumpsuit", @@ -102679,22 +128601,28 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8641 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", "background": "blue", "eyes": "3d", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8642 + }, "metadata_dict": { "mouth": "bored cigarette", "hat": "bandana blue", @@ -102703,11 +128631,14 @@ "background": "yellow", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8643 + }, "metadata_dict": { "background": "new punk blue", "hat": "spinner hat", @@ -102715,11 +128646,14 @@ "clothes": "tanktop", "eyes": "sleepy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8644 + }, "metadata_dict": { "clothes": "kings robe", "hat": "party hat 2", @@ -102727,22 +128661,28 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8645 + }, "metadata_dict": { "hat": "fez", "background": "aquamarine", "eyes": "bored", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8646 + }, "metadata_dict": { "fur": "black", "mouth": "bored bubblegum", @@ -102751,11 +128691,14 @@ "background": "army green", "clothes": "hawaiian", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8647 + }, "metadata_dict": { "background": "new punk blue", "hat": "girl's hair pink", @@ -102763,11 +128706,14 @@ "eyes": "3d", "mouth": "bored unshaven cigar", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8648 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -102775,11 +128721,14 @@ "eyes": "sleepy", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8649 + }, "metadata_dict": { "fur": "gray", "background": "purple", @@ -102787,11 +128736,14 @@ "hat": "army hat", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8650 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "prussian helmet", @@ -102799,22 +128751,28 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8651 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "mouth": "jovial", "eyes": "3d", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8652 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "aquamarine", @@ -102822,11 +128780,14 @@ "fur": "red", "clothes": "sleeveless logo t", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8653 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -102835,11 +128796,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8654 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "striped tee", @@ -102848,11 +128812,14 @@ "fur": "black", "background": "orange", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8655 + }, "metadata_dict": { "clothes": "kings robe", "fur": "black", @@ -102860,11 +128827,14 @@ "background": "gray", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8656 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme wah", @@ -102872,22 +128842,28 @@ "eyes": "bored", "clothes": "guayabera", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8657 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "fur": "dmt", "clothes": "lab coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8658 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -102896,11 +128872,14 @@ "mouth": "bored", "earring": "cross", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8659 + }, "metadata_dict": { "hat": "irish boho", "background": "aquamarine", @@ -102908,11 +128887,14 @@ "clothes": "tuxedo tee", "mouth": "bored cigarette", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8660 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -102921,11 +128903,14 @@ "fur": "gray", "earring": "silver hoop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8661 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -102933,11 +128918,14 @@ "hat": "halo", "clothes": "admirals coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8662 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -102945,11 +128933,14 @@ "clothes": "leather jacket", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8663 + }, "metadata_dict": { "clothes": "space suit", "mouth": "phoneme ooo", @@ -102958,11 +128949,14 @@ "earring": "silver hoop", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8664 + }, "metadata_dict": { "clothes": "lab coat", "eyes": "bored", @@ -102970,22 +128964,28 @@ "hat": "bunny ears", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8665 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", "clothes": "sailor shirt", "eyes": "3d", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8666 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "diamond stud", @@ -102994,11 +128994,14 @@ "fur": "pink", "clothes": "smoking jacket", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8667 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -103006,11 +129009,14 @@ "hat": "fez", "fur": "red", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8668 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -103019,11 +129025,14 @@ "mouth": "bored", "hat": "halo", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8669 + }, "metadata_dict": { "fur": "cheetah", "clothes": "sailor shirt", @@ -103031,22 +129040,28 @@ "hat": "girl's hair short", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8670 + }, "metadata_dict": { "clothes": "bandolier", "fur": "dark brown", "mouth": "small grin", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8671 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -103054,11 +129069,14 @@ "background": "orange", "mouth": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8672 + }, "metadata_dict": { "hat": "irish boho", "fur": "golden brown", @@ -103067,11 +129085,14 @@ "background": "orange", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8673 + }, "metadata_dict": { "earring": "gold hoop", "fur": "dark brown", @@ -103079,11 +129100,14 @@ "background": "yellow", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8674 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "dmt", @@ -103091,11 +129115,14 @@ "hat": "bayc flipped brim", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8675 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "golden brown", @@ -103104,11 +129131,14 @@ "mouth": "phoneme vuh", "eyes": "bloodshot", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8676 + }, "metadata_dict": { "mouth": "rage", "background": "orange", @@ -103116,11 +129146,14 @@ "clothes": "lab coat", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8677 + }, "metadata_dict": { "mouth": "discomfort", "hat": "seaman's hat", @@ -103128,11 +129161,14 @@ "fur": "dark brown", "eyes": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8678 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", @@ -103140,11 +129176,14 @@ "eyes": "bored", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8679 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "blue", @@ -103153,11 +129192,14 @@ "fur": "dark brown", "hat": "girl's hair short", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8680 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "brown", @@ -103165,33 +129207,42 @@ "hat": "bayc flipped brim", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8681 + }, "metadata_dict": { "clothes": "bandolier", "background": "orange", "mouth": "bored", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8682 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", "fur": "black", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8683 + }, "metadata_dict": { "hat": "girl's hair pink", "background": "aquamarine", @@ -103199,11 +129250,14 @@ "fur": "brown", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8684 + }, "metadata_dict": { "hat": "bandana blue", "fur": "gray", @@ -103212,11 +129266,14 @@ "background": "blue", "eyes": "bored", "clothes": "lab coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8685 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -103224,11 +129281,14 @@ "fur": "dark brown", "eyes": "bloodshot", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8686 + }, "metadata_dict": { "hat": "trippy captain's hat", "clothes": "sleeveless t", @@ -103237,32 +129297,41 @@ "eyes": "robot", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8687 + }, "metadata_dict": { "fur": "brown", "background": "purple", "eyes": "bloodshot", "mouth": "bored unshaven" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8688 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", "background": "orange", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8689 + }, "metadata_dict": { "eyes": "closed", "earring": "gold hoop", @@ -103270,11 +129339,14 @@ "fur": "black", "mouth": "small grin", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8690 + }, "metadata_dict": { "clothes": "lumberjack shirt", "earring": "gold hoop", @@ -103282,11 +129354,14 @@ "background": "aquamarine", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8691 + }, "metadata_dict": { "hat": "fisherman's hat", "mouth": "jovial", @@ -103294,33 +129369,42 @@ "eyes": "bloodshot", "clothes": "lab coat", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8692 + }, "metadata_dict": { "fur": "golden brown", "clothes": "bayc t black", "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8693 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", "earring": "gold stud", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8694 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -103328,22 +129412,28 @@ "mouth": "grin diamond grill", "background": "aquamarine", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8695 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "stuntman helmet", "mouth": "bored cigarette", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8696 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -103352,11 +129442,14 @@ "eyes": "bored", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8697 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver hoop", @@ -103364,11 +129457,14 @@ "background": "army green", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8698 + }, "metadata_dict": { "fur": "cream", "hat": "halo", @@ -103376,44 +129472,56 @@ "clothes": "bone necklace", "mouth": "bored cigar", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8699 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", "fur": "black", "clothes": "hip hop", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8700 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", "mouth": "phoneme ooo", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8701 + }, "metadata_dict": { "clothes": "bandolier", "fur": "golden brown", "mouth": "tongue out", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8702 + }, "metadata_dict": { "fur": "tan", "clothes": "lumberjack shirt", @@ -103422,11 +129530,14 @@ "background": "purple", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8703 + }, "metadata_dict": { "background": "new punk blue", "eyes": "cyborg", @@ -103435,22 +129546,28 @@ "clothes": "tie dye", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8704 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", "fur": "brown", "clothes": "sleeveless logo t", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8705 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -103458,33 +129575,42 @@ "fur": "noise", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8706 + }, "metadata_dict": { "eyes": "coins", "background": "orange", "hat": "bayc flipped brim", "fur": "brown", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8707 + }, "metadata_dict": { "fur": "trippy", "mouth": "phoneme ooo", "hat": "beanie", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8708 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "party hat 1", @@ -103493,11 +129619,14 @@ "earring": "silver hoop", "mouth": "bored unshaven cigarette", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8709 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -103506,11 +129635,14 @@ "hat": "girl's hair short", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8710 + }, "metadata_dict": { "mouth": "discomfort", "fur": "golden brown", @@ -103518,11 +129650,14 @@ "background": "aquamarine", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8711 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -103530,11 +129665,14 @@ "earring": "gold stud", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8712 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "coins", @@ -103542,11 +129680,14 @@ "fur": "dark brown", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8713 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -103554,11 +129695,14 @@ "clothes": "sleeveless logo t", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8714 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -103567,11 +129711,14 @@ "clothes": "cowboy shirt", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8715 + }, "metadata_dict": { "hat": "safari", "eyes": "robot", @@ -103579,11 +129726,14 @@ "fur": "black", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8716 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -103591,22 +129741,28 @@ "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8717 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "scumbag", "fur": "red", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8718 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "dark brown", @@ -103614,11 +129770,14 @@ "background": "purple", "eyes": "cyborg", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8719 + }, "metadata_dict": { "hat": "irish boho", "clothes": "black holes t", @@ -103626,11 +129785,14 @@ "eyes": "bored", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8720 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", @@ -103639,11 +129801,14 @@ "hat": "short mohawk", "mouth": "bored cigarette", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8721 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "orange", @@ -103651,11 +129816,14 @@ "clothes": "bone necklace", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8722 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -103663,11 +129831,14 @@ "hat": "bowler", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8723 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -103675,11 +129846,14 @@ "clothes": "bone necklace", "hat": "commie hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8724 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "toga", @@ -103687,11 +129861,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8725 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -103699,11 +129876,14 @@ "hat": "bowler", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8726 + }, "metadata_dict": { "background": "new punk blue", "earring": "silver stud", @@ -103711,22 +129891,28 @@ "eyes": "3d", "fur": "dark brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8727 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "bored", "background": "yellow", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8728 + }, "metadata_dict": { "fur": "robot", "background": "aquamarine", @@ -103734,22 +129920,28 @@ "mouth": "bored", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8729 + }, "metadata_dict": { "fur": "tan", "mouth": "dumbfounded", "hat": "beanie", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8730 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -103758,11 +129950,14 @@ "hat": "bayc flipped brim", "earring": "silver hoop", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8731 + }, "metadata_dict": { "eyes": "hypnotized", "hat": "fez", @@ -103770,11 +129965,14 @@ "clothes": "stunt jacket", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8732 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored unshaven cigarette", @@ -103782,11 +129980,14 @@ "eyes": "angry", "fur": "blue", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8733 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "zombie", @@ -103794,11 +129995,14 @@ "clothes": "biker vest", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8734 + }, "metadata_dict": { "fur": "cream", "clothes": "toga", @@ -103807,11 +130011,14 @@ "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8735 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "cream", @@ -103819,11 +130026,14 @@ "background": "blue", "mouth": "small grin", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8736 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "work vest", @@ -103831,11 +130041,14 @@ "background": "orange", "mouth": "small grin", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8737 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -103844,22 +130057,28 @@ "clothes": "navy striped tee", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8738 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", "fur": "pink", "eyes": "bored", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8739 + }, "metadata_dict": { "fur": "gray", "eyes": "coins", @@ -103867,11 +130086,14 @@ "clothes": "leather jacket", "background": "yellow", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8740 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "guayabera", @@ -103879,11 +130101,14 @@ "eyes": "bored", "hat": "faux hawk", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8741 + }, "metadata_dict": { "mouth": "grin", "hat": "spinner hat", @@ -103891,21 +130116,27 @@ "background": "gray", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8742 + }, "metadata_dict": { "background": "blue", "mouth": "bored", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8743 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -103913,22 +130144,28 @@ "fur": "dark brown", "clothes": "stunt jacket", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8744 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "biker vest", "fur": "dark brown", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8745 + }, "metadata_dict": { "hat": "sushi chef headband", "fur": "gray", @@ -103936,11 +130173,14 @@ "clothes": "work vest", "mouth": "small grin", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8746 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black suit", @@ -103948,11 +130188,14 @@ "eyes": "blue beams", "fur": "cheetah", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8747 + }, "metadata_dict": { "fur": "black", "eyes": "bored", @@ -103960,11 +130203,14 @@ "clothes": "prom dress", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8748 + }, "metadata_dict": { "hat": "baby's bonnet", "eyes": "sunglasses", @@ -103973,11 +130219,14 @@ "mouth": "phoneme vuh", "background": "orange", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8749 + }, "metadata_dict": { "clothes": "black holes t", "hat": "party hat 1", @@ -103985,11 +130234,14 @@ "mouth": "bored unshaven cigarette", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8750 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "zombie", @@ -103997,11 +130249,14 @@ "background": "blue", "fur": "dark brown", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8751 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tweed suit", @@ -104009,11 +130264,14 @@ "eyes": "bloodshot", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8752 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "aquamarine", @@ -104021,11 +130279,14 @@ "fur": "dark brown", "hat": "cowboy hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8753 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -104033,11 +130294,14 @@ "background": "blue", "clothes": "toga", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8754 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -104046,11 +130310,14 @@ "earring": "gold stud", "hat": "fisherman's hat", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8755 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored unshaven", @@ -104058,33 +130325,42 @@ "fur": "golden brown", "background": "aquamarine", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8756 + }, "metadata_dict": { "fur": "cream", "hat": "fez", "background": "aquamarine", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8757 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "yellow", "eyes": "bloodshot", "fur": "dark brown", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8758 + }, "metadata_dict": { "eyes": "x eyes", "earring": "gold stud", @@ -104093,11 +130369,14 @@ "hat": "beanie", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8759 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -104106,11 +130385,14 @@ "earring": "silver hoop", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8760 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "work vest", @@ -104118,11 +130400,14 @@ "fur": "black", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8761 + }, "metadata_dict": { "fur": "golden brown", "background": "orange", @@ -104130,11 +130415,14 @@ "mouth": "bored pizza", "hat": "commie hat", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8762 + }, "metadata_dict": { "mouth": "discomfort", "hat": "sushi chef headband", @@ -104143,11 +130431,14 @@ "clothes": "prom dress", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8763 + }, "metadata_dict": { "hat": "halo", "earring": "silver stud", @@ -104155,21 +130446,27 @@ "fur": "black", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8764 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "coins", "fur": "blue", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8765 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -104177,11 +130474,14 @@ "background": "gray", "hat": "bowler", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8766 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -104189,11 +130489,14 @@ "fur": "dark brown", "hat": "fisherman's hat", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8767 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme l", @@ -104202,22 +130505,28 @@ "earring": "gold hoop", "clothes": "work vest", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8768 + }, "metadata_dict": { "eyes": "heart", "fur": "brown", "clothes": "tweed suit", "background": "orange", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8769 + }, "metadata_dict": { "eyes": "coins", "background": "blue", @@ -104225,11 +130534,14 @@ "hat": "beanie", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8770 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather jacket", @@ -104237,22 +130549,28 @@ "fur": "pink", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8771 + }, "metadata_dict": { "background": "new punk blue", "hat": "seaman's hat", "fur": "dark brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8772 + }, "metadata_dict": { "eyes": "blindfold", "fur": "red", @@ -104260,11 +130578,14 @@ "clothes": "stunt jacket", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8773 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -104272,11 +130593,14 @@ "hat": "cowboy hat", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8774 + }, "metadata_dict": { "eyes": "heart", "earring": "gold hoop", @@ -104284,11 +130608,14 @@ "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8775 + }, "metadata_dict": { "background": "orange", "clothes": "bayc t black", @@ -104297,11 +130624,14 @@ "earring": "cross", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8776 + }, "metadata_dict": { "clothes": "tweed suit", "earring": "gold stud", @@ -104310,11 +130640,14 @@ "mouth": "bored cigarette", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8777 + }, "metadata_dict": { "hat": "horns", "mouth": "dumbfounded", @@ -104322,11 +130655,14 @@ "clothes": "prom dress", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8778 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -104334,11 +130670,14 @@ "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8779 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -104347,11 +130686,14 @@ "hat": "cowboy hat", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8780 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme ooo", @@ -104359,11 +130701,14 @@ "clothes": "rainbow suspenders", "hat": "army hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8781 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven cigarette", @@ -104371,22 +130716,28 @@ "fur": "black", "clothes": "admirals coat", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8782 + }, "metadata_dict": { "hat": "king's crown", "mouth": "rage", "eyes": "bored", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8783 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "baby's bonnet", @@ -104394,33 +130745,42 @@ "mouth": "bored unshaven cigarette", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8784 + }, "metadata_dict": { "fur": "dark brown", "clothes": "sleeveless logo t", "background": "yellow", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8785 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", "eyes": "bored", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8786 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -104428,11 +130788,14 @@ "background": "blue", "clothes": "prom dress", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8787 + }, "metadata_dict": { "mouth": "grin", "earring": "diamond stud", @@ -104440,11 +130803,14 @@ "hat": "short mohawk", "background": "gray", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8788 + }, "metadata_dict": { "hat": "seaman's hat", "eyes": "coins", @@ -104452,11 +130818,14 @@ "clothes": "guayabera", "mouth": "bored pizza", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8789 + }, "metadata_dict": { "eyes": "closed", "background": "gray", @@ -104465,11 +130834,14 @@ "hat": "cowboy hat", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8790 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "grin", @@ -104478,11 +130850,14 @@ "fur": "red", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8791 + }, "metadata_dict": { "clothes": "prison jumpsuit", "eyes": "bloodshot", @@ -104490,11 +130865,14 @@ "fur": "death bot", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8792 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -104502,22 +130880,28 @@ "fur": "dark brown", "hat": "beanie", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8793 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "hat": "sushi chef headband", "fur": "dmt", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8794 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -104525,11 +130909,14 @@ "background": "aquamarine", "eyes": "robot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8795 + }, "metadata_dict": { "clothes": "black holes t", "hat": "seaman's hat", @@ -104538,11 +130925,14 @@ "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8796 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "gray", @@ -104550,11 +130940,14 @@ "mouth": "bored", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8797 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", @@ -104562,11 +130955,14 @@ "hat": "bayc flipped brim", "clothes": "tuxedo tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8798 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -104574,11 +130970,14 @@ "mouth": "small grin", "fur": "brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8799 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -104586,11 +130985,14 @@ "hat": "s&m hat", "mouth": "bored pipe", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8800 + }, "metadata_dict": { "eyes": "zombie", "background": "aquamarine", @@ -104598,11 +131000,14 @@ "earring": "cross", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8801 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "bored pipe", @@ -104610,11 +131015,14 @@ "background": "orange", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8802 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -104622,22 +131030,28 @@ "mouth": "dumbfounded", "background": "blue", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8803 + }, "metadata_dict": { "fur": "pink", "background": "gray", "mouth": "bored", "clothes": "service", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8804 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "work vest", @@ -104645,11 +131059,14 @@ "fur": "brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8805 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -104657,11 +131074,14 @@ "hat": "short mohawk", "fur": "noise", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8806 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "dumbfounded", @@ -104669,22 +131089,28 @@ "fur": "brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8807 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "gray", "hat": "party hat 1", "background": "aquamarine", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8808 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "dmt", @@ -104693,11 +131119,14 @@ "earring": "gold stud", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8809 + }, "metadata_dict": { "clothes": "leather jacket", "background": "orange", @@ -104705,11 +131134,14 @@ "fur": "brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8810 + }, "metadata_dict": { "clothes": "striped tee", "fur": "golden brown", @@ -104717,11 +131149,14 @@ "eyes": "bloodshot", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8811 + }, "metadata_dict": { "clothes": "black holes t", "eyes": "zombie", @@ -104730,11 +131165,14 @@ "hat": "bayc flipped brim", "fur": "brown", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8812 + }, "metadata_dict": { "fur": "black", "clothes": "biker vest", @@ -104742,11 +131180,14 @@ "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8813 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "sleeveless t", @@ -104755,11 +131196,14 @@ "earring": "silver hoop", "hat": "bowler", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8814 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -104768,11 +131212,14 @@ "earring": "silver stud", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8815 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -104781,21 +131228,27 @@ "mouth": "rage", "earring": "silver hoop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8816 + }, "metadata_dict": { "background": "gray", "mouth": "bored unshaven", "fur": "pink", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8817 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored party horn", @@ -104804,11 +131257,14 @@ "fur": "solid gold", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8818 + }, "metadata_dict": { "hat": "laurel wreath", "background": "aquamarine", @@ -104816,33 +131272,42 @@ "eyes": "bored", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8819 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "phoneme vuh", "background": "aquamarine", "clothes": "toga", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8820 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", "eyes": "blindfold", "fur": "gray", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8821 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "black holes t", @@ -104850,11 +131315,14 @@ "fur": "white", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8822 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -104862,11 +131330,14 @@ "mouth": "phoneme vuh", "eyes": "bloodshot", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8823 + }, "metadata_dict": { "eyes": "closed", "clothes": "bayc t red", @@ -104874,11 +131345,14 @@ "mouth": "bored cigarette", "hat": "halo", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8824 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", @@ -104886,22 +131360,28 @@ "fur": "solid gold", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8825 + }, "metadata_dict": { "eyes": "coins", "hat": "king's crown", "mouth": "bored unshaven pipe", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8826 + }, "metadata_dict": { "fur": "tan", "eyes": "holographic", @@ -104910,11 +131390,14 @@ "hat": "baby's bonnet", "earring": "silver stud", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8827 + }, "metadata_dict": { "fur": "trippy", "hat": "baby's bonnet", @@ -104923,11 +131406,14 @@ "clothes": "stunt jacket", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8828 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", @@ -104935,11 +131421,14 @@ "eyes": "bored", "mouth": "bored", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8829 + }, "metadata_dict": { "clothes": "striped tee", "hat": "seaman's hat", @@ -104947,11 +131436,14 @@ "background": "orange", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8830 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -104960,11 +131452,14 @@ "eyes": "bored", "mouth": "bored", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8831 + }, "metadata_dict": { "mouth": "phoneme wah", "clothes": "striped tee", @@ -104972,44 +131467,56 @@ "background": "gray", "hat": "beanie", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8832 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "hat": "commie hat", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8833 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "dark brown", "background": "purple", "hat": "commie hat", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8834 + }, "metadata_dict": { "eyes": "coins", "hat": "bayc flipped brim", "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8835 + }, "metadata_dict": { "mouth": "rage", "fur": "black", @@ -105017,22 +131524,28 @@ "hat": "faux hawk", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8836 + }, "metadata_dict": { "eyes": "3d", "fur": "brown", "background": "yellow", "mouth": "bored cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8837 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -105040,33 +131553,42 @@ "hat": "cowboy hat", "clothes": "navy striped tee", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8838 + }, "metadata_dict": { "fur": "gray", "eyes": "robot", "background": "orange", "clothes": "bayc t black", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8839 + }, "metadata_dict": { "clothes": "sleeveless logo t", "background": "purple", "fur": "brown", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8840 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -105074,11 +131596,14 @@ "hat": "cowboy hat", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8841 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "red", @@ -105086,11 +131611,14 @@ "earring": "silver hoop", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8842 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven bubblegum", @@ -105098,11 +131626,14 @@ "eyes": "bored", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8843 + }, "metadata_dict": { "clothes": "black holes t", "earring": "gold hoop", @@ -105110,11 +131641,14 @@ "background": "blue", "eyes": "bloodshot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8844 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", @@ -105123,21 +131657,27 @@ "mouth": "bored unshaven cigarette", "hat": "bowler", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8845 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "eyes": "zombie", "fur": "tan", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8846 + }, "metadata_dict": { "fur": "gray", "earring": "gold hoop", @@ -105145,11 +131685,14 @@ "background": "aquamarine", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8847 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -105157,11 +131700,14 @@ "hat": "commie hat", "eyes": "sunglasses", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8848 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -105170,22 +131716,28 @@ "fur": "brown", "earring": "cross", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8849 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "clothes": "sailor shirt", "fur": "black", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8850 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -105193,11 +131745,14 @@ "hat": "commie hat", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8851 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -105205,22 +131760,28 @@ "eyes": "3d", "hat": "fisherman's hat", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8852 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "work vest", "fur": "black", "eyes": "3d", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8853 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -105228,11 +131789,14 @@ "hat": "seaman's hat", "eyes": "bloodshot", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8854 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "bayc t red", @@ -105241,22 +131805,28 @@ "hat": "faux hawk", "earring": "cross", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8855 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "golden brown", "background": "gray", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8856 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -105265,11 +131835,14 @@ "mouth": "bored unshaven kazoo", "earring": "silver hoop", "hat": "girl's hair short" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8857 + }, "metadata_dict": { "clothes": "space suit", "eyes": "3d", @@ -105277,11 +131850,14 @@ "mouth": "small grin", "hat": "fisherman's hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8858 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -105289,33 +131865,42 @@ "fur": "red", "eyes": "sleepy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8859 + }, "metadata_dict": { "eyes": "coins", "background": "aquamarine", "clothes": "smoking jacket", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8860 + }, "metadata_dict": { "eyes": "blindfold", "background": "aquamarine", "fur": "dark brown", "mouth": "small grin", "clothes": "bayc t black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8861 + }, "metadata_dict": { "clothes": "black t", "mouth": "phoneme vuh", @@ -105323,33 +131908,42 @@ "fur": "solid gold", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8862 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "clothes": "rainbow suspenders", "fur": "brown", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8863 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", "mouth": "bored unshaven", "hat": "stuntman helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8864 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -105357,11 +131951,14 @@ "clothes": "black t", "fur": "dark brown", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8865 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", @@ -105370,11 +131967,14 @@ "hat": "cowboy hat", "earring": "silver hoop", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8866 + }, "metadata_dict": { "eyes": "closed", "clothes": "leather punk jacket", @@ -105382,22 +131982,28 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8867 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", "background": "aquamarine", "fur": "black", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8868 + }, "metadata_dict": { "clothes": "wool turtleneck", "fur": "black", @@ -105405,11 +132011,14 @@ "hat": "army hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8869 + }, "metadata_dict": { "eyes": "holographic", "background": "aquamarine", @@ -105417,11 +132026,14 @@ "hat": "commie hat", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8870 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -105429,22 +132041,28 @@ "clothes": "smoking jacket", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8871 + }, "metadata_dict": { "eyes": "zombie", "clothes": "cowboy shirt", "background": "blue", "fur": "dark brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8872 + }, "metadata_dict": { "hat": "irish boho", "mouth": "dumbfounded", @@ -105452,11 +132070,14 @@ "fur": "brown", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8873 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", @@ -105464,11 +132085,14 @@ "earring": "silver hoop", "clothes": "admirals coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8874 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven pipe", @@ -105476,11 +132100,14 @@ "eyes": "3d", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8875 + }, "metadata_dict": { "mouth": "rage", "clothes": "work vest", @@ -105488,11 +132115,14 @@ "hat": "cowboy hat", "eyes": "crazy", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8876 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", @@ -105500,21 +132130,27 @@ "fur": "brown", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8877 + }, "metadata_dict": { "background": "yellow", "mouth": "bored unshaven", "fur": "dark brown", "eyes": "blue beams" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8878 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "black holes t", @@ -105522,11 +132158,14 @@ "background": "aquamarine", "eyes": "robot", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8879 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "striped tee", @@ -105534,22 +132173,28 @@ "mouth": "grin", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8880 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "gray", "hat": "party hat 1", "fur": "brown", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8881 + }, "metadata_dict": { "eyes": "closed", "hat": "baby's bonnet", @@ -105558,11 +132203,14 @@ "earring": "silver hoop", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8882 + }, "metadata_dict": { "fur": "dmt", "earring": "gold hoop", @@ -105570,22 +132218,28 @@ "background": "aquamarine", "eyes": "bloodshot", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8883 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "mouth": "tongue out", "clothes": "prom dress", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8884 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -105593,11 +132247,14 @@ "clothes": "lab coat", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8885 + }, "metadata_dict": { "eyes": "closed", "background": "gray", @@ -105605,31 +132262,40 @@ "mouth": "rage", "clothes": "smoking jacket", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8886 + }, "metadata_dict": { "background": "blue", "fur": "black", "eyes": "bored", "mouth": "grin multicolored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8887 + }, "metadata_dict": { "fur": "gray", "mouth": "bored unshaven", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8888 + }, "metadata_dict": { "earring": "silver stud", "mouth": "jovial", @@ -105637,11 +132303,14 @@ "background": "yellow", "fur": "white", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8889 + }, "metadata_dict": { "mouth": "grin multicolored", "earring": "silver stud", @@ -105650,11 +132319,14 @@ "fur": "cheetah", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8890 + }, "metadata_dict": { "clothes": "space suit", "background": "aquamarine", @@ -105662,11 +132334,14 @@ "fur": "brown", "hat": "commie hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8891 + }, "metadata_dict": { "mouth": "bored dagger", "hat": "irish boho", @@ -105674,11 +132349,14 @@ "clothes": "lab coat", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8892 + }, "metadata_dict": { "hat": "s&m hat", "background": "orange", @@ -105686,11 +132364,14 @@ "clothes": "lab coat", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8893 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "rainbow suspenders", @@ -105698,11 +132379,14 @@ "eyes": "bloodshot", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8894 + }, "metadata_dict": { "clothes": "bayc t red", "earring": "gold hoop", @@ -105711,11 +132395,14 @@ "hat": "cowboy hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8895 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", @@ -105723,11 +132410,14 @@ "background": "yellow", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8896 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -105735,11 +132425,14 @@ "clothes": "black holes t", "hat": "bowler", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8897 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -105747,11 +132440,14 @@ "fur": "brown", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8898 + }, "metadata_dict": { "eyes": "scumbag", "fur": "dark brown", @@ -105759,11 +132455,14 @@ "hat": "short mohawk", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8899 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -105772,11 +132471,14 @@ "clothes": "toga", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8900 + }, "metadata_dict": { "clothes": "black holes t", "background": "gray", @@ -105784,22 +132486,28 @@ "hat": "girl's hair pink", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8901 + }, "metadata_dict": { "mouth": "grin", "eyes": "3d", "background": "orange", "hat": "bunny ears", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8902 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", @@ -105807,22 +132515,28 @@ "clothes": "rainbow suspenders", "fur": "black", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8903 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "hat": "short mohawk", "eyes": "bored", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8904 + }, "metadata_dict": { "clothes": "striped tee", "hat": "s&m hat", @@ -105830,11 +132544,14 @@ "fur": "pink", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8905 + }, "metadata_dict": { "clothes": "wool turtleneck", "earring": "diamond stud", @@ -105843,11 +132560,14 @@ "background": "yellow", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8906 + }, "metadata_dict": { "fur": "tan", "background": "blue", @@ -105855,21 +132575,27 @@ "hat": "girl's hair short", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8907 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "closed", "background": "purple", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8908 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "phoneme ooo", @@ -105877,11 +132603,14 @@ "fur": "dark brown", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8909 + }, "metadata_dict": { "mouth": "tongue out", "eyes": "zombie", @@ -105890,11 +132619,14 @@ "background": "blue", "hat": "girl's hair short", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8910 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -105903,33 +132635,42 @@ "background": "aquamarine", "hat": "cowboy hat", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8911 + }, "metadata_dict": { "fur": "gray", "background": "aquamarine", "mouth": "bored cigarette", "clothes": "service", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8912 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "irish boho", "fur": "black", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8913 + }, "metadata_dict": { "earring": "silver stud", "hat": "bayc hat red", @@ -105938,11 +132679,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8914 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -105950,11 +132694,14 @@ "background": "blue", "clothes": "guayabera", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8915 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored dagger", @@ -105962,11 +132709,14 @@ "fur": "brown", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8916 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "bandolier", @@ -105974,22 +132724,28 @@ "fur": "black", "hat": "vietnam era helmet", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8917 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "clothes": "leather punk jacket", "fur": "pink", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8918 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "tan", @@ -105997,11 +132753,14 @@ "mouth": "grin diamond grill", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8919 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "bayc t red", @@ -106010,11 +132769,14 @@ "earring": "silver hoop", "hat": "faux hawk", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8920 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "dumbfounded", @@ -106022,11 +132784,14 @@ "background": "yellow", "hat": "halo", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8921 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven pizza", @@ -106034,22 +132799,28 @@ "fur": "dark brown", "clothes": "sleeveless logo t", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8922 + }, "metadata_dict": { "fur": "golden brown", "clothes": "blue dress", "mouth": "small grin", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8923 + }, "metadata_dict": { "clothes": "leather jacket", "mouth": "bored bubblegum", @@ -106057,11 +132828,14 @@ "eyes": "bloodshot", "fur": "dark brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8924 + }, "metadata_dict": { "hat": "horns", "fur": "red", @@ -106069,11 +132843,14 @@ "clothes": "bayc t black", "mouth": "phoneme wah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8925 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -106081,11 +132858,14 @@ "earring": "silver hoop", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8926 + }, "metadata_dict": { "background": "new punk blue", "hat": "bandana blue", @@ -106093,22 +132873,28 @@ "fur": "black", "eyes": "3d", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8927 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "background": "gray", "fur": "black", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8928 + }, "metadata_dict": { "mouth": "grin", "background": "yellow", @@ -106117,11 +132903,14 @@ "earring": "silver hoop", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8929 + }, "metadata_dict": { "hat": "laurel wreath", "eyes": "coins", @@ -106129,33 +132918,42 @@ "fur": "black", "mouth": "bored unshaven cigar", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8930 + }, "metadata_dict": { "eyes": "closed", "background": "blue", "fur": "noise", "mouth": "bored pizza", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8931 + }, "metadata_dict": { "eyes": "bloodshot", "mouth": "bored unshaven cigar", "hat": "bowler", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8932 + }, "metadata_dict": { "eyes": "robot", "clothes": "leather jacket", @@ -106163,22 +132961,28 @@ "hat": "fisherman's hat", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8933 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", "hat": "sushi chef headband", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8934 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "sad", @@ -106186,11 +132990,14 @@ "fur": "black", "background": "yellow", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8935 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -106199,22 +133006,28 @@ "eyes": "bloodshot", "earring": "silver hoop", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8936 + }, "metadata_dict": { "eyes": "blindfold", "fur": "golden brown", "hat": "cowboy hat", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8937 + }, "metadata_dict": { "eyes": "holographic", "mouth": "bored unshaven bubblegum", @@ -106222,11 +133035,14 @@ "fur": "dark brown", "hat": "cowboy hat", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8938 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "black", @@ -106234,33 +133050,42 @@ "clothes": "toga", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8939 + }, "metadata_dict": { "background": "blue", "eyes": "bloodshot", "fur": "dark brown", "clothes": "tuxedo tee", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8940 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "hypnotized", "fur": "brown", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8941 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven cigarette", @@ -106268,11 +133093,14 @@ "hat": "cowboy hat", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8942 + }, "metadata_dict": { "eyes": "holographic", "hat": "seaman's hat", @@ -106280,22 +133108,28 @@ "mouth": "bored pipe", "background": "gray", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8943 + }, "metadata_dict": { "background": "new punk blue", "hat": "irish boho", "mouth": "grin", "fur": "pink", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8944 + }, "metadata_dict": { "hat": "prussian helmet", "earring": "silver stud", @@ -106304,11 +133138,14 @@ "clothes": "toga", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8945 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "phoneme ooo", @@ -106316,11 +133153,14 @@ "hat": "fisherman's hat", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8946 + }, "metadata_dict": { "hat": "girl's hair pink", "fur": "brown", @@ -106328,11 +133168,14 @@ "eyes": "crazy", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8947 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -106340,11 +133183,14 @@ "hat": "beanie", "background": "orange", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8948 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "earring": "diamond stud", @@ -106353,11 +133199,14 @@ "hat": "commie hat", "clothes": "navy striped tee", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8949 + }, "metadata_dict": { "eyes": "scumbag", "fur": "cream", @@ -106365,11 +133214,14 @@ "background": "yellow", "clothes": "stunt jacket", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8950 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -106377,33 +133229,42 @@ "eyes": "3d", "fur": "cheetah", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8951 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "gray", "mouth": "rage", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8952 + }, "metadata_dict": { "background": "aquamarine", "hat": "commie hat", "mouth": "bored", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8953 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "striped tee", @@ -106412,22 +133273,28 @@ "background": "orange", "mouth": "bored pizza", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8954 + }, "metadata_dict": { "eyes": "holographic", "clothes": "sleeveless t", "fur": "dark brown", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8955 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -106435,11 +133302,14 @@ "hat": "prussian helmet", "clothes": "black t", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8956 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -106447,22 +133317,28 @@ "mouth": "bored", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8957 + }, "metadata_dict": { "eyes": "heart", "clothes": "bandolier", "mouth": "phoneme ooo", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8958 + }, "metadata_dict": { "fur": "tan", "mouth": "bored party horn", @@ -106470,11 +133346,14 @@ "hat": "bayc flipped brim", "background": "yellow", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8959 + }, "metadata_dict": { "eyes": "zombie", "hat": "girl's hair pink", @@ -106482,11 +133361,14 @@ "clothes": "toga", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8960 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "pink", @@ -106495,11 +133377,14 @@ "earring": "silver hoop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8961 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "hypnotized", @@ -106507,11 +133392,14 @@ "fur": "dark brown", "clothes": "guayabera", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8962 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "sleeveless logo t", @@ -106519,11 +133407,14 @@ "background": "blue", "fur": "brown", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8963 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored dagger", @@ -106531,11 +133422,14 @@ "clothes": "smoking jacket", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8964 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tweed suit", @@ -106543,11 +133437,14 @@ "background": "aquamarine", "eyes": "bloodshot", "fur": "noise" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8965 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "striped tee", @@ -106555,11 +133452,14 @@ "fur": "red", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8966 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bloodshot", @@ -106567,11 +133467,14 @@ "mouth": "bored", "clothes": "hip hop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8967 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "seaman's hat", @@ -106579,11 +133482,14 @@ "background": "blue", "fur": "dark brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8968 + }, "metadata_dict": { "eyes": "heart", "earring": "gold hoop", @@ -106592,11 +133498,14 @@ "clothes": "sleeveless logo t", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8969 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -106604,11 +133513,14 @@ "hat": "spinner hat", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8970 + }, "metadata_dict": { "eyes": "blindfold", "earring": "silver stud", @@ -106617,11 +133529,14 @@ "background": "yellow", "mouth": "bored cigarette", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8971 + }, "metadata_dict": { "clothes": "black t", "background": "aquamarine", @@ -106629,11 +133544,14 @@ "eyes": "sleepy", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8972 + }, "metadata_dict": { "mouth": "discomfort", "hat": "horns", @@ -106641,22 +133559,28 @@ "fur": "black", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8973 + }, "metadata_dict": { "hat": "sushi chef headband", "eyes": "bored", "background": "purple", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8974 + }, "metadata_dict": { "fur": "golden brown", "mouth": "jovial", @@ -106664,11 +133588,14 @@ "background": "orange", "hat": "faux hawk", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8975 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "fez", @@ -106676,11 +133603,14 @@ "background": "blue", "eyes": "robot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8976 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "eyes": "x eyes", @@ -106689,22 +133619,28 @@ "background": "yellow", "hat": "safari", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8977 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", "fur": "trippy", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8978 + }, "metadata_dict": { "eyes": "closed", "hat": "prussian helmet", @@ -106712,11 +133648,14 @@ "fur": "dark brown", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8979 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "coins", @@ -106724,22 +133663,28 @@ "fur": "death bot", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8980 + }, "metadata_dict": { "eyes": "heart", "mouth": "grin", "fur": "red", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8981 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -106747,11 +133692,14 @@ "background": "aquamarine", "earring": "silver hoop", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8982 + }, "metadata_dict": { "eyes": "eyepatch", "background": "gray", @@ -106759,11 +133707,14 @@ "clothes": "tuxedo tee", "mouth": "bored unshaven cigarette", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8983 + }, "metadata_dict": { "background": "new punk blue", "fur": "noise", @@ -106771,22 +133722,28 @@ "hat": "halo", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8984 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "clothes": "lumberjack shirt", "fur": "golden brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8985 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "short mohawk", @@ -106794,11 +133751,14 @@ "eyes": "sleepy", "fur": "white", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8986 + }, "metadata_dict": { "fur": "golden brown", "clothes": "cowboy shirt", @@ -106806,11 +133766,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8987 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "dmt", @@ -106818,11 +133781,14 @@ "background": "orange", "eyes": "bored", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8988 + }, "metadata_dict": { "eyes": "coins", "hat": "prussian helmet", @@ -106831,11 +133797,14 @@ "clothes": "bayc t black", "earring": "silver hoop", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8989 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -106843,11 +133812,14 @@ "mouth": "bored dagger", "fur": "pink", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8990 + }, "metadata_dict": { "background": "gray", "clothes": "biker vest", @@ -106855,11 +133827,14 @@ "mouth": "bored unshaven cigarette", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8991 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -106868,11 +133843,14 @@ "hat": "vietnam era helmet", "earring": "cross", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8992 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", @@ -106880,11 +133858,14 @@ "clothes": "black t", "background": "orange", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8993 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "striped tee", @@ -106893,11 +133874,14 @@ "earring": "diamond stud", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8994 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "hypnotized", @@ -106905,11 +133889,14 @@ "fur": "dark brown", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8995 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", @@ -106917,11 +133904,14 @@ "background": "orange", "hat": "cowboy hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8996 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "blue", @@ -106929,11 +133919,14 @@ "eyes": "bored", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8997 + }, "metadata_dict": { "hat": "horns", "eyes": "zombie", @@ -106942,22 +133935,28 @@ "background": "aquamarine", "fur": "black", "earring": "gold stud" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8998 + }, "metadata_dict": { "fur": "cream", "hat": "horns", "mouth": "bored unshaven party horn", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 8999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 8999 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme ooo", @@ -106966,11 +133965,14 @@ "hat": "bowler", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9000, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9000 + }, "metadata_dict": { "fur": "tan", "hat": "horns", @@ -106979,11 +133981,14 @@ "clothes": "leather jacket", "earring": "gold stud", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9001, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9001 + }, "metadata_dict": { "mouth": "bored kazoo", "clothes": "black t", @@ -106991,11 +133996,14 @@ "eyes": "robot", "fur": "red", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9002, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9002 + }, "metadata_dict": { "fur": "brown", "clothes": "work vest", @@ -107004,11 +134012,14 @@ "hat": "vietnam era helmet", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9003, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9003 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "gold hoop", @@ -107017,11 +134028,14 @@ "mouth": "bored", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9004, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9004 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tweed suit", @@ -107029,22 +134043,28 @@ "mouth": "rage", "eyes": "robot", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9005, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9005 + }, "metadata_dict": { "clothes": "black t", "mouth": "bored", "fur": "robot", "eyes": "sunglasses", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9006, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9006 + }, "metadata_dict": { "eyes": "closed", "mouth": "rage", @@ -107052,22 +134072,28 @@ "background": "orange", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9007, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9007 + }, "metadata_dict": { "hat": "s&m hat", "eyes": "bored", "fur": "brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9008, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9008 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -107075,11 +134101,14 @@ "fur": "golden brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9009, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9009 + }, "metadata_dict": { "background": "new punk blue", "mouth": "rage", @@ -107087,11 +134116,14 @@ "fur": "brown", "clothes": "navy striped tee", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9010, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9010 + }, "metadata_dict": { "hat": "girl's hair pink", "clothes": "tie dye", @@ -107099,33 +134131,42 @@ "fur": "brown", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9011, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9011 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", "background": "orange", "fur": "cheetah", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9012, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9012 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "eyes": "3d", "clothes": "toga", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9013, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9013 + }, "metadata_dict": { "hat": "irish boho", "clothes": "sailor shirt", @@ -107133,11 +134174,14 @@ "mouth": "bored bubblegum", "background": "orange", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9014, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9014 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -107145,11 +134189,14 @@ "background": "blue", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9015, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9015 + }, "metadata_dict": { "hat": "fez", "background": "blue", @@ -107157,11 +134204,14 @@ "fur": "death bot", "eyes": "crazy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9016, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9016 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "blindfold", @@ -107169,22 +134219,28 @@ "background": "orange", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9017, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9017 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "striped tee", "background": "aquamarine", "eyes": "bloodshot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9018, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9018 + }, "metadata_dict": { "fur": "red", "clothes": "smoking jacket", @@ -107192,11 +134248,14 @@ "background": "yellow", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9019, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9019 + }, "metadata_dict": { "hat": "horns", "background": "orange", @@ -107204,11 +134263,14 @@ "fur": "dark brown", "mouth": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9020, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9020 + }, "metadata_dict": { "fur": "black", "background": "orange", @@ -107216,11 +134278,14 @@ "hat": "fisherman's hat", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9021, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9021 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "orange", @@ -107228,11 +134293,14 @@ "mouth": "bored", "eyes": "crazy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9022, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9022 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "closed", @@ -107240,11 +134308,14 @@ "background": "blue", "clothes": "toga", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9023, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9023 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -107253,11 +134324,14 @@ "earring": "silver hoop", "clothes": "bayc t black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9024, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9024 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -107265,33 +134339,42 @@ "eyes": "bored", "clothes": "stunt jacket", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9025, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9025 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "rainbow suspenders", "background": "blue", "eyes": "bloodshot", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9026, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9026 + }, "metadata_dict": { "eyes": "x eyes", "fur": "noise", "hat": "safari", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9027, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9027 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -107299,11 +134382,14 @@ "fur": "white", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9028, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9028 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "tan", @@ -107311,22 +134397,28 @@ "mouth": "bored party horn", "background": "blue", "clothes": "smoking jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9029, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9029 + }, "metadata_dict": { "eyes": "blindfold", "background": "gray", "clothes": "sleeveless logo t", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9030, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9030 + }, "metadata_dict": { "eyes": "zombie", "fur": "dark brown", @@ -107335,11 +134427,14 @@ "background": "purple", "mouth": "bored cigarette", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9031, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9031 + }, "metadata_dict": { "clothes": "leather punk jacket", "earring": "silver stud", @@ -107348,11 +134443,14 @@ "fur": "cheetah", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9032, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9032 + }, "metadata_dict": { "eyes": "blindfold", "hat": "seaman's hat", @@ -107361,11 +134459,14 @@ "mouth": "bored", "fur": "white", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9033, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9033 + }, "metadata_dict": { "eyes": "blindfold", "fur": "gray", @@ -107373,44 +134474,56 @@ "hat": "beanie", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9034, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9034 + }, "metadata_dict": { "fur": "dmt", "mouth": "jovial", "eyes": "bored", "hat": "army hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9035, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9035 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "black", "hat": "bayc flipped brim", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9036, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9036 + }, "metadata_dict": { "fur": "cream", "eyes": "bored", "hat": "army hat", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9037, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9037 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored party horn", @@ -107418,22 +134531,28 @@ "eyes": "bloodshot", "hat": "bunny ears", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9038, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9038 + }, "metadata_dict": { "mouth": "bored dagger", "clothes": "black holes t", "fur": "pink", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9039, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9039 + }, "metadata_dict": { "eyes": "zombie", "clothes": "rainbow suspenders", @@ -107441,11 +134560,14 @@ "background": "blue", "fur": "dark brown", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9040, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9040 + }, "metadata_dict": { "hat": "seaman's hat", "earring": "gold hoop", @@ -107454,33 +134576,42 @@ "eyes": "sleepy", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9041, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9041 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", "clothes": "blue dress", "mouth": "bored party horn", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9042, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9042 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black t", "fur": "noise", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9043, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9043 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -107489,11 +134620,14 @@ "background": "gray", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9044, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9044 + }, "metadata_dict": { "background": "new punk blue", "hat": "spinner hat", @@ -107501,22 +134635,28 @@ "eyes": "bloodshot", "clothes": "tanktop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9045, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9045 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "grin", "fur": "pink", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9046, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9046 + }, "metadata_dict": { "fur": "golden brown", "mouth": "grin", @@ -107524,11 +134664,14 @@ "hat": "bayc flipped brim", "clothes": "prom dress", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9047, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9047 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -107536,11 +134679,14 @@ "fur": "red", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9048, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9048 + }, "metadata_dict": { "hat": "irish boho", "earring": "silver stud", @@ -107549,11 +134695,14 @@ "mouth": "bored", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9049, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9049 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "hypnotized", @@ -107561,11 +134710,14 @@ "mouth": "rage", "background": "gray", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9050, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9050 + }, "metadata_dict": { "hat": "party hat 1", "fur": "dark brown", @@ -107573,11 +134725,14 @@ "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9051, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9051 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "brown", @@ -107585,11 +134740,14 @@ "eyes": "bored", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9052, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9052 + }, "metadata_dict": { "eyes": "closed", "earring": "cross", @@ -107597,11 +134755,14 @@ "clothes": "bayc t black", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9053, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9053 + }, "metadata_dict": { "eyes": "closed", "clothes": "prison jumpsuit", @@ -107609,11 +134770,14 @@ "fur": "dark brown", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9054, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9054 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "cream", @@ -107622,11 +134786,14 @@ "background": "orange", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9055, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9055 + }, "metadata_dict": { "eyes": "closed", "mouth": "dumbfounded", @@ -107634,11 +134801,14 @@ "background": "gray", "fur": "white", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9056, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9056 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "dumbfounded", @@ -107647,11 +134817,14 @@ "earring": "silver hoop", "hat": "safari", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9057, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9057 + }, "metadata_dict": { "mouth": "dumbfounded", "eyes": "3d", @@ -107659,11 +134832,14 @@ "hat": "commie hat", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9058, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9058 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "striped tee", @@ -107671,11 +134847,14 @@ "mouth": "bored", "fur": "white", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9059, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9059 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "dumbfounded", @@ -107684,11 +134863,14 @@ "background": "gray", "clothes": "guayabera", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9060, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9060 + }, "metadata_dict": { "earring": "gold hoop", "background": "blue", @@ -107696,11 +134878,14 @@ "mouth": "bored", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9061, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9061 + }, "metadata_dict": { "clothes": "guayabera", "fur": "cheetah", @@ -107708,33 +134893,42 @@ "hat": "commie hat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9062, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9062 + }, "metadata_dict": { "background": "blue", "fur": "black", "eyes": "bloodshot", "mouth": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9063, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9063 + }, "metadata_dict": { "clothes": "blue dress", "fur": "dark brown", "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9064, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9064 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "phoneme ooo", @@ -107742,11 +134936,14 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9065, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9065 + }, "metadata_dict": { "eyes": "coins", "hat": "stuntman helmet", @@ -107755,11 +134952,14 @@ "mouth": "phoneme wah", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9066, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9066 + }, "metadata_dict": { "clothes": "striped tee", "hat": "girl's hair pink", @@ -107768,11 +134968,14 @@ "mouth": "bored", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9067, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9067 + }, "metadata_dict": { "eyes": "x eyes", "fur": "brown", @@ -107780,11 +134983,14 @@ "background": "gray", "mouth": "bored cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9068, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9068 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "girl's hair pink", @@ -107793,11 +134999,14 @@ "earring": "gold stud", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9069, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9069 + }, "metadata_dict": { "hat": "girl's hair pink", "earring": "silver stud", @@ -107806,11 +135015,14 @@ "mouth": "bored unshaven cigarette", "background": "army green", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9070, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9070 + }, "metadata_dict": { "clothes": "space suit", "hat": "fez", @@ -107818,11 +135030,14 @@ "background": "gray", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9071, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9071 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -107830,11 +135045,14 @@ "clothes": "work vest", "background": "yellow", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9072, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9072 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -107842,11 +135060,14 @@ "clothes": "tanktop", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9073, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9073 + }, "metadata_dict": { "eyes": "closed", "background": "aquamarine", @@ -107854,11 +135075,14 @@ "clothes": "bayc t black", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9074, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9074 + }, "metadata_dict": { "fur": "golden brown", "mouth": "phoneme vuh", @@ -107866,11 +135090,14 @@ "eyes": "bloodshot", "hat": "cowboy hat", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9075, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9075 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -107878,22 +135105,28 @@ "background": "aquamarine", "eyes": "bored", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9076, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9076 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "hat": "stuntman helmet", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9077, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9077 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -107901,11 +135134,14 @@ "eyes": "sleepy", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9078, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9078 + }, "metadata_dict": { "mouth": "grin", "clothes": "cowboy shirt", @@ -107913,32 +135149,41 @@ "fur": "dark brown", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9079, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9079 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "dark brown", "mouth": "dumbfounded" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9080, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9080 + }, "metadata_dict": { "background": "aquamarine", "mouth": "jovial", "hat": "spinner hat", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9081, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9081 + }, "metadata_dict": { "fur": "cream", "eyes": "hypnotized", @@ -107946,11 +135191,14 @@ "clothes": "work vest", "background": "orange", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9082, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9082 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "gold hoop", @@ -107958,22 +135206,28 @@ "background": "yellow", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9083, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9083 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", "hat": "bowler", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9084, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9084 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", @@ -107981,11 +135235,14 @@ "clothes": "biker vest", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9085, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9085 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "grin", @@ -107993,33 +135250,42 @@ "hat": "seaman's hat", "eyes": "robot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9086, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9086 + }, "metadata_dict": { "fur": "golden brown", "hat": "girl's hair pink", "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9087, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9087 + }, "metadata_dict": { "hat": "horns", "mouth": "bored unshaven party horn", "background": "orange", "fur": "dark brown", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9088, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9088 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 1", @@ -108028,22 +135294,28 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9089, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9089 + }, "metadata_dict": { "fur": "trippy", "background": "orange", "eyes": "bored", "hat": "fisherman's hat", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9090, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9090 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "jovial", @@ -108051,32 +135323,41 @@ "eyes": "bored", "clothes": "bone necklace", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9091, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9091 + }, "metadata_dict": { "background": "yellow", "fur": "black", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9092, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9092 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "fur": "black", "eyes": "robot", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9093, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9093 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "dmt", @@ -108085,11 +135366,14 @@ "earring": "silver hoop", "background": "gray", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9094, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9094 + }, "metadata_dict": { "clothes": "leather punk jacket", "earring": "silver stud", @@ -108097,22 +135381,28 @@ "eyes": "blue beams", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9095, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9095 + }, "metadata_dict": { "fur": "gray", "clothes": "sailor shirt", "background": "aquamarine", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9096, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9096 + }, "metadata_dict": { "mouth": "grin", "clothes": "tweed suit", @@ -108121,11 +135411,14 @@ "earring": "gold stud", "fur": "pink", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9097, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9097 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -108133,33 +135426,42 @@ "eyes": "coins", "background": "blue", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9098, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9098 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "trippy", "background": "blue", "hat": "halo", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9099, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9099 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", "clothes": "cowboy shirt", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9100, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9100 + }, "metadata_dict": { "eyes": "zombie", "mouth": "jovial", @@ -108167,22 +135469,28 @@ "clothes": "tuxedo tee", "hat": "ww2 pilot helm", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9101, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9101 + }, "metadata_dict": { "eyes": "heart", "fur": "tan", "background": "blue", "mouth": "bored bubblegum", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9102, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9102 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", @@ -108191,11 +135499,14 @@ "eyes": "bored", "background": "gray", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9103, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9103 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "sushi chef headband", @@ -108203,21 +135514,27 @@ "eyes": "bloodshot", "background": "yellow", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9104, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9104 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "purple", "eyes": "bloodshot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9105, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9105 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -108225,22 +135542,28 @@ "fur": "golden brown", "earring": "silver stud", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9106, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9106 + }, "metadata_dict": { "eyes": "scumbag", "hat": "irish boho", "background": "blue", "fur": "brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9107, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9107 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -108248,11 +135571,14 @@ "eyes": "bloodshot", "hat": "ww2 pilot helm", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9108, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9108 + }, "metadata_dict": { "clothes": "prison jumpsuit", "background": "aquamarine", @@ -108260,32 +135586,41 @@ "mouth": "bored", "fur": "white", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9109, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9109 + }, "metadata_dict": { "hat": "fez", "mouth": "jovial", "background": "blue", "fur": "black", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9110, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9110 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "background": "yellow", "fur": "tan", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9111, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9111 + }, "metadata_dict": { "background": "gray", "clothes": "blue dress", @@ -108293,11 +135628,14 @@ "eyes": "bored", "fur": "brown", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9112, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9112 + }, "metadata_dict": { "clothes": "striped tee", "hat": "irish boho", @@ -108305,22 +135643,28 @@ "mouth": "dumbfounded", "eyes": "3d", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9113, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9113 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "eyes": "scumbag", "fur": "tan", "earring": "gold stud" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9114, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9114 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven bubblegum", @@ -108329,11 +135673,14 @@ "fur": "dark brown", "background": "orange", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9115, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9115 + }, "metadata_dict": { "eyes": "holographic", "hat": "s&m hat", @@ -108342,11 +135689,14 @@ "fur": "dark brown", "background": "purple", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9116, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9116 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -108354,22 +135704,28 @@ "clothes": "sleeveless logo t", "hat": "bowler", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9117, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9117 + }, "metadata_dict": { "background": "blue", "mouth": "bored bubblegum", "fur": "dark brown", "hat": "commie hat", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9118, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9118 + }, "metadata_dict": { "fur": "tan", "mouth": "grin multicolored", @@ -108377,11 +135733,14 @@ "background": "orange", "eyes": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9119, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9119 + }, "metadata_dict": { "mouth": "bored cigarette", "eyes": "robot", @@ -108389,11 +135748,14 @@ "background": "gray", "hat": "commie hat", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9120, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9120 + }, "metadata_dict": { "eyes": "scumbag", "earring": "diamond stud", @@ -108402,11 +135764,14 @@ "fur": "brown", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9121, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9121 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "brown", @@ -108415,22 +135780,28 @@ "eyes": "3d", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9122, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9122 + }, "metadata_dict": { "fur": "pink", "eyes": "3d", "hat": "beanie", "mouth": "phoneme wah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9123, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9123 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "clothes": "sleeveless logo t", @@ -108438,11 +135809,14 @@ "background": "orange", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9124, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9124 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "gray", @@ -108450,11 +135824,14 @@ "clothes": "prom dress", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9125, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9125 + }, "metadata_dict": { "background": "new punk blue", "fur": "cream", @@ -108462,22 +135839,28 @@ "clothes": "sailor shirt", "eyes": "bloodshot", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9126, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9126 + }, "metadata_dict": { "fur": "brown", "hat": "beanie", "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9127, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9127 + }, "metadata_dict": { "background": "yellow", "clothes": "work vest", @@ -108485,11 +135868,14 @@ "fur": "brown", "hat": "beanie", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9128, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9128 + }, "metadata_dict": { "eyes": "hypnotized", "clothes": "blue dress", @@ -108498,11 +135884,14 @@ "fur": "dark brown", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9129, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9129 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -108510,11 +135899,14 @@ "background": "gray", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9130, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9130 + }, "metadata_dict": { "clothes": "striped tee", "fur": "tan", @@ -108523,11 +135915,14 @@ "background": "purple", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9131, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9131 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -108535,22 +135930,28 @@ "fur": "pink", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9132, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9132 + }, "metadata_dict": { "fur": "tan", "clothes": "black t", "background": "orange", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9133, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9133 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "black", @@ -108558,11 +135959,14 @@ "hat": "bunny ears", "clothes": "bone tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9134, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9134 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -108570,11 +135974,14 @@ "background": "aquamarine", "eyes": "3d", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9135, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9135 + }, "metadata_dict": { "fur": "dmt", "earring": "gold hoop", @@ -108583,11 +135990,14 @@ "clothes": "toga", "hat": "bayc hat red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9136, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9136 + }, "metadata_dict": { "fur": "cream", "earring": "silver stud", @@ -108595,22 +136005,28 @@ "eyes": "bored", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9137, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9137 + }, "metadata_dict": { "eyes": "zombie", "background": "orange", "fur": "dark brown", "hat": "beanie", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9138, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9138 + }, "metadata_dict": { "clothes": "space suit", "mouth": "phoneme ooo", @@ -108618,11 +136034,14 @@ "background": "orange", "fur": "dark brown", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9139, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9139 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -108630,11 +136049,14 @@ "mouth": "phoneme vuh", "hat": "safari", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9140, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9140 + }, "metadata_dict": { "hat": "sushi chef headband", "mouth": "jovial", @@ -108642,22 +136064,28 @@ "background": "purple", "fur": "white", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9141, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9141 + }, "metadata_dict": { "mouth": "rage", "earring": "silver stud", "fur": "black", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9142, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9142 + }, "metadata_dict": { "fur": "tan", "hat": "sushi chef headband", @@ -108665,33 +136093,42 @@ "earring": "silver hoop", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9143, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9143 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cheetah", "eyes": "crazy", "hat": "police motorcycle helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9144, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9144 + }, "metadata_dict": { "earring": "diamond stud", "fur": "brown", "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9145, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9145 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -108700,22 +136137,28 @@ "earring": "gold hoop", "eyes": "robot", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9146, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9146 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", "fur": "dark brown", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9147, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9147 + }, "metadata_dict": { "fur": "tan", "mouth": "jovial", @@ -108723,22 +136166,28 @@ "clothes": "tanktop", "background": "yellow", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9148, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9148 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "blue", "eyes": "bored", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9149, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9149 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "blindfold", @@ -108746,11 +136195,14 @@ "earring": "gold hoop", "fur": "black", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9150, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9150 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -108758,11 +136210,14 @@ "eyes": "bloodshot", "fur": "blue", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9151, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9151 + }, "metadata_dict": { "clothes": "sleeveless t", "hat": "bayc flipped brim", @@ -108770,11 +136225,14 @@ "mouth": "bored", "eyes": "angry", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9152, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9152 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -108782,11 +136240,14 @@ "earring": "silver hoop", "clothes": "tanktop", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9153, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9153 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -108795,11 +136256,14 @@ "earring": "silver hoop", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9154, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9154 + }, "metadata_dict": { "fur": "blue", "mouth": "dumbfounded", @@ -108807,44 +136271,56 @@ "clothes": "tanktop", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9155, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9155 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "blue dress", "eyes": "zombie", "fur": "pink", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9156, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9156 + }, "metadata_dict": { "mouth": "rage", "clothes": "work vest", "fur": "black", "background": "orange", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9157, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9157 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t red", "mouth": "bored kazoo", "fur": "cream", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9158, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9158 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "blindfold", @@ -108852,11 +136328,14 @@ "background": "aquamarine", "clothes": "smoking jacket", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9159, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9159 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", @@ -108864,11 +136343,14 @@ "hat": "short mohawk", "background": "gray", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9160, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9160 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "heart", @@ -108877,11 +136359,14 @@ "mouth": "jovial", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9161, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9161 + }, "metadata_dict": { "hat": "faux hawk", "earring": "silver hoop", @@ -108890,22 +136375,28 @@ "background": "yellow", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9162, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9162 + }, "metadata_dict": { "background": "new punk blue", "clothes": "striped tee", "eyes": "hypnotized", "fur": "dmt", "mouth": "jovial" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9163, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9163 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme vuh", @@ -108913,11 +136404,14 @@ "clothes": "biker vest", "hat": "army hat", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9164, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9164 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "bowler", @@ -108925,11 +136419,14 @@ "background": "orange", "fur": "pink", "clothes": "prom dress" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9165, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9165 + }, "metadata_dict": { "eyes": "laser eyes", "mouth": "bored unshaven", @@ -108938,11 +136435,14 @@ "fur": "black", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9166, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9166 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "space suit", @@ -108951,11 +136451,14 @@ "background": "aquamarine", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9167, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9167 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "striped tee", @@ -108963,11 +136466,14 @@ "fur": "gray", "background": "blue", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9168, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9168 + }, "metadata_dict": { "fur": "golden brown", "clothes": "sleeveless logo t", @@ -108975,11 +136481,14 @@ "hat": "fisherman's hat", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9169, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9169 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "biker vest", @@ -108987,11 +136496,14 @@ "fur": "brown", "hat": "vietnam era helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9170, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9170 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "blue", @@ -108999,11 +136511,14 @@ "hat": "beanie", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9171, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9171 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -109011,11 +136526,14 @@ "hat": "seaman's hat", "clothes": "leather jacket", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9172, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9172 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -109023,11 +136541,14 @@ "mouth": "bored cigarette", "hat": "police motorcycle helmet", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9173, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9173 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", @@ -109035,11 +136556,14 @@ "mouth": "bored unshaven cigar", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9174, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9174 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "golden brown", @@ -109048,11 +136572,14 @@ "hat": "short mohawk", "background": "orange", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9175, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9175 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -109061,22 +136588,28 @@ "background": "blue", "fur": "noise", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9176, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9176 + }, "metadata_dict": { "clothes": "black t", "mouth": "grin diamond grill", "background": "aquamarine", "fur": "dark brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9177, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9177 + }, "metadata_dict": { "eyes": "eyepatch", "earring": "silver stud", @@ -109084,11 +136617,14 @@ "clothes": "toga", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9178, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9178 + }, "metadata_dict": { "eyes": "coins", "earring": "gold hoop", @@ -109096,22 +136632,28 @@ "fur": "brown", "background": "yellow", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9179, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9179 + }, "metadata_dict": { "background": "blue", "fur": "pink", "mouth": "small grin", "hat": "ww2 pilot helm", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9180, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9180 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -109119,11 +136661,14 @@ "hat": "beanie", "background": "army green", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9181, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9181 + }, "metadata_dict": { "earring": "diamond stud", "eyes": "robot", @@ -109131,11 +136676,14 @@ "clothes": "lab coat", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9182, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9182 + }, "metadata_dict": { "hat": "trippy captain's hat", "eyes": "blindfold", @@ -109143,21 +136691,27 @@ "mouth": "phoneme vuh", "background": "blue", "fur": "black" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9183, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9183 + }, "metadata_dict": { "mouth": "grin", "background": "purple", "fur": "cheetah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9184, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9184 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -109165,11 +136719,14 @@ "eyes": "3d", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9185, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9185 + }, "metadata_dict": { "earring": "gold hoop", "hat": "fez", @@ -109178,11 +136735,14 @@ "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9186, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9186 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "solid gold", @@ -109190,11 +136750,14 @@ "hat": "cowboy hat", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9187, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9187 + }, "metadata_dict": { "mouth": "tongue out", "fur": "dark brown", @@ -109203,11 +136766,14 @@ "background": "yellow", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9188, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9188 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "grin", @@ -109215,11 +136781,14 @@ "fur": "red", "clothes": "pimp coat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9189, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9189 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "sailor shirt", @@ -109227,11 +136796,14 @@ "hat": "bunny ears", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9190, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9190 + }, "metadata_dict": { "clothes": "bandolier", "earring": "silver hoop", @@ -109240,11 +136812,14 @@ "fur": "white", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9191, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9191 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "black", @@ -109252,11 +136827,14 @@ "clothes": "tuxedo tee", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9192, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9192 + }, "metadata_dict": { "eyes": "coins", "earring": "gold stud", @@ -109264,11 +136842,14 @@ "mouth": "small grin", "fur": "brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9193, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9193 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "dark brown", @@ -109276,11 +136857,14 @@ "mouth": "bored", "clothes": "caveman pelt", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9194, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9194 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "red", @@ -109288,21 +136872,27 @@ "clothes": "tuxedo tee", "mouth": "tongue out", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9195, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9195 + }, "metadata_dict": { "background": "blue", "fur": "tan", "eyes": "3d", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9196, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9196 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -109310,11 +136900,14 @@ "hat": "short mohawk", "earring": "silver hoop", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9197, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9197 + }, "metadata_dict": { "eyes": "x eyes", "background": "gray", @@ -109323,22 +136916,28 @@ "hat": "short mohawk", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9198, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9198 + }, "metadata_dict": { "eyes": "x eyes", "background": "aquamarine", "fur": "pink", "hat": "short mohawk", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9199, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9199 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", @@ -109346,11 +136945,14 @@ "clothes": "stunt jacket", "mouth": "bored cigar", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9200, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9200 + }, "metadata_dict": { "earring": "silver stud", "background": "aquamarine", @@ -109358,11 +136960,14 @@ "fur": "dark brown", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9201, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9201 + }, "metadata_dict": { "fur": "cream", "background": "aquamarine", @@ -109371,22 +136976,28 @@ "eyes": "bored", "hat": "commie hat", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9202, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9202 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "mouth": "phoneme wah", "eyes": "sunglasses", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9203, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9203 + }, "metadata_dict": { "hat": "bayc hat black", "background": "new punk blue", @@ -109394,11 +137005,14 @@ "clothes": "prison jumpsuit", "eyes": "bloodshot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9204, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9204 + }, "metadata_dict": { "fur": "tan", "earring": "silver stud", @@ -109406,22 +137020,28 @@ "background": "purple", "clothes": "tuxedo tee", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9205, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9205 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", "hat": "fez", "mouth": "rage", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9206, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9206 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "bored pipe", @@ -109429,11 +137049,14 @@ "hat": "bayc flipped brim", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9207, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9207 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "king's crown", @@ -109441,11 +137064,14 @@ "earring": "silver hoop", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9208, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9208 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", @@ -109453,11 +137079,14 @@ "background": "gray", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9209, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9209 + }, "metadata_dict": { "mouth": "grin", "background": "orange", @@ -109465,11 +137094,14 @@ "hat": "safari", "fur": "zombie", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9210, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9210 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -109477,11 +137109,14 @@ "hat": "army hat", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9211, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9211 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -109489,21 +137124,27 @@ "hat": "bayc flipped brim", "clothes": "guayabera", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9212, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9212 + }, "metadata_dict": { "background": "purple", "eyes": "coins", "mouth": "bored", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9213, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9213 + }, "metadata_dict": { "eyes": "closed", "background": "orange", @@ -109511,11 +137152,14 @@ "hat": "girl's hair short", "clothes": "tanktop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9214, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9214 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "wool turtleneck", @@ -109524,11 +137168,14 @@ "earring": "diamond stud", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9215, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9215 + }, "metadata_dict": { "mouth": "discomfort", "background": "blue", @@ -109536,11 +137183,14 @@ "hat": "bayc flipped brim", "clothes": "prom dress", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9216, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9216 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "lumberjack shirt", @@ -109548,21 +137198,27 @@ "fur": "red", "background": "aquamarine", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9217, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9217 + }, "metadata_dict": { "eyes": "closed", "background": "purple", "mouth": "bored", "fur": "cream" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9218, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9218 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "bored unshaven", @@ -109570,11 +137226,14 @@ "hat": "faux hawk", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9219, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9219 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -109582,11 +137241,14 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9220, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9220 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored unshaven", @@ -109594,11 +137256,14 @@ "fur": "pink", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9221, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9221 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -109606,11 +137271,14 @@ "eyes": "3d", "background": "purple", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9222, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9222 + }, "metadata_dict": { "mouth": "grin", "background": "blue", @@ -109618,22 +137286,28 @@ "eyes": "bored", "hat": "army hat", "clothes": "bone necklace" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9223, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9223 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "space suit", "eyes": "bored", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9224, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9224 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -109641,11 +137315,14 @@ "hat": "fisherman's hat", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9225, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9225 + }, "metadata_dict": { "hat": "horns", "fur": "cheetah", @@ -109654,22 +137331,28 @@ "background": "yellow", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9226, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9226 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", "clothes": "wool turtleneck", "fur": "death bot", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9227, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9227 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cream", @@ -109678,11 +137361,14 @@ "earring": "cross", "hat": "halo", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9228, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9228 + }, "metadata_dict": { "mouth": "grin", "hat": "short mohawk", @@ -109690,11 +137376,14 @@ "fur": "cheetah", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9229, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9229 + }, "metadata_dict": { "background": "gray", "mouth": "dumbfounded", @@ -109702,11 +137391,14 @@ "eyes": "bloodshot", "clothes": "tanktop", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9230, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9230 + }, "metadata_dict": { "mouth": "discomfort", "fur": "brown", @@ -109714,11 +137406,14 @@ "eyes": "bloodshot", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9231, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9231 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -109726,22 +137421,28 @@ "fur": "pink", "eyes": "bored", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9232, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9232 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "leather jacket", "fur": "black", "background": "blue", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9233, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9233 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -109749,55 +137450,70 @@ "hat": "party hat 1", "background": "aquamarine", "clothes": "tie dye" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9234, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9234 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "blue beams", "background": "orange", "fur": "noise", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9235, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9235 + }, "metadata_dict": { "background": "new punk blue", "eyes": "bored", "mouth": "bored unshaven cigar", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9236, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9236 + }, "metadata_dict": { "clothes": "striped tee", "fur": "cream", "mouth": "phoneme ooo", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9237, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9237 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "background": "orange", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9238, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9238 + }, "metadata_dict": { "background": "gray", "mouth": "bored bubblegum", @@ -109805,11 +137521,14 @@ "fur": "brown", "hat": "commie hat", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9239, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9239 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "sleeveless t", @@ -109817,11 +137536,14 @@ "fur": "black", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9240, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9240 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -109829,11 +137551,14 @@ "fur": "black", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9241, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9241 + }, "metadata_dict": { "hat": "irish boho", "eyes": "zombie", @@ -109841,11 +137566,14 @@ "background": "blue", "fur": "black", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9242, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9242 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "gray", @@ -109853,11 +137581,14 @@ "background": "orange", "clothes": "biker vest", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9243, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9243 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -109866,11 +137597,14 @@ "fur": "dark brown", "earring": "silver hoop", "clothes": "pimp coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9244, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9244 + }, "metadata_dict": { "hat": "seaman's hat", "background": "blue", @@ -109879,11 +137613,14 @@ "clothes": "guayabera", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9245, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9245 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "pink", @@ -109891,32 +137628,41 @@ "clothes": "lab coat", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9246, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9246 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bored", "fur": "cheetah", "background": "army green", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9247, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9247 + }, "metadata_dict": { "mouth": "grin", "eyes": "3d", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9248, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9248 + }, "metadata_dict": { "clothes": "bandolier", "hat": "seaman's hat", @@ -109925,11 +137671,14 @@ "background": "aquamarine", "fur": "black", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9249, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9249 + }, "metadata_dict": { "clothes": "striped tee", "fur": "trippy", @@ -109937,11 +137686,14 @@ "eyes": "robot", "earring": "silver hoop", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9250, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9250 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -109949,11 +137701,14 @@ "fur": "pink", "hat": "ww2 pilot helm", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9251, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9251 + }, "metadata_dict": { "mouth": "bored party horn", "hat": "fez", @@ -109961,11 +137716,14 @@ "eyes": "bloodshot", "clothes": "tanktop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9252, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9252 + }, "metadata_dict": { "fur": "pink", "clothes": "smoking jacket", @@ -109973,44 +137731,56 @@ "hat": "bayc hat red", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9253, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9253 + }, "metadata_dict": { "eyes": "robot", "clothes": "leather jacket", "fur": "dark brown", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9254, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9254 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme vuh", "fur": "dark brown", "hat": "bayc flipped brim", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9255, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9255 + }, "metadata_dict": { "mouth": "discomfort", "fur": "red", "background": "aquamarine", "clothes": "smoking jacket", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9256, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9256 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored kazoo", @@ -110018,11 +137788,14 @@ "earring": "gold hoop", "background": "orange", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9257, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9257 + }, "metadata_dict": { "hat": "bandana blue", "clothes": "black t", @@ -110030,11 +137803,14 @@ "mouth": "bored cigarette", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9258, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9258 + }, "metadata_dict": { "mouth": "phoneme ooo", "hat": "spinner hat", @@ -110042,11 +137818,14 @@ "background": "yellow", "clothes": "guayabera", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9259, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9259 + }, "metadata_dict": { "hat": "irish boho", "fur": "dark brown", @@ -110054,11 +137833,14 @@ "mouth": "bored", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9260, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9260 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "bayc t red", @@ -110067,22 +137849,28 @@ "eyes": "3d", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9261, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9261 + }, "metadata_dict": { "hat": "irish boho", "mouth": "bored unshaven kazoo", "eyes": "bored", "fur": "cheetah", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9262, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9262 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -110091,11 +137879,14 @@ "fur": "robot", "clothes": "hawaiian", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9263, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9263 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "smoking jacket", @@ -110103,11 +137894,14 @@ "background": "orange", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9264, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9264 + }, "metadata_dict": { "eyes": "heart", "clothes": "black holes t", @@ -110115,11 +137909,14 @@ "hat": "short mohawk", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9265, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9265 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -110127,22 +137924,28 @@ "eyes": "bored", "hat": "ww2 pilot helm", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9266, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9266 + }, "metadata_dict": { "hat": "irish boho", "mouth": "jovial", "eyes": "3d", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9267, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9267 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -110150,11 +137953,14 @@ "hat": "irish boho", "clothes": "black holes t", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9268, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9268 + }, "metadata_dict": { "fur": "dmt", "hat": "fez", @@ -110162,11 +137968,14 @@ "eyes": "angry", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9269, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9269 + }, "metadata_dict": { "hat": "prussian helmet", "clothes": "work vest", @@ -110174,11 +137983,14 @@ "fur": "black", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9270, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9270 + }, "metadata_dict": { "mouth": "grin", "clothes": "rainbow suspenders", @@ -110186,11 +137998,14 @@ "hat": "fisherman's hat", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9271, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9271 + }, "metadata_dict": { "hat": "horns", "background": "gray", @@ -110199,11 +138014,14 @@ "earring": "silver hoop", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9272, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9272 + }, "metadata_dict": { "eyes": "coins", "background": "aquamarine", @@ -110211,11 +138029,14 @@ "fur": "brown", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9273, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9273 + }, "metadata_dict": { "fur": "trippy", "eyes": "bloodshot", @@ -110223,11 +138044,14 @@ "hat": "fisherman's hat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9274, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9274 + }, "metadata_dict": { "eyes": "hypnotized", "earring": "silver stud", @@ -110235,11 +138059,14 @@ "mouth": "small grin", "clothes": "prom dress", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9275, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9275 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -110247,11 +138074,14 @@ "fur": "brown", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9276, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9276 + }, "metadata_dict": { "clothes": "striped tee", "background": "blue", @@ -110259,11 +138089,14 @@ "mouth": "bored", "eyes": "crazy", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9277, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9277 + }, "metadata_dict": { "clothes": "bayc t red", "fur": "tan", @@ -110271,11 +138104,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9278, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9278 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black holes t", @@ -110283,11 +138119,14 @@ "fur": "dark brown", "hat": "vietnam era helmet", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9279, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9279 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored unshaven", @@ -110296,11 +138135,14 @@ "eyes": "bored", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9280, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9280 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "sailor shirt", @@ -110308,11 +138150,14 @@ "hat": "beanie", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9281, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9281 + }, "metadata_dict": { "clothes": "kings robe", "eyes": "heart", @@ -110320,11 +138165,14 @@ "fur": "black", "background": "gray", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9282, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9282 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "coins", @@ -110332,11 +138180,14 @@ "hat": "faux hawk", "background": "yellow", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9283, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9283 + }, "metadata_dict": { "eyes": "closed", "fur": "gray", @@ -110345,22 +138196,28 @@ "background": "aquamarine", "earring": "silver hoop", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9284, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9284 + }, "metadata_dict": { "background": "aquamarine", "mouth": "jovial", "fur": "black", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9285, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9285 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", @@ -110368,11 +138225,14 @@ "background": "orange", "fur": "dark brown", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9286, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9286 + }, "metadata_dict": { "clothes": "bandolier", "fur": "cream", @@ -110381,33 +138241,42 @@ "earring": "silver hoop", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9287, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9287 + }, "metadata_dict": { "fur": "tan", "background": "aquamarine", "eyes": "3d", "clothes": "tuxedo tee", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9288, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9288 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme oh", "eyes": "sleepy", "background": "purple", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9289, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9289 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -110416,11 +138285,14 @@ "clothes": "prison jumpsuit", "earring": "gold stud", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9290, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9290 + }, "metadata_dict": { "fur": "gray", "background": "orange", @@ -110428,11 +138300,14 @@ "clothes": "toga", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9291, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9291 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "golden brown", @@ -110440,11 +138315,14 @@ "mouth": "jovial", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9292, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9292 + }, "metadata_dict": { "eyes": "scumbag", "background": "orange", @@ -110452,11 +138330,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9293, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9293 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -110465,11 +138346,14 @@ "background": "orange", "eyes": "3d", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9294, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9294 + }, "metadata_dict": { "fur": "tan", "clothes": "bayc t red", @@ -110477,11 +138361,14 @@ "eyes": "coins", "background": "gray", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9295, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9295 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -110489,22 +138376,28 @@ "fur": "red", "hat": "bayc flipped brim", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9296, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9296 + }, "metadata_dict": { "mouth": "grin gold grill", "eyes": "coins", "clothes": "black t", "fur": "dark brown", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9297, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9297 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "diamond stud", @@ -110513,11 +138406,14 @@ "background": "blue", "clothes": "bayc t black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9298, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9298 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black t", @@ -110525,11 +138421,14 @@ "fur": "dark brown", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9299, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9299 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "zombie", @@ -110537,11 +138436,14 @@ "clothes": "stunt jacket", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9300, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9300 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", @@ -110549,11 +138451,14 @@ "fur": "dark brown", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9301, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9301 + }, "metadata_dict": { "mouth": "grin", "hat": "seaman's hat", @@ -110561,22 +138466,28 @@ "eyes": "bloodshot", "fur": "brown", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9302, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9302 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", "eyes": "hypnotized", "clothes": "black holes t", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9303, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9303 + }, "metadata_dict": { "clothes": "black holes t", "hat": "seaman's hat", @@ -110585,11 +138496,14 @@ "earring": "silver hoop", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9304, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9304 + }, "metadata_dict": { "eyes": "x eyes", "background": "new punk blue", @@ -110598,11 +138512,14 @@ "mouth": "grin multicolored", "earring": "silver stud", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9305, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9305 + }, "metadata_dict": { "fur": "golden brown", "hat": "fez", @@ -110611,11 +138528,14 @@ "mouth": "bored cigarette", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9306, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9306 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "jovial", @@ -110623,11 +138543,14 @@ "earring": "silver hoop", "fur": "cheetah", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9307, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9307 + }, "metadata_dict": { "fur": "tan", "clothes": "prison jumpsuit", @@ -110635,22 +138558,28 @@ "background": "blue", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9308, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9308 + }, "metadata_dict": { "fur": "pink", "hat": "cowboy hat", "mouth": "bored unshaven cigar", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9309, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9309 + }, "metadata_dict": { "eyes": "blindfold", "hat": "irish boho", @@ -110659,11 +138588,14 @@ "clothes": "sleeveless logo t", "background": "yellow", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9310, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9310 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "black holes t", @@ -110671,11 +138603,14 @@ "background": "orange", "fur": "death bot", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9311, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9311 + }, "metadata_dict": { "mouth": "bored dagger", "earring": "gold hoop", @@ -110683,11 +138618,14 @@ "background": "yellow", "hat": "safari", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9312, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9312 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "bayc t red", @@ -110695,11 +138633,14 @@ "background": "aquamarine", "hat": "short mohawk", "fur": "noise" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9313, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9313 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "phoneme ooo", @@ -110707,22 +138648,28 @@ "fur": "red", "earring": "silver hoop", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9314, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9314 + }, "metadata_dict": { "eyes": "coins", "fur": "pink", "mouth": "small grin", "hat": "ww2 pilot helm", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9315, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9315 + }, "metadata_dict": { "mouth": "grin gold grill", "background": "aquamarine", @@ -110731,11 +138678,14 @@ "hat": "bayc hat red", "earring": "cross", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9316, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9316 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "diamond stud", @@ -110744,11 +138694,14 @@ "eyes": "bored", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9317, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9317 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", @@ -110757,11 +138710,14 @@ "hat": "bayc flipped brim", "earring": "cross", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9318, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9318 + }, "metadata_dict": { "clothes": "leather punk jacket", "eyes": "zombie", @@ -110769,11 +138725,14 @@ "mouth": "small grin", "hat": "beanie", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9319, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9319 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", @@ -110781,11 +138740,14 @@ "eyes": "bloodshot", "fur": "dark brown", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9320, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9320 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -110793,22 +138755,28 @@ "clothes": "tanktop", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9321, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9321 + }, "metadata_dict": { "eyes": "heart", "clothes": "smoking jacket", "fur": "dark brown", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9322, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9322 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "silver stud", @@ -110816,11 +138784,14 @@ "eyes": "bloodshot", "clothes": "tuxedo tee", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9323, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9323 + }, "metadata_dict": { "clothes": "bayc t red", "mouth": "bored unshaven", @@ -110828,11 +138799,14 @@ "eyes": "bored", "hat": "ww2 pilot helm", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9324, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9324 + }, "metadata_dict": { "eyes": "closed", "background": "gray", @@ -110841,33 +138815,42 @@ "mouth": "bored unshaven cigar", "clothes": "tanktop", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9325, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9325 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven cigarette", "eyes": "bored", "background": "gray", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9326, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9326 + }, "metadata_dict": { "fur": "black", "clothes": "biker vest", "background": "yellow", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9327, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9327 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -110876,11 +138859,14 @@ "clothes": "sailor shirt", "fur": "brown", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9328, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9328 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "hypnotized", @@ -110888,11 +138874,14 @@ "background": "aquamarine", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9329, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9329 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -110900,22 +138889,28 @@ "eyes": "robot", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9330, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9330 + }, "metadata_dict": { "fur": "cream", "eyes": "coins", "background": "blue", "mouth": "bored", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9331, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9331 + }, "metadata_dict": { "fur": "dmt", "earring": "gold stud", @@ -110923,11 +138918,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9332, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9332 + }, "metadata_dict": { "hat": "bandana blue", "eyes": "3d", @@ -110935,11 +138933,14 @@ "fur": "brown", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9333, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9333 + }, "metadata_dict": { "eyes": "scumbag", "hat": "baby's bonnet", @@ -110947,22 +138948,28 @@ "background": "blue", "clothes": "tie dye", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9334, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9334 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "wide eyed", "background": "blue", "fur": "white", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9335, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9335 + }, "metadata_dict": { "eyes": "heart", "clothes": "black t", @@ -110970,22 +138977,28 @@ "hat": "short mohawk", "fur": "dark brown", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9336, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9336 + }, "metadata_dict": { "eyes": "holographic", "clothes": "service", "background": "purple", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9337, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9337 + }, "metadata_dict": { "background": "new punk blue", "hat": "sushi chef headband", @@ -110993,11 +139006,14 @@ "clothes": "black t", "eyes": "bloodshot", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9338, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9338 + }, "metadata_dict": { "fur": "cream", "eyes": "zombie", @@ -111005,22 +139021,28 @@ "earring": "silver hoop", "clothes": "sleeveless logo t", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9339, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9339 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", "mouth": "grin multicolored", "clothes": "black t", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9340, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9340 + }, "metadata_dict": { "clothes": "black t", "mouth": "grin diamond grill", @@ -111029,11 +139051,14 @@ "background": "yellow", "hat": "commie hat", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9341, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9341 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -111041,32 +139066,41 @@ "background": "blue", "fur": "brown", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9342, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9342 + }, "metadata_dict": { "background": "aquamarine", "clothes": "biker vest", "mouth": "bored", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9343, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9343 + }, "metadata_dict": { "background": "new punk blue", "eyes": "sleepy", "fur": "pink", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9344, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9344 + }, "metadata_dict": { "mouth": "grin gold grill", "earring": "gold stud", @@ -111075,11 +139109,14 @@ "background": "yellow", "hat": "bunny ears", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9345, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9345 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "aquamarine", @@ -111088,11 +139125,14 @@ "hat": "bayc flipped brim", "earring": "silver hoop", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9346, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9346 + }, "metadata_dict": { "eyes": "eyepatch", "background": "new punk blue", @@ -111101,21 +139141,27 @@ "mouth": "tongue out", "fur": "brown", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9347, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9347 + }, "metadata_dict": { "mouth": "grin", "eyes": "3d", "fur": "dark brown", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9348, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9348 + }, "metadata_dict": { "hat": "party hat 2", "clothes": "striped tee", @@ -111124,11 +139170,14 @@ "earring": "silver hoop", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9349, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9349 + }, "metadata_dict": { "hat": "party hat 2", "fur": "gray", @@ -111136,11 +139185,14 @@ "eyes": "bored", "clothes": "lab coat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9350, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9350 + }, "metadata_dict": { "eyes": "closed", "background": "blue", @@ -111148,32 +139200,41 @@ "mouth": "bored", "hat": "safari", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9351, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9351 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "black", "background": "orange", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9352, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9352 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", "mouth": "dumbfounded", "background": "aquamarine", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9353, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9353 + }, "metadata_dict": { "mouth": "jovial", "clothes": "leather jacket", @@ -111181,22 +139242,28 @@ "hat": "short mohawk", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9354, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9354 + }, "metadata_dict": { "eyes": "holographic", "background": "blue", "mouth": "bored pipe", "hat": "beanie", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9355, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9355 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -111204,11 +139271,14 @@ "hat": "halo", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9356, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9356 + }, "metadata_dict": { "clothes": "lumberjack shirt", "hat": "sushi chef headband", @@ -111216,11 +139286,14 @@ "mouth": "bored pipe", "background": "blue", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9357, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9357 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -111228,11 +139301,14 @@ "hat": "fez", "background": "blue", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9358, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9358 + }, "metadata_dict": { "eyes": "sad", "fur": "dark brown", @@ -111240,11 +139316,14 @@ "background": "yellow", "mouth": "bored cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9359, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9359 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "black", @@ -111252,11 +139331,14 @@ "hat": "beanie", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9360, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9360 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -111264,22 +139346,28 @@ "eyes": "coins", "fur": "red", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9361, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9361 + }, "metadata_dict": { "fur": "trippy", "mouth": "bored unshaven bubblegum", "earring": "silver stud", "background": "gray", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9362, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9362 + }, "metadata_dict": { "hat": "horns", "earring": "silver stud", @@ -111288,33 +139376,42 @@ "clothes": "lab coat", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9363, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9363 + }, "metadata_dict": { "fur": "brown", "eyes": "coins", "background": "blue", "clothes": "sleeveless logo t", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9364, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9364 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "mouth": "dumbfounded", "fur": "cheetah", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9365, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9365 + }, "metadata_dict": { "background": "new punk blue", "clothes": "lumberjack shirt", @@ -111322,22 +139419,28 @@ "fur": "dark brown", "hat": "ww2 pilot helm", "mouth": "bored unshaven cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9366, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9366 + }, "metadata_dict": { "eyes": "heart", "fur": "black", "mouth": "bored bubblegum", "clothes": "pimp coat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9367, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9367 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "discomfort", @@ -111345,33 +139448,42 @@ "background": "blue", "hat": "cowboy hat", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9368, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9368 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", "fur": "gray", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9369, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9369 + }, "metadata_dict": { "fur": "golden brown", "hat": "seaman's hat", "mouth": "jovial", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9370, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9370 + }, "metadata_dict": { "fur": "cream", "mouth": "rage", @@ -111379,11 +139491,14 @@ "eyes": "sleepy", "clothes": "navy striped tee", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9371, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9371 + }, "metadata_dict": { "eyes": "laser eyes", "hat": "fez", @@ -111391,11 +139506,14 @@ "fur": "black", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9372, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9372 + }, "metadata_dict": { "mouth": "grin", "hat": "baby's bonnet", @@ -111404,33 +139522,42 @@ "clothes": "tuxedo tee", "fur": "brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9373, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9373 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "clothes": "leather jacket", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9374, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9374 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", "mouth": "dumbfounded", "background": "orange", "hat": "bayc flipped brim" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9375, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9375 + }, "metadata_dict": { "mouth": "discomfort", "earring": "gold hoop", @@ -111439,11 +139566,14 @@ "clothes": "hip hop", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9376, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9376 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -111451,22 +139581,28 @@ "hat": "beanie", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9377, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9377 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "dumbfounded", "fur": "pink", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9378, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9378 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored dagger", @@ -111474,11 +139610,14 @@ "hat": "short mohawk", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9379, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9379 + }, "metadata_dict": { "background": "new punk blue", "clothes": "black t", @@ -111486,11 +139625,14 @@ "fur": "black", "eyes": "crazy", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9380, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9380 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -111498,21 +139640,27 @@ "fur": "gray", "background": "blue", "earring": "silver hoop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9381, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9381 + }, "metadata_dict": { "background": "aquamarine", "fur": "brown", "mouth": "bored", "eyes": "coins" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9382, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9382 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "work vest", @@ -111521,33 +139669,42 @@ "earring": "gold stud", "background": "gray", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9383, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9383 + }, "metadata_dict": { "hat": "horns", "mouth": "phoneme ooo", "eyes": "bloodshot", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9384, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9384 + }, "metadata_dict": { "clothes": "rainbow suspenders", "eyes": "bloodshot", "fur": "cheetah", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9385, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9385 + }, "metadata_dict": { "clothes": "cowboy shirt", "eyes": "3d", @@ -111555,11 +139712,14 @@ "fur": "pink", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9386, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9386 + }, "metadata_dict": { "background": "yellow", "mouth": "phoneme vuh", @@ -111567,11 +139727,14 @@ "eyes": "3d", "hat": "beanie", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9387, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9387 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -111579,11 +139742,14 @@ "hat": "beanie", "clothes": "navy striped tee", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9388, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9388 + }, "metadata_dict": { "background": "new punk blue", "earring": "gold hoop", @@ -111591,22 +139757,28 @@ "fur": "red", "hat": "beanie", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9389, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9389 + }, "metadata_dict": { "fur": "golden brown", "eyes": "bloodshot", "background": "purple", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9390, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9390 + }, "metadata_dict": { "fur": "red", "hat": "spinner hat", @@ -111614,11 +139786,14 @@ "eyes": "bored", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9391, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9391 + }, "metadata_dict": { "earring": "gold hoop", "clothes": "tweed suit", @@ -111627,11 +139802,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9392, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9392 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", @@ -111639,22 +139817,28 @@ "eyes": "3d", "hat": "short mohawk", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9393, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9393 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "cream", "mouth": "jovial", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9394, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9394 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "clothes": "sailor shirt", @@ -111662,11 +139846,14 @@ "fur": "brown", "eyes": "sleepy", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9395, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9395 + }, "metadata_dict": { "mouth": "grin", "eyes": "coins", @@ -111674,11 +139861,14 @@ "fur": "brown", "earring": "cross", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9396, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9396 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "blue", @@ -111686,22 +139876,28 @@ "eyes": "bored", "hat": "bowler", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9397, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9397 + }, "metadata_dict": { "fur": "cream", "clothes": "black t", "eyes": "3d", "mouth": "small grin", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9398, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9398 + }, "metadata_dict": { "hat": "trippy captain's hat", "mouth": "bored unshaven", @@ -111709,33 +139905,42 @@ "fur": "brown", "eyes": "sleepy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9399, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9399 + }, "metadata_dict": { "background": "blue", "fur": "dark brown", "eyes": "bloodshot", "mouth": "bored unshaven cigarette", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9400, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9400 + }, "metadata_dict": { "eyes": "holographic", "mouth": "phoneme vuh", "background": "orange", "hat": "cowboy hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9401, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9401 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -111743,22 +139948,28 @@ "fur": "golden brown", "hat": "stuntman helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9402, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9402 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "eyes": "bored", "mouth": "phoneme wah", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9403, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9403 + }, "metadata_dict": { "mouth": "bored bubblegum", "fur": "pink", @@ -111766,22 +139977,28 @@ "eyes": "bored", "hat": "army hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9404, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9404 + }, "metadata_dict": { "hat": "baby's bonnet", "mouth": "bored unshaven pipe", "background": "orange", "eyes": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9405, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9405 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "sad", @@ -111790,33 +140007,42 @@ "background": "orange", "fur": "brown", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9406, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9406 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", "fur": "black", "background": "purple", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9407, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9407 + }, "metadata_dict": { "clothes": "prison jumpsuit", "fur": "black", "background": "orange", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9408, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9408 + }, "metadata_dict": { "fur": "cream", "earring": "gold hoop", @@ -111824,11 +140050,14 @@ "mouth": "bored", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9409, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9409 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "bayc t red", @@ -111836,11 +140065,14 @@ "background": "gray", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9410, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9410 + }, "metadata_dict": { "clothes": "space suit", "hat": "stuntman helmet", @@ -111849,11 +140081,14 @@ "background": "aquamarine", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9411, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9411 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", @@ -111861,11 +140096,14 @@ "clothes": "bone necklace", "eyes": "sleepy", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9412, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9412 + }, "metadata_dict": { "hat": "police motorcycle helmet", "clothes": "leather jacket", @@ -111873,11 +140111,14 @@ "mouth": "bored cigarette", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9413, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9413 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "horns", @@ -111885,11 +140126,14 @@ "clothes": "biker vest", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9414, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9414 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "brown", @@ -111897,11 +140141,14 @@ "background": "gray", "hat": "commie hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9415, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9415 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "orange", @@ -111909,22 +140156,28 @@ "earring": "silver hoop", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9416, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9416 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "girl's hair pink", "eyes": "3d", "fur": "brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9417, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9417 + }, "metadata_dict": { "eyes": "hypnotized", "background": "aquamarine", @@ -111932,11 +140185,14 @@ "fur": "brown", "hat": "vietnam era helmet", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9418, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9418 + }, "metadata_dict": { "background": "yellow", "hat": "cowboy hat", @@ -111945,11 +140201,14 @@ "eyes": "sleepy", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9419, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9419 + }, "metadata_dict": { "mouth": "grin", "hat": "baby's bonnet", @@ -111957,11 +140216,14 @@ "fur": "red", "eyes": "sleepy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9420, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9420 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -111970,11 +140232,14 @@ "background": "orange", "earring": "silver hoop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9421, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9421 + }, "metadata_dict": { "fur": "tan", "mouth": "phoneme vuh", @@ -111982,22 +140247,28 @@ "clothes": "leather jacket", "hat": "bayc flipped brim", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9422, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9422 + }, "metadata_dict": { "mouth": "rage", "background": "blue", "fur": "pink", "hat": "ww2 pilot helm", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9423, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9423 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -112005,22 +140276,28 @@ "clothes": "blue dress", "mouth": "grin diamond grill", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9424, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9424 + }, "metadata_dict": { "fur": "golden brown", "hat": "fez", "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9425, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9425 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -112028,11 +140305,14 @@ "clothes": "tanktop", "background": "yellow", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9426, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9426 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", @@ -112040,22 +140320,28 @@ "fur": "pink", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9427, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9427 + }, "metadata_dict": { "background": "new punk blue", "clothes": "smoking jacket", "eyes": "bored", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9428, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9428 + }, "metadata_dict": { "fur": "brown", "earring": "silver stud", @@ -112064,11 +140350,14 @@ "mouth": "bored", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9429, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9429 + }, "metadata_dict": { "mouth": "phoneme oh", "background": "blue", @@ -112076,11 +140365,14 @@ "clothes": "tuxedo tee", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9430, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9430 + }, "metadata_dict": { "clothes": "striped tee", "fur": "red", @@ -112088,11 +140380,14 @@ "background": "orange", "hat": "safari", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9431, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9431 + }, "metadata_dict": { "background": "new punk blue", "eyes": "coins", @@ -112100,11 +140395,14 @@ "mouth": "phoneme vuh", "clothes": "leather jacket", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9432, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9432 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bayc t red", @@ -112112,11 +140410,14 @@ "mouth": "bored pipe", "fur": "pink", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9433, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9433 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "s&m hat", @@ -112124,11 +140425,14 @@ "background": "aquamarine", "clothes": "tanktop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9434, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9434 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "phoneme ooo", @@ -112136,22 +140440,28 @@ "background": "blue", "fur": "white", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9435, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9435 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "eyes": "sleepy", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9436, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9436 + }, "metadata_dict": { "fur": "cream", "hat": "king's crown", @@ -112160,22 +140470,28 @@ "background": "gray", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9437, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9437 + }, "metadata_dict": { "fur": "dark brown", "eyes": "bored", "mouth": "bored", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9438, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9438 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "leather punk jacket", @@ -112183,11 +140499,14 @@ "eyes": "bored", "fur": "brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9439, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9439 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -112195,11 +140514,14 @@ "hat": "baby's bonnet", "background": "aquamarine", "fur": "red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9440, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9440 + }, "metadata_dict": { "hat": "bayc hat black", "background": "blue", @@ -112207,11 +140529,14 @@ "mouth": "small grin", "fur": "cheetah", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9441, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9441 + }, "metadata_dict": { "clothes": "lumberjack shirt", "mouth": "grin", @@ -112219,11 +140544,14 @@ "background": "orange", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9442, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9442 + }, "metadata_dict": { "fur": "red", "background": "blue", @@ -112232,11 +140560,14 @@ "mouth": "bored unshaven cigarette", "hat": "vietnam era helmet", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9443, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9443 + }, "metadata_dict": { "hat": "fisherman's hat", "eyes": "coins", @@ -112245,11 +140576,14 @@ "mouth": "tongue out", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9444, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9444 + }, "metadata_dict": { "eyes": "zombie", "background": "orange", @@ -112257,22 +140591,28 @@ "fur": "brown", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9445, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9445 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "golden brown", "clothes": "work vest", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9446, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9446 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bloodshot", @@ -112280,11 +140620,14 @@ "hat": "fisherman's hat", "background": "gray", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9447, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9447 + }, "metadata_dict": { "fur": "tan", "clothes": "sailor shirt", @@ -112293,33 +140636,42 @@ "hat": "army hat", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9448, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9448 + }, "metadata_dict": { "eyes": "x eyes", "fur": "dmt", "background": "aquamarine", "mouth": "bored bubblegum", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9449, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9449 + }, "metadata_dict": { "clothes": "black t", "background": "blue", "eyes": "blue beams", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9450, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9450 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -112327,11 +140679,14 @@ "background": "aquamarine", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9451, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9451 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "bandolier", @@ -112340,11 +140695,14 @@ "fur": "dark brown", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9452, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9452 + }, "metadata_dict": { "eyes": "laser eyes", "clothes": "space suit", @@ -112352,22 +140710,28 @@ "background": "gray", "hat": "beanie", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9453, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9453 + }, "metadata_dict": { "fur": "tan", "hat": "spinner hat", "mouth": "bored bubblegum", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9454, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9454 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "dumbfounded", @@ -112375,11 +140739,14 @@ "fur": "black", "eyes": "robot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9455, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9455 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "clothes": "wool turtleneck", @@ -112387,22 +140754,28 @@ "fur": "gray", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9456, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9456 + }, "metadata_dict": { "fur": "gray", "mouth": "jovial", "clothes": "smoking jacket", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9457, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9457 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "bored party horn", @@ -112410,11 +140783,14 @@ "fur": "noise", "clothes": "bayc t black", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9458, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9458 + }, "metadata_dict": { "mouth": "discomfort", "fur": "cream", @@ -112423,11 +140799,14 @@ "earring": "gold stud", "eyes": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9459, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9459 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -112435,33 +140814,42 @@ "fur": "red", "mouth": "tongue out", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9460, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9460 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", "mouth": "dumbfounded", "fur": "cheetah", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9461, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9461 + }, "metadata_dict": { "mouth": "grin", "background": "yellow", "fur": "brown", "hat": "bayc hat red", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9462, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9462 + }, "metadata_dict": { "clothes": "sailor shirt", "fur": "dark brown", @@ -112469,21 +140857,27 @@ "eyes": "bored", "background": "purple", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9463, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9463 + }, "metadata_dict": { "fur": "red", "background": "yellow", "mouth": "bored cigarette", "eyes": "hypnotized" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9464, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9464 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -112491,11 +140885,14 @@ "background": "aquamarine", "fur": "noise", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9465, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9465 + }, "metadata_dict": { "clothes": "striped tee", "earring": "silver stud", @@ -112504,11 +140901,14 @@ "mouth": "bored unshaven cigarette", "hat": "commie hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9466, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9466 + }, "metadata_dict": { "mouth": "grin", "earring": "gold hoop", @@ -112516,11 +140916,14 @@ "hat": "beanie", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9467, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9467 + }, "metadata_dict": { "fur": "tan", "mouth": "grin", @@ -112529,11 +140932,14 @@ "earring": "gold stud", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9468, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9468 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "tan", @@ -112541,11 +140947,14 @@ "hat": "army hat", "background": "purple", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9469, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9469 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "cream", @@ -112553,11 +140962,14 @@ "background": "purple", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9470, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9470 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "sailor shirt", @@ -112566,11 +140978,14 @@ "earring": "silver hoop", "hat": "cowboy hat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9471, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9471 + }, "metadata_dict": { "mouth": "bored kazoo", "eyes": "blindfold", @@ -112578,11 +140993,14 @@ "hat": "fez", "fur": "black", "clothes": "admirals coat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9472, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9472 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -112590,11 +141008,14 @@ "background": "aquamarine", "eyes": "bloodshot", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9473, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9473 + }, "metadata_dict": { "eyes": "3d", "fur": "dark brown", @@ -112602,11 +141023,14 @@ "background": "purple", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9474, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9474 + }, "metadata_dict": { "hat": "horns", "background": "blue", @@ -112614,11 +141038,14 @@ "mouth": "bored", "eyes": "angry", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9475, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9475 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "horns", @@ -112627,11 +141054,14 @@ "earring": "silver hoop", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9476, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9476 + }, "metadata_dict": { "hat": "bowler", "mouth": "phoneme vuh", @@ -112639,11 +141069,14 @@ "clothes": "biker vest", "background": "yellow", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9477, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9477 + }, "metadata_dict": { "background": "new punk blue", "mouth": "jovial", @@ -112651,33 +141084,42 @@ "fur": "brown", "eyes": "crazy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9478, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9478 + }, "metadata_dict": { "eyes": "coins", "fur": "red", "background": "orange", "mouth": "phoneme wah", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9479, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9479 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "dark brown", "hat": "army hat", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9480, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9480 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -112685,22 +141127,28 @@ "eyes": "bloodshot", "hat": "bunny ears", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9481, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9481 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "trippy", "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9482, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9482 + }, "metadata_dict": { "eyes": "x eyes", "earring": "gold hoop", @@ -112708,22 +141156,28 @@ "hat": "bowler", "background": "purple", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9483, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9483 + }, "metadata_dict": { "clothes": "work vest", "background": "orange", "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9484, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9484 + }, "metadata_dict": { "clothes": "lumberjack shirt", "fur": "golden brown", @@ -112732,11 +141186,14 @@ "background": "orange", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9485, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9485 + }, "metadata_dict": { "mouth": "phoneme oh", "eyes": "blindfold", @@ -112744,11 +141201,14 @@ "clothes": "bayc t black", "hat": "army hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9486, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9486 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -112756,11 +141216,14 @@ "fur": "cheetah", "eyes": "sleepy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9487, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9487 + }, "metadata_dict": { "clothes": "striped tee", "hat": "short mohawk", @@ -112768,11 +141231,14 @@ "background": "yellow", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9488, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9488 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "fez", @@ -112780,11 +141246,14 @@ "eyes": "3d", "fur": "dark brown", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9489, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9489 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "tweed suit", @@ -112792,11 +141261,14 @@ "fur": "dark brown", "eyes": "bored", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9490, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9490 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -112804,43 +141276,55 @@ "background": "orange", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9491, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9491 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dark brown", "clothes": "tuxedo tee", "eyes": "bored", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9492, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9492 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven bubblegum", "fur": "black", "eyes": "3d", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9493, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9493 + }, "metadata_dict": { "eyes": "3d", "mouth": "bored unshaven", "background": "orange", "fur": "tan" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9494, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9494 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -112848,11 +141332,14 @@ "background": "aquamarine", "hat": "short mohawk", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9495, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9495 + }, "metadata_dict": { "background": "new punk blue", "clothes": "tweed suit", @@ -112860,11 +141347,14 @@ "hat": "vietnam era helmet", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9496, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9496 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -112872,11 +141362,14 @@ "fur": "robot", "eyes": "sunglasses", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9497, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9497 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "golden brown", @@ -112884,11 +141377,14 @@ "background": "blue", "eyes": "bloodshot", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9498, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9498 + }, "metadata_dict": { "fur": "tan", "earring": "gold hoop", @@ -112897,11 +141393,14 @@ "hat": "vietnam era helmet", "clothes": "bone necklace", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9499, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9499 + }, "metadata_dict": { "hat": "fez", "clothes": "prison jumpsuit", @@ -112909,11 +141408,14 @@ "fur": "brown", "mouth": "bored cigar", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9500, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9500 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -112921,11 +141423,14 @@ "background": "aquamarine", "fur": "dark brown", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9501, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9501 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "s&m hat", @@ -112934,11 +141439,14 @@ "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9502, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9502 + }, "metadata_dict": { "hat": "horns", "eyes": "coins", @@ -112946,22 +141454,28 @@ "background": "yellow", "fur": "white", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9503, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9503 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "tweed suit", "background": "purple", "eyes": "sleepy", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9504, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9504 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "prison jumpsuit", @@ -112969,11 +141483,14 @@ "mouth": "bored cigarette", "hat": "halo", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9505, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9505 + }, "metadata_dict": { "eyes": "closed", "clothes": "leather punk jacket", @@ -112982,32 +141499,41 @@ "mouth": "tongue out", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9506, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9506 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", "background": "aquamarine", "fur": "black", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9507, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9507 + }, "metadata_dict": { "fur": "brown", "mouth": "bored unshaven", "background": "aquamarine", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9508, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9508 + }, "metadata_dict": { "mouth": "phoneme wah", "clothes": "striped tee", @@ -113015,22 +141541,28 @@ "fur": "cheetah", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9509, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9509 + }, "metadata_dict": { "mouth": "grin", "clothes": "cowboy shirt", "background": "orange", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9510, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9510 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "holographic", @@ -113038,33 +141570,42 @@ "fur": "dark brown", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9511, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9511 + }, "metadata_dict": { "clothes": "sleeveless t", "eyes": "hypnotized", "fur": "black", "mouth": "bored unshaven cigarette", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9512, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9512 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", "clothes": "bayc t black", "fur": "brown", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9513, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9513 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "irish boho", @@ -113072,11 +141613,14 @@ "background": "aquamarine", "fur": "brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9514, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9514 + }, "metadata_dict": { "eyes": "zombie", "earring": "gold hoop", @@ -113084,11 +141628,14 @@ "mouth": "jovial", "background": "gray", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9515, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9515 + }, "metadata_dict": { "clothes": "wool turtleneck", "earring": "gold hoop", @@ -113097,11 +141644,14 @@ "hat": "bayc flipped brim", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9516, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9516 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "phoneme vuh", @@ -113109,11 +141659,14 @@ "background": "yellow", "eyes": "crazy", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9517, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9517 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", @@ -113121,11 +141674,14 @@ "hat": "safari", "clothes": "navy striped tee", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9518, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9518 + }, "metadata_dict": { "mouth": "grin multicolored", "background": "gray", @@ -113133,11 +141689,14 @@ "fur": "black", "eyes": "bored", "clothes": "sleeveless logo t" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9519, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9519 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "gray", @@ -113145,11 +141704,14 @@ "earring": "silver stud", "background": "aquamarine", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9520, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9520 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "leather jacket", @@ -113158,11 +141720,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9521, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9521 + }, "metadata_dict": { "fur": "blue", "hat": "party hat 1", @@ -113170,33 +141735,42 @@ "mouth": "bored", "eyes": "crazy", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9522, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9522 + }, "metadata_dict": { "hat": "bandana blue", "fur": "red", "background": "purple", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9523, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9523 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "hat": "short mohawk", "mouth": "bored", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9524, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9524 + }, "metadata_dict": { "earring": "gold hoop", "fur": "noise", @@ -113204,11 +141778,14 @@ "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9525, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9525 + }, "metadata_dict": { "mouth": "grin", "clothes": "black t", @@ -113217,22 +141794,28 @@ "earring": "gold stud", "hat": "cowboy hat", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9526, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9526 + }, "metadata_dict": { "mouth": "bored kazoo", "fur": "cream", "eyes": "coins", "clothes": "tuxedo tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9527, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9527 + }, "metadata_dict": { "background": "new punk blue", "hat": "s&m hat", @@ -113240,33 +141823,42 @@ "fur": "cheetah", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9528, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9528 + }, "metadata_dict": { "eyes": "heart", "background": "gray", "fur": "golden brown", "hat": "cowboy hat", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9529, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9529 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "black holes t", "fur": "red", "eyes": "bored", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9530, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9530 + }, "metadata_dict": { "fur": "tan", "hat": "s&m hat", @@ -113274,11 +141866,14 @@ "clothes": "leather jacket", "eyes": "robot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9531, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9531 + }, "metadata_dict": { "earring": "diamond stud", "background": "aquamarine", @@ -113286,11 +141881,14 @@ "eyes": "bored", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9532, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9532 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "grin", @@ -113298,11 +141896,14 @@ "fur": "brown", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9533, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9533 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -113310,22 +141911,28 @@ "clothes": "biker vest", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9534, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9534 + }, "metadata_dict": { "fur": "red", "background": "aquamarine", "eyes": "3d", "hat": "cowboy hat", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9535, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9535 + }, "metadata_dict": { "eyes": "closed", "clothes": "kings robe", @@ -113334,11 +141941,14 @@ "fur": "pink", "earring": "silver hoop", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9536, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9536 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -113346,11 +141956,14 @@ "earring": "diamond stud", "background": "orange", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9537, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9537 + }, "metadata_dict": { "fur": "black", "clothes": "tuxedo tee", @@ -113358,22 +141971,28 @@ "earring": "silver hoop", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9538, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9538 + }, "metadata_dict": { "hat": "horns", "mouth": "bored party horn", "fur": "dark brown", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9539, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9539 + }, "metadata_dict": { "clothes": "lumberjack shirt", "background": "aquamarine", @@ -113381,11 +142000,14 @@ "mouth": "bored unshaven pipe", "earring": "silver hoop", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9540, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9540 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -113393,11 +142015,14 @@ "fur": "dark brown", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9541, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9541 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "space suit", @@ -113405,32 +142030,41 @@ "fur": "black", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9542, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9542 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "eyes": "scumbag", "fur": "dark brown", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9543, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9543 + }, "metadata_dict": { "mouth": "grin", "background": "blue", "fur": "tan", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9544, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9544 + }, "metadata_dict": { "mouth": "bored party horn", "eyes": "3d", @@ -113438,22 +142072,28 @@ "clothes": "lab coat", "fur": "brown", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9545, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9545 + }, "metadata_dict": { "mouth": "bored pipe", "eyes": "bloodshot", "background": "gray", "fur": "white", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9546, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9546 + }, "metadata_dict": { "eyes": "x eyes", "fur": "dmt", @@ -113461,11 +142101,14 @@ "hat": "army hat", "clothes": "bone necklace", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9547, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9547 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "discomfort", @@ -113474,11 +142117,14 @@ "hat": "spinner hat", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9548, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9548 + }, "metadata_dict": { "hat": "sushi chef headband", "earring": "gold hoop", @@ -113486,11 +142132,14 @@ "background": "gray", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9549, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9549 + }, "metadata_dict": { "eyes": "closed", "hat": "irish boho", @@ -113498,33 +142147,42 @@ "fur": "cheetah", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9550, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9550 + }, "metadata_dict": { "hat": "party hat 2", "mouth": "phoneme vuh", "fur": "pink", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9551, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9551 + }, "metadata_dict": { "fur": "golden brown", "background": "blue", "eyes": "3d", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9552, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9552 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -113533,11 +142191,14 @@ "clothes": "tie dye", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9553, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9553 + }, "metadata_dict": { "hat": "s&m hat", "fur": "brown", @@ -113546,11 +142207,14 @@ "eyes": "bloodshot", "clothes": "lab coat", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9554, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9554 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -113558,11 +142222,14 @@ "fur": "dark brown", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9555, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9555 + }, "metadata_dict": { "hat": "horns", "eyes": "zombie", @@ -113570,33 +142237,42 @@ "background": "blue", "clothes": "leather jacket", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9556, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9556 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", "eyes": "zombie", "background": "orange", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9557, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9557 + }, "metadata_dict": { "background": "new punk blue", "clothes": "puffy vest", "mouth": "bored unshaven bubblegum", "fur": "death bot", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9558, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9558 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -113604,11 +142280,14 @@ "eyes": "bored", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9559, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9559 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "brown", @@ -113617,22 +142296,28 @@ "clothes": "tanktop", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9560, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9560 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", "hat": "fez", "background": "yellow", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9561, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9561 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "dumbfounded", @@ -113640,11 +142325,14 @@ "fur": "white", "background": "army green", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9562, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9562 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -113652,11 +142340,14 @@ "hat": "army hat", "background": "gray", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9563, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9563 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "eyes": "sleepy", @@ -113664,11 +142355,14 @@ "clothes": "pimp coat", "hat": "beanie", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9564, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9564 + }, "metadata_dict": { "mouth": "phoneme l", "earring": "diamond stud", @@ -113677,11 +142371,14 @@ "hat": "fisherman's hat", "fur": "death bot", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9565, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9565 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "jovial", @@ -113689,11 +142386,14 @@ "fur": "dark brown", "earring": "silver hoop", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9566, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9566 + }, "metadata_dict": { "fur": "cream", "mouth": "bored party horn", @@ -113701,11 +142401,14 @@ "hat": "ww2 pilot helm", "clothes": "admirals coat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9567, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9567 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "holographic", @@ -113714,11 +142417,14 @@ "background": "blue", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9568, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9568 + }, "metadata_dict": { "eyes": "crazy", "hat": "girl's hair pink", @@ -113726,33 +142432,42 @@ "fur": "brown", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9569, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9569 + }, "metadata_dict": { "background": "new punk blue", "eyes": "scumbag", "clothes": "black t", "fur": "black", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9570, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9570 + }, "metadata_dict": { "mouth": "bored cigarette", "clothes": "work vest", "fur": "red", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9571, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9571 + }, "metadata_dict": { "background": "new punk blue", "eyes": "closed", @@ -113760,33 +142475,42 @@ "clothes": "striped tee", "hat": "party hat 1", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9572, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9572 + }, "metadata_dict": { "eyes": "closed", "hat": "s&m hat", "fur": "solid gold", "mouth": "bored unshaven cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9573, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9573 + }, "metadata_dict": { "fur": "dark brown", "background": "yellow", "mouth": "phoneme wah", "hat": "police motorcycle helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9574, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9574 + }, "metadata_dict": { "clothes": "space suit", "fur": "golden brown", @@ -113795,11 +142519,14 @@ "earring": "silver hoop", "hat": "beanie", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9575, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9575 + }, "metadata_dict": { "fur": "cream", "hat": "horns", @@ -113807,11 +142534,14 @@ "clothes": "smoking jacket", "mouth": "tongue out", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9576, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9576 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "red", @@ -113819,11 +142549,14 @@ "mouth": "bored unshaven cigar", "background": "gray", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9577, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9577 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "stuntman helmet", @@ -113831,11 +142564,14 @@ "background": "purple", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9578, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9578 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -113843,11 +142579,14 @@ "fur": "brown", "background": "purple", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9579, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9579 + }, "metadata_dict": { "mouth": "discomfort", "fur": "brown", @@ -113855,11 +142594,14 @@ "hat": "commie hat", "eyes": "sunglasses", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9580, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9580 + }, "metadata_dict": { "eyes": "hypnotized", "fur": "gray", @@ -113867,33 +142609,42 @@ "mouth": "phoneme vuh", "background": "orange", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9581, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9581 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "phoneme l", "fur": "tan", "background": "orange", "hat": "fisherman's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9582, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9582 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven cigarette", "background": "blue", "fur": "brown", "hat": "bayc hat red" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9583, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9583 + }, "metadata_dict": { "fur": "tan", "hat": "laurel wreath", @@ -113902,11 +142653,14 @@ "mouth": "rage", "clothes": "prom dress", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9584, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9584 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "lumberjack shirt", @@ -113914,11 +142668,14 @@ "fur": "gray", "eyes": "bloodshot", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9585, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9585 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -113926,11 +142683,14 @@ "eyes": "zombie", "hat": "spinner hat", "clothes": "tanktop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9586, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9586 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored cigar", @@ -113938,11 +142698,14 @@ "background": "blue", "fur": "robot", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9587, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9587 + }, "metadata_dict": { "hat": "irish boho", "earring": "gold stud", @@ -113950,11 +142713,14 @@ "background": "gray", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9588, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9588 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t red", @@ -113962,11 +142728,14 @@ "eyes": "bored", "hat": "bowler", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9589, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9589 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -113974,11 +142743,14 @@ "background": "aquamarine", "eyes": "bloodshot", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9590, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9590 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "dmt", @@ -113986,22 +142758,28 @@ "background": "yellow", "hat": "vietnam era helmet", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9591, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9591 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", "background": "orange", "hat": "beanie", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9592, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9592 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "hat": "beanie", @@ -114009,22 +142787,28 @@ "clothes": "sleeveless logo t", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9593, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9593 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "pink", "background": "gray", "hat": "bayc hat red", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9594, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9594 + }, "metadata_dict": { "hat": "stuntman helmet", "clothes": "biker vest", @@ -114032,11 +142816,14 @@ "fur": "brown", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9595, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9595 + }, "metadata_dict": { "mouth": "discomfort", "hat": "prussian helmet", @@ -114044,11 +142831,14 @@ "background": "gray", "clothes": "hip hop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9596, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9596 + }, "metadata_dict": { "fur": "tan", "hat": "baby's bonnet", @@ -114056,33 +142846,42 @@ "background": "aquamarine", "eyes": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9597, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9597 + }, "metadata_dict": { "hat": "party hat 1", "eyes": "bored", "background": "purple", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9598, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9598 + }, "metadata_dict": { "mouth": "bored party horn", "fur": "black", "background": "gray", "eyes": "crazy", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9599, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9599 + }, "metadata_dict": { "clothes": "sailor shirt", "mouth": "jovial", @@ -114090,22 +142889,28 @@ "background": "orange", "hat": "bayc hat red", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9600, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9600 + }, "metadata_dict": { "mouth": "phoneme ooo", "eyes": "robot", "fur": "cheetah", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9601, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9601 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "bored party horn", @@ -114113,11 +142918,14 @@ "earring": "silver hoop", "background": "purple", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9602, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9602 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "irish boho", @@ -114125,22 +142933,28 @@ "fur": "dark brown", "mouth": "small grin", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9603, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9603 + }, "metadata_dict": { "fur": "brown", "mouth": "dumbfounded", "eyes": "bored", "clothes": "admirals coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9604, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9604 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "fez", @@ -114148,42 +142962,54 @@ "eyes": "bored", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9605, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9605 + }, "metadata_dict": { "fur": "tan", "eyes": "bored", "background": "purple", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9606, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9606 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "fur": "black", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9607, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9607 + }, "metadata_dict": { "background": "aquamarine", "mouth": "bored unshaven", "fur": "brown", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9608, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9608 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "cream", @@ -114191,22 +143017,28 @@ "eyes": "bored", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9609, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9609 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "jovial", "background": "orange", "earring": "silver hoop", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9610, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9610 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "brown", @@ -114214,11 +143046,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9611, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9611 + }, "metadata_dict": { "eyes": "closed", "mouth": "discomfort", @@ -114226,22 +143061,28 @@ "clothes": "tuxedo tee", "earring": "silver hoop", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9612, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9612 + }, "metadata_dict": { "fur": "dmt", "eyes": "coins", "background": "blue", "hat": "spinner hat", "mouth": "bored pipe" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9613, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9613 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -114249,11 +143090,14 @@ "fur": "cheetah", "hat": "beanie", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9614, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9614 + }, "metadata_dict": { "eyes": "heart", "fur": "cream", @@ -114261,11 +143105,14 @@ "hat": "faux hawk", "mouth": "phoneme wah", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9615, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9615 + }, "metadata_dict": { "eyes": "eyepatch", "clothes": "leather punk jacket", @@ -114273,22 +143120,28 @@ "background": "blue", "fur": "black", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9616, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9616 + }, "metadata_dict": { "mouth": "phoneme ooo", "fur": "red", "background": "yellow", "hat": "safari", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9617, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9617 + }, "metadata_dict": { "hat": "bandana blue", "fur": "golden brown", @@ -114296,11 +143149,14 @@ "background": "blue", "clothes": "leather jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9618, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9618 + }, "metadata_dict": { "clothes": "wool turtleneck", "earring": "gold hoop", @@ -114309,21 +143165,27 @@ "fur": "brown", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9619, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9619 + }, "metadata_dict": { "background": "new punk blue", "fur": "gray", "eyes": "bloodshot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9620, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9620 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "cream", @@ -114331,11 +143193,14 @@ "eyes": "bloodshot", "clothes": "tuxedo tee", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9621, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9621 + }, "metadata_dict": { "earring": "diamond stud", "background": "aquamarine", @@ -114343,22 +143208,28 @@ "hat": "vietnam era helmet", "mouth": "bored cigar", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9622, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9622 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bayc t black", "eyes": "bored", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9623, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9623 + }, "metadata_dict": { "eyes": "closed", "fur": "cream", @@ -114366,11 +143237,14 @@ "background": "orange", "mouth": "bored unshaven cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9624, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9624 + }, "metadata_dict": { "hat": "s&m hat", "clothes": "sailor shirt", @@ -114378,22 +143252,28 @@ "fur": "black", "background": "orange", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9625, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9625 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "pink", "eyes": "bored", "hat": "fisherman's hat", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9626, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9626 + }, "metadata_dict": { "hat": "stuntman helmet", "eyes": "bloodshot", @@ -114401,11 +143281,14 @@ "background": "yellow", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9627, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9627 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "blindfold", @@ -114413,33 +143296,42 @@ "clothes": "black holes t", "hat": "stuntman helmet", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9628, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9628 + }, "metadata_dict": { "fur": "cream", "background": "aquamarine", "eyes": "bored", "hat": "cowboy hat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9629, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9629 + }, "metadata_dict": { "hat": "baby's bonnet", "background": "purple", "mouth": "bored", "eyes": "angry", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9630, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9630 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "sleeveless t", @@ -114447,33 +143339,42 @@ "mouth": "phoneme vuh", "hat": "girl's hair short", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9631, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9631 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "hat": "stuntman helmet", "eyes": "robot", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9632, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9632 + }, "metadata_dict": { "fur": "golden brown", "mouth": "dumbfounded", "eyes": "3d", "hat": "short mohawk", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9633, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9633 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin diamond grill", @@ -114482,11 +143383,14 @@ "hat": "cowboy hat", "clothes": "guayabera", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9634, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9634 + }, "metadata_dict": { "earring": "gold hoop", "fur": "black", @@ -114495,11 +143399,14 @@ "mouth": "bored", "eyes": "crazy", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9635, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9635 + }, "metadata_dict": { "mouth": "dumbfounded", "earring": "silver stud", @@ -114507,11 +143414,14 @@ "clothes": "guayabera", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9636, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9636 + }, "metadata_dict": { "mouth": "grin", "eyes": "zombie", @@ -114520,11 +143430,14 @@ "earring": "gold stud", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9637, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9637 + }, "metadata_dict": { "fur": "tan", "hat": "seaman's hat", @@ -114533,22 +143446,28 @@ "eyes": "3d", "clothes": "tuxedo tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9638, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9638 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "hat": "army hat", "mouth": "tongue out", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9639, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9639 + }, "metadata_dict": { "eyes": "coins", "fur": "gray", @@ -114556,11 +143475,14 @@ "background": "purple", "mouth": "bored cigarette", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9640, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9640 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "wool turtleneck", @@ -114569,11 +143491,14 @@ "fur": "dark brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9641, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9641 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "pink", @@ -114581,22 +143506,28 @@ "clothes": "tanktop", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9642, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9642 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "cowboy shirt", "eyes": "3d", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9643, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9643 + }, "metadata_dict": { "fur": "cream", "mouth": "grin multicolored", @@ -114605,11 +143536,14 @@ "earring": "silver hoop", "hat": "army hat", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9644, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9644 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "bloodshot", @@ -114617,11 +143551,14 @@ "hat": "bowler", "background": "purple", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9645, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9645 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -114630,11 +143567,14 @@ "hat": "fez", "fur": "cheetah", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9646, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9646 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "tan", @@ -114642,11 +143582,14 @@ "eyes": "3d", "background": "gray", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9647, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9647 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "gray", @@ -114654,11 +143597,14 @@ "clothes": "black suit", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9648, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9648 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "aquamarine", @@ -114667,11 +143613,14 @@ "eyes": "3d", "hat": "beanie", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9649, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9649 + }, "metadata_dict": { "background": "new punk blue", "eyes": "heart", @@ -114680,44 +143629,56 @@ "hat": "safari", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9650, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9650 + }, "metadata_dict": { "clothes": "work vest", "background": "aquamarine", "fur": "black", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9651, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9651 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", "fur": "cream", "hat": "short mohawk", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9652, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9652 + }, "metadata_dict": { "fur": "tan", "clothes": "leather jacket", "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9653, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9653 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "phoneme oh", @@ -114726,55 +143687,70 @@ "background": "army green", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9654, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9654 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", "mouth": "grin", "hat": "girl's hair short", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9655, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9655 + }, "metadata_dict": { "background": "blue", "fur": "dark brown", "clothes": "stunt jacket", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9656, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9656 + }, "metadata_dict": { "background": "new punk blue", "hat": "party hat 2", "fur": "tan", "mouth": "phoneme vuh", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9657, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9657 + }, "metadata_dict": { "clothes": "wool turtleneck", "eyes": "blindfold", "mouth": "bored unshaven cigarette", "background": "army green", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9658, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9658 + }, "metadata_dict": { "eyes": "closed", "fur": "dmt", @@ -114782,11 +143758,14 @@ "hat": "spinner hat", "background": "orange", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9659, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9659 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -114794,11 +143773,14 @@ "clothes": "tie dye", "hat": "cowboy hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9660, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9660 + }, "metadata_dict": { "mouth": "grin", "fur": "black", @@ -114806,11 +143788,14 @@ "background": "purple", "hat": "commie hat", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9661, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9661 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -114818,22 +143803,28 @@ "background": "orange", "eyes": "bored", "hat": "bowler" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9662, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9662 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "noise", "background": "gray", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9663, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9663 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -114841,11 +143832,14 @@ "earring": "gold stud", "fur": "dark brown", "hat": "army hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9664, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9664 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "closed", @@ -114854,21 +143848,27 @@ "clothes": "bayc t black", "fur": "white", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9665, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9665 + }, "metadata_dict": { "eyes": "sleepy", "fur": "pink", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9666, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9666 + }, "metadata_dict": { "clothes": "prom dress", "fur": "black", @@ -114876,22 +143876,28 @@ "background": "purple", "mouth": "bored cigarette", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9667, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9667 + }, "metadata_dict": { "eyes": "zombie", "mouth": "rage", "fur": "pink", "background": "orange", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9668, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9668 + }, "metadata_dict": { "clothes": "striped tee", "earring": "silver stud", @@ -114899,11 +143905,14 @@ "background": "orange", "fur": "dark brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9669, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9669 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -114911,11 +143920,14 @@ "hat": "commie hat", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9670, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9670 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "s&m hat", @@ -114923,11 +143935,14 @@ "fur": "brown", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9671, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9671 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "zombie", @@ -114935,21 +143950,27 @@ "fur": "pink", "background": "purple", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9672, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9672 + }, "metadata_dict": { "background": "blue", "mouth": "bored", "fur": "dark brown", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9673, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9673 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -114958,22 +143979,28 @@ "mouth": "bored cigarette", "fur": "blue", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9674, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9674 + }, "metadata_dict": { "clothes": "smoking jacket", "fur": "dark brown", "mouth": "small grin", "background": "army green", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9675, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9675 + }, "metadata_dict": { "hat": "s&m hat", "mouth": "grin", @@ -114981,11 +144008,14 @@ "background": "orange", "clothes": "bone necklace", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9676, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9676 + }, "metadata_dict": { "eyes": "zombie", "clothes": "tweed suit", @@ -114993,44 +144023,56 @@ "mouth": "jovial", "fur": "black", "hat": "faux hawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9677, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9677 + }, "metadata_dict": { "mouth": "bored unshaven party horn", "clothes": "sailor shirt", "background": "orange", "fur": "dark brown", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9678, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9678 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", "clothes": "sailor shirt", "background": "blue", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9679, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9679 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", "hat": "bowler", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9680, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9680 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -115038,11 +144080,14 @@ "background": "aquamarine", "fur": "brown", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9681, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9681 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "halo", @@ -115050,11 +144095,14 @@ "clothes": "biker vest", "background": "gray", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9682, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9682 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "sailor shirt", @@ -115062,11 +144110,14 @@ "background": "purple", "mouth": "phoneme wah", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9683, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9683 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -115074,22 +144125,28 @@ "mouth": "dumbfounded", "clothes": "leather jacket", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9684, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9684 + }, "metadata_dict": { "background": "new punk blue", "hat": "sea captain's hat", "fur": "pink", "mouth": "bored cigarette", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9685, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9685 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", @@ -115097,33 +144154,42 @@ "background": "yellow", "eyes": "sleepy", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9686, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9686 + }, "metadata_dict": { "background": "aquamarine", "clothes": "leather jacket", "fur": "dark brown", "mouth": "phoneme wah", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9687, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9687 + }, "metadata_dict": { "mouth": "rage", "fur": "black", "clothes": "admirals coat", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9688, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9688 + }, "metadata_dict": { "hat": "bayc hat black", "earring": "gold stud", @@ -115132,11 +144198,14 @@ "eyes": "sleepy", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9689, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9689 + }, "metadata_dict": { "hat": "seaman's hat", "clothes": "black t", @@ -115144,11 +144213,14 @@ "fur": "black", "eyes": "bloodshot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9690, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9690 + }, "metadata_dict": { "eyes": "closed", "clothes": "bandolier", @@ -115156,22 +144228,28 @@ "background": "orange", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9691, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9691 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "gray", "hat": "king's crown", "eyes": "3d" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9692, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9692 + }, "metadata_dict": { "clothes": "blue dress", "fur": "golden brown", @@ -115179,11 +144257,14 @@ "hat": "beanie", "background": "purple", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9693, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9693 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "bored unshaven", @@ -115191,11 +144272,14 @@ "hat": "bayc hat red", "fur": "blue", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9694, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9694 + }, "metadata_dict": { "hat": "horns", "background": "blue", @@ -115203,11 +144287,14 @@ "clothes": "bayc t black", "eyes": "bored", "mouth": "small grin" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9695, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9695 + }, "metadata_dict": { "hat": "s&m hat", "fur": "cream", @@ -115215,11 +144302,14 @@ "background": "gray", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9696, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9696 + }, "metadata_dict": { "hat": "party hat 2", "fur": "trippy", @@ -115227,22 +144317,28 @@ "clothes": "guayabera", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9697, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9697 + }, "metadata_dict": { "eyes": "closed", "fur": "red", "background": "yellow", "mouth": "bored", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9698, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9698 + }, "metadata_dict": { "earring": "silver stud", "clothes": "work vest", @@ -115250,22 +144346,28 @@ "background": "orange", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9699, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9699 + }, "metadata_dict": { "fur": "gray", "clothes": "prison jumpsuit", "mouth": "bored", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9700, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9700 + }, "metadata_dict": { "hat": "fez", "earring": "silver stud", @@ -115274,11 +144376,14 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9701, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9701 + }, "metadata_dict": { "mouth": "phoneme oh", "hat": "horns", @@ -115287,11 +144392,14 @@ "background": "yellow", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9702, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9702 + }, "metadata_dict": { "eyes": "x eyes", "fur": "gray", @@ -115299,11 +144407,14 @@ "background": "orange", "hat": "cowboy hat", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9703, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9703 + }, "metadata_dict": { "mouth": "rage", "background": "blue", @@ -115311,11 +144422,14 @@ "earring": "silver hoop", "clothes": "navy striped tee", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9704, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9704 + }, "metadata_dict": { "background": "orange", "clothes": "biker vest", @@ -115323,11 +144437,14 @@ "hat": "bowler", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9705, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9705 + }, "metadata_dict": { "hat": "horns", "fur": "dark brown", @@ -115335,11 +144452,14 @@ "background": "purple", "mouth": "bored", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9706, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9706 + }, "metadata_dict": { "hat": "sea captain's hat", "mouth": "dumbfounded", @@ -115347,11 +144467,14 @@ "fur": "pink", "clothes": "stunt jacket", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9707, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9707 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "bandana blue", @@ -115359,22 +144482,28 @@ "eyes": "coins", "clothes": "sailor shirt", "background": "aquamarine" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9708, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9708 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "beanie", "fur": "black", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9709, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9709 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "lumberjack shirt", @@ -115382,33 +144511,42 @@ "background": "aquamarine", "fur": "dark brown", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9710, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9710 + }, "metadata_dict": { "mouth": "bored kazoo", "background": "orange", "fur": "dark brown", "clothes": "tanktop", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9711, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9711 + }, "metadata_dict": { "fur": "tan", "background": "purple", "mouth": "small grin", "clothes": "sleeveless logo t", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9712, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9712 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", @@ -115416,22 +144554,28 @@ "background": "yellow", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9713, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9713 + }, "metadata_dict": { "mouth": "bored unshaven pipe", "fur": "black", "eyes": "bloodshot", "background": "yellow", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9714, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9714 + }, "metadata_dict": { "clothes": "lumberjack shirt", "background": "gray", @@ -115439,11 +144583,14 @@ "fur": "black", "eyes": "bloodshot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9715, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9715 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "hawaiian", @@ -115451,22 +144598,28 @@ "eyes": "bored", "hat": "cowboy hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9716, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9716 + }, "metadata_dict": { "mouth": "discomfort", "fur": "red", "background": "blue", "eyes": "3d", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9717, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9717 + }, "metadata_dict": { "clothes": "black holes t", "earring": "silver stud", @@ -115475,33 +144628,42 @@ "mouth": "bored", "background": "purple", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9718, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9718 + }, "metadata_dict": { "fur": "tan", "clothes": "smoking jacket", "background": "gray", "eyes": "sleepy", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9719, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9719 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "clothes": "black holes t", "fur": "black", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9720, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9720 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", @@ -115509,11 +144671,14 @@ "clothes": "cowboy shirt", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9721, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9721 + }, "metadata_dict": { "eyes": "coins", "earring": "silver hoop", @@ -115522,22 +144687,28 @@ "clothes": "bone necklace", "fur": "death bot", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9722, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9722 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", "fur": "dark brown", "hat": "bayc flipped brim", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9723, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9723 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -115545,22 +144716,28 @@ "mouth": "small grin", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9724, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9724 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "irish boho", "background": "blue", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9725, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9725 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "prison jumpsuit", @@ -115569,11 +144746,14 @@ "background": "gray", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9726, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9726 + }, "metadata_dict": { "background": "gray", "earring": "silver stud", @@ -115582,33 +144762,42 @@ "clothes": "bone necklace", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9727, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9727 + }, "metadata_dict": { "eyes": "closed", "clothes": "wool turtleneck", "fur": "black", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9728, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9728 + }, "metadata_dict": { "background": "new punk blue", "fur": "trippy", "mouth": "bored unshaven pipe", "hat": "spinner hat", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9729, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9729 + }, "metadata_dict": { "clothes": "lumberjack shirt", "eyes": "hypnotized", @@ -115616,22 +144805,28 @@ "background": "gray", "hat": "bunny ears", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9730, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9730 + }, "metadata_dict": { "mouth": "dumbfounded", "background": "purple", "hat": "safari", "fur": "white", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9731, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9731 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", @@ -115639,22 +144834,28 @@ "hat": "fisherman's hat", "fur": "brown", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9732, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9732 + }, "metadata_dict": { "clothes": "bayc t red", "eyes": "scumbag", "fur": "gray", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9733, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9733 + }, "metadata_dict": { "clothes": "black holes t", "mouth": "phoneme ooo", @@ -115663,22 +144864,28 @@ "background": "gray", "fur": "white", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9734, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9734 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "golden brown", "eyes": "bored", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9735, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9735 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -115686,11 +144893,14 @@ "eyes": "bored", "clothes": "bone necklace", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9736, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9736 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "smoking jacket", @@ -115698,11 +144908,14 @@ "eyes": "bored", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9737, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9737 + }, "metadata_dict": { "clothes": "wool turtleneck", "hat": "horns", @@ -115711,11 +144924,14 @@ "eyes": "bored", "fur": "brown", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9738, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9738 + }, "metadata_dict": { "background": "new punk blue", "eyes": "eyepatch", @@ -115723,11 +144939,14 @@ "earring": "silver stud", "mouth": "bored cigarette", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9739, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9739 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -115735,11 +144954,14 @@ "hat": "ww2 pilot helm", "clothes": "admirals coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9740, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9740 + }, "metadata_dict": { "mouth": "bored party horn", "hat": "fez", @@ -115747,11 +144969,14 @@ "clothes": "leather jacket", "eyes": "sleepy", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9741, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9741 + }, "metadata_dict": { "fur": "brown", "eyes": "bored", @@ -115759,11 +144984,14 @@ "mouth": "bored unshaven cigarette", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9742, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9742 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "jovial", @@ -115772,22 +145000,28 @@ "fur": "brown", "hat": "vietnam era helmet", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9743, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9743 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", "hat": "spinner hat", "background": "purple", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9744, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9744 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -115795,11 +145029,14 @@ "fur": "brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9745, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9745 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "dmt", @@ -115808,11 +145045,14 @@ "background": "gray", "hat": "vietnam era helmet", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9746, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9746 + }, "metadata_dict": { "mouth": "grin", "background": "aquamarine", @@ -115820,11 +145060,14 @@ "fur": "dark brown", "hat": "halo", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9747, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9747 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "rage", @@ -115832,11 +145075,14 @@ "clothes": "bayc t black", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9748, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9748 + }, "metadata_dict": { "clothes": "striped tee", "background": "yellow", @@ -115844,11 +145090,14 @@ "hat": "beanie", "mouth": "bored", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9749, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9749 + }, "metadata_dict": { "earring": "gold hoop", "background": "purple", @@ -115857,11 +145106,14 @@ "mouth": "bored", "hat": "police motorcycle helmet", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9750, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9750 + }, "metadata_dict": { "mouth": "phoneme l", "fur": "tan", @@ -115869,11 +145121,14 @@ "background": "aquamarine", "hat": "cowboy hat", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9751, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9751 + }, "metadata_dict": { "fur": "cream", "clothes": "space suit", @@ -115881,22 +145136,28 @@ "background": "purple", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9752, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9752 + }, "metadata_dict": { "hat": "seaman's hat", "fur": "brown", "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9753, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9753 + }, "metadata_dict": { "eyes": "heart", "hat": "irish boho", @@ -115904,11 +145165,14 @@ "background": "yellow", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9754, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9754 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "pink", @@ -115916,11 +145180,14 @@ "background": "purple", "mouth": "bored cigarette", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9755, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9755 + }, "metadata_dict": { "clothes": "space suit", "fur": "dmt", @@ -115929,11 +145196,14 @@ "earring": "silver hoop", "background": "gray", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9756, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9756 + }, "metadata_dict": { "eyes": "coins", "mouth": "bored pipe", @@ -115941,11 +145211,14 @@ "fur": "brown", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9757, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9757 + }, "metadata_dict": { "mouth": "phoneme l", "background": "gray", @@ -115953,21 +145226,27 @@ "clothes": "navy striped tee", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9758, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9758 + }, "metadata_dict": { "background": "orange", "eyes": "crazy", "fur": "robot", "mouth": "rage" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9759, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9759 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -115975,11 +145254,14 @@ "clothes": "smoking jacket", "eyes": "bloodshot", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9760, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9760 + }, "metadata_dict": { "fur": "cream", "hat": "fez", @@ -115987,11 +145269,14 @@ "mouth": "bored", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9761, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9761 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -116000,22 +145285,28 @@ "background": "gray", "eyes": "crazy", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9762, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9762 + }, "metadata_dict": { "fur": "cream", "hat": "king's crown", "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9763, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9763 + }, "metadata_dict": { "mouth": "phoneme l", "clothes": "striped tee", @@ -116023,11 +145314,14 @@ "fur": "gray", "background": "orange", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9764, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9764 + }, "metadata_dict": { "earring": "silver stud", "background": "blue", @@ -116035,11 +145329,14 @@ "fur": "brown", "eyes": "sleepy", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9765, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9765 + }, "metadata_dict": { "background": "new punk blue", "hat": "irish boho", @@ -116047,11 +145344,14 @@ "fur": "brown", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9766, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9766 + }, "metadata_dict": { "background": "aquamarine", "clothes": "work vest", @@ -116059,11 +145359,14 @@ "eyes": "bored", "hat": "bowler", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9767, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9767 + }, "metadata_dict": { "hat": "irish boho", "clothes": "bone tee", @@ -116072,11 +145375,14 @@ "background": "purple", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9768, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9768 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "rage", @@ -116084,11 +145390,14 @@ "hat": "army hat", "background": "army green", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9769, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9769 + }, "metadata_dict": { "hat": "horns", "eyes": "hypnotized", @@ -116096,22 +145405,28 @@ "fur": "dark brown", "clothes": "bone necklace", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9770, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9770 + }, "metadata_dict": { "eyes": "x eyes", "mouth": "grin multicolored", "fur": "dark brown", "hat": "bayc flipped brim", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9771, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9771 + }, "metadata_dict": { "fur": "cream", "hat": "horns", @@ -116119,11 +145434,14 @@ "clothes": "tuxedo tee", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9772, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9772 + }, "metadata_dict": { "eyes": "closed", "background": "gray", @@ -116132,21 +145450,27 @@ "mouth": "bored unshaven cigarette", "hat": "bowler", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9773, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9773 + }, "metadata_dict": { "mouth": "bored unshaven cigarette", "background": "yellow", "eyes": "bloodshot", "fur": "cream" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9774, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9774 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -116155,55 +145479,70 @@ "clothes": "lab coat", "background": "gray", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9775, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9775 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven pipe", "background": "orange", "hat": "bayc flipped brim", "fur": "cheetah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9776, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9776 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "fur": "golden brown", "hat": "bayc flipped brim", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9777, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9777 + }, "metadata_dict": { "eyes": "laser eyes", "fur": "cream", "mouth": "bored unshaven bubblegum", "clothes": "biker vest", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9778, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9778 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", "clothes": "rainbow suspenders", "background": "aquamarine", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9779, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9779 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "cream", @@ -116211,11 +145550,14 @@ "mouth": "grin", "clothes": "prison jumpsuit", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9780, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9780 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "beanie", @@ -116223,11 +145565,14 @@ "fur": "brown", "background": "yellow", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9781, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9781 + }, "metadata_dict": { "eyes": "x eyes", "hat": "party hat 2", @@ -116236,11 +145581,14 @@ "fur": "golden brown", "earring": "diamond stud", "background": "orange" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9782, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9782 + }, "metadata_dict": { "eyes": "coins", "mouth": "rage", @@ -116248,11 +145596,14 @@ "fur": "brown", "background": "yellow", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9783, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9783 + }, "metadata_dict": { "clothes": "sleeveless t", "fur": "black", @@ -116260,11 +145611,14 @@ "hat": "bayc flipped brim", "background": "purple", "mouth": "phoneme wah" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9784, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9784 + }, "metadata_dict": { "eyes": "closed", "clothes": "black holes t", @@ -116272,11 +145626,14 @@ "mouth": "bored pipe", "fur": "pink", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9785, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9785 + }, "metadata_dict": { "eyes": "coins", "background": "aquamarine", @@ -116285,11 +145642,14 @@ "fur": "brown", "mouth": "bored cigarette", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9786, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9786 + }, "metadata_dict": { "eyes": "closed", "mouth": "grin", @@ -116297,22 +145657,28 @@ "clothes": "guayabera", "hat": "commie hat", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9787, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9787 + }, "metadata_dict": { "background": "new punk blue", "hat": "bayc hat black", "fur": "tan", "mouth": "small grin", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9788, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9788 + }, "metadata_dict": { "clothes": "sailor shirt", "background": "aquamarine", @@ -116321,22 +145687,28 @@ "earring": "silver hoop", "mouth": "bored", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9789, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9789 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "black", "background": "orange", "clothes": "bone necklace", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9790, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9790 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -116344,11 +145716,14 @@ "clothes": "prison jumpsuit", "fur": "black", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9791, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9791 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -116356,43 +145731,55 @@ "clothes": "black t", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9792, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9792 + }, "metadata_dict": { "fur": "cream", "eyes": "robot", "hat": "ww2 pilot helm", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9793, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9793 + }, "metadata_dict": { "mouth": "grin", "background": "gray", "fur": "zombie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9794, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9794 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "coins", "background": "orange", "clothes": "tanktop", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9795, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9795 + }, "metadata_dict": { "mouth": "grin", "fur": "gray", @@ -116400,11 +145787,14 @@ "background": "blue", "hat": "bunny ears", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9796, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9796 + }, "metadata_dict": { "mouth": "bored unshaven pizza", "fur": "golden brown", @@ -116413,11 +145803,14 @@ "hat": "cowboy hat", "background": "gray", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9797, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9797 + }, "metadata_dict": { "mouth": "discomfort", "eyes": "closed", @@ -116425,11 +145818,14 @@ "earring": "silver stud", "background": "aquamarine", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9798, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9798 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "golden brown", @@ -116438,11 +145834,14 @@ "earring": "silver hoop", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9799, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9799 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -116450,11 +145849,14 @@ "fur": "dark brown", "hat": "army hat", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9800, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9800 + }, "metadata_dict": { "eyes": "closed", "fur": "tan", @@ -116462,11 +145864,14 @@ "clothes": "leather jacket", "background": "orange", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9801, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9801 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -116474,11 +145879,14 @@ "hat": "seaman's hat", "fur": "white", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9802, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9802 + }, "metadata_dict": { "hat": "bayc hat black", "background": "blue", @@ -116486,22 +145894,28 @@ "eyes": "bored", "mouth": "bored", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9803, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9803 + }, "metadata_dict": { "background": "aquamarine", "fur": "brown", "hat": "beanie", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9804, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9804 + }, "metadata_dict": { "fur": "cream", "clothes": "sleeveless t", @@ -116509,11 +145923,14 @@ "background": "gray", "eyes": "sleepy", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9805, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9805 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "cream", @@ -116522,33 +145939,42 @@ "hat": "cowboy hat", "background": "yellow", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9806, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9806 + }, "metadata_dict": { "eyes": "heart", "mouth": "bored kazoo", "fur": "cream", "background": "orange", "clothes": "toga" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9807, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9807 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", "background": "gray", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9808, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9808 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -116556,11 +145982,14 @@ "clothes": "leather jacket", "eyes": "bloodshot", "hat": "safari" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9809, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9809 + }, "metadata_dict": { "mouth": "grin diamond grill", "earring": "silver stud", @@ -116568,22 +145997,28 @@ "background": "orange", "eyes": "bloodshot", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9810, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9810 + }, "metadata_dict": { "fur": "black", "earring": "silver hoop", "eyes": "bored", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9811, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9811 + }, "metadata_dict": { "fur": "cream", "hat": "fez", @@ -116591,11 +146026,14 @@ "eyes": "bloodshot", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9812, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9812 + }, "metadata_dict": { "eyes": "closed", "mouth": "rage", @@ -116603,11 +146041,14 @@ "clothes": "biker vest", "hat": "short mohawk", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9813, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9813 + }, "metadata_dict": { "mouth": "phoneme l", "hat": "fez", @@ -116615,11 +146056,14 @@ "background": "yellow", "fur": "robot", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9814, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9814 + }, "metadata_dict": { "fur": "golden brown", "clothes": "tweed suit", @@ -116628,11 +146072,14 @@ "mouth": "bored unshaven cigar", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9815, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9815 + }, "metadata_dict": { "background": "blue", "mouth": "bored unshaven kazoo", @@ -116640,22 +146087,28 @@ "clothes": "lab coat", "fur": "cheetah", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9816, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9816 + }, "metadata_dict": { "fur": "cream", "mouth": "bored unshaven kazoo", "hat": "fisherman's hat", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9817, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9817 + }, "metadata_dict": { "eyes": "closed", "fur": "golden brown", @@ -116664,11 +146117,14 @@ "hat": "spinner hat", "earring": "gold stud", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9818, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9818 + }, "metadata_dict": { "mouth": "bored dagger", "hat": "short mohawk", @@ -116676,11 +146132,14 @@ "fur": "cheetah", "background": "army green", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9819, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9819 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "lumberjack shirt", @@ -116688,22 +146147,28 @@ "background": "blue", "fur": "black", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9820, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9820 + }, "metadata_dict": { "eyes": "coins", "fur": "red", "background": "blue", "clothes": "lab coat", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9821, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9821 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "hypnotized", @@ -116711,22 +146176,28 @@ "background": "gray", "hat": "commie hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9822, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9822 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", "hat": "sushi chef headband", "eyes": "hypnotized", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9823, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9823 + }, "metadata_dict": { "eyes": "x eyes", "clothes": "prison jumpsuit", @@ -116734,22 +146205,28 @@ "mouth": "small grin", "background": "yellow", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9824, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9824 + }, "metadata_dict": { "eyes": "blindfold", "clothes": "tie dye", "fur": "brown", "background": "purple", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9825, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9825 + }, "metadata_dict": { "background": "new punk blue", "hat": "horns", @@ -116757,11 +146234,14 @@ "clothes": "rainbow suspenders", "fur": "brown", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9826, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9826 + }, "metadata_dict": { "fur": "golden brown", "eyes": "zombie", @@ -116769,11 +146249,14 @@ "mouth": "bored", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9827, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9827 + }, "metadata_dict": { "clothes": "striped tee", "eyes": "hypnotized", @@ -116781,22 +146264,28 @@ "background": "purple", "hat": "police motorcycle helmet", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9828, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9828 + }, "metadata_dict": { "eyes": "closed", "hat": "army hat", "mouth": "tongue out", "background": "purple", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9829, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9829 + }, "metadata_dict": { "fur": "golden brown", "eyes": "coins", @@ -116804,11 +146293,14 @@ "mouth": "rage", "background": "yellow", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9830, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9830 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "blue", @@ -116817,11 +146309,14 @@ "hat": "bayc flipped brim", "eyes": "angry", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9831, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9831 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -116829,11 +146324,14 @@ "eyes": "bloodshot", "hat": "bowler", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9832, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9832 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", @@ -116842,11 +146340,14 @@ "hat": "faux hawk", "clothes": "stunt jacket", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9833, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9833 + }, "metadata_dict": { "eyes": "blindfold", "mouth": "jovial", @@ -116854,11 +146355,14 @@ "hat": "commie hat", "fur": "zombie", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9834, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9834 + }, "metadata_dict": { "clothes": "leather punk jacket", "fur": "gray", @@ -116867,11 +146371,14 @@ "hat": "faux hawk", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9835, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9835 + }, "metadata_dict": { "background": "blue", "eyes": "bored", @@ -116879,22 +146386,28 @@ "clothes": "tanktop", "mouth": "bored", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9836, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9836 + }, "metadata_dict": { "background": "new punk blue", "mouth": "bored unshaven", "hat": "spinner hat", "fur": "pink", "eyes": "bloodshot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9837, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9837 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "bored unshaven", @@ -116902,11 +146415,14 @@ "fur": "black", "background": "purple", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9838, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9838 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -116914,33 +146430,42 @@ "eyes": "bored", "earring": "silver hoop", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9839, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9839 + }, "metadata_dict": { "fur": "golden brown", "clothes": "lab coat", "background": "purple", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9840, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9840 + }, "metadata_dict": { "fur": "gray", "mouth": "bored unshaven pipe", "background": "orange", "eyes": "bored", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9841, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9841 + }, "metadata_dict": { "mouth": "phoneme oh", "fur": "gray", @@ -116948,11 +146473,14 @@ "hat": "beanie", "earring": "cross", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9842, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9842 + }, "metadata_dict": { "hat": "baby's bonnet", "fur": "red", @@ -116960,11 +146488,14 @@ "eyes": "bored", "clothes": "guayabera", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9843, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9843 + }, "metadata_dict": { "fur": "golden brown", "mouth": "bored unshaven kazoo", @@ -116972,11 +146503,14 @@ "background": "gray", "hat": "bowler", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9844, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9844 + }, "metadata_dict": { "clothes": "leather punk jacket", "background": "blue", @@ -116984,22 +146518,28 @@ "mouth": "bored", "eyes": "angry", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9845, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9845 + }, "metadata_dict": { "mouth": "phoneme l", "eyes": "coins", "background": "blue", "fur": "pink", "clothes": "tuxedo tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9846, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9846 + }, "metadata_dict": { "clothes": "striped tee", "mouth": "grin", @@ -117007,11 +146547,14 @@ "background": "aquamarine", "fur": "black", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9847, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9847 + }, "metadata_dict": { "background": "new punk blue", "clothes": "sleeveless t", @@ -117019,11 +146562,14 @@ "hat": "girl's hair pink", "mouth": "bored", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9848, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9848 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "tan", @@ -117031,22 +146577,28 @@ "background": "purple", "mouth": "bored", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9849, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9849 + }, "metadata_dict": { "hat": "baby's bonnet", "mouth": "bored unshaven pipe", "fur": "black", "eyes": "bloodshot", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9850, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9850 + }, "metadata_dict": { "mouth": "grin multicolored", "background": "purple", @@ -117054,22 +146606,28 @@ "hat": "girl's hair short", "eyes": "sleepy", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9851, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9851 + }, "metadata_dict": { "eyes": "closed", "fur": "cheetah", "background": "aquamarine", "clothes": "bayc t black", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9852, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9852 + }, "metadata_dict": { "hat": "baby's bonnet", "earring": "diamond stud", @@ -117077,22 +146635,28 @@ "fur": "dark brown", "mouth": "bored unshaven cigarette", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9853, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9853 + }, "metadata_dict": { "background": "new punk blue", "fur": "black", "hat": "army hat", "mouth": "bored", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9854, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9854 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "laser eyes", @@ -117100,21 +146664,27 @@ "fur": "pink", "background": "army green", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9855, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9855 + }, "metadata_dict": { "eyes": "eyepatch", "background": "yellow", "mouth": "bored", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9856, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9856 + }, "metadata_dict": { "background": "new punk blue", "clothes": "bandolier", @@ -117122,22 +146692,28 @@ "fur": "dark brown", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9857, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9857 + }, "metadata_dict": { "clothes": "wool turtleneck", "mouth": "grin", "fur": "black", "background": "gray", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9858, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9858 + }, "metadata_dict": { "background": "new punk blue", "hat": "bandana blue", @@ -117146,21 +146722,27 @@ "fur": "brown", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9859, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9859 + }, "metadata_dict": { "background": "purple", "eyes": "crazy", "fur": "blue", "mouth": "grin multicolored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9860, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9860 + }, "metadata_dict": { "fur": "golden brown", "hat": "girl's hair pink", @@ -117168,11 +146750,14 @@ "eyes": "sleepy", "mouth": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9861, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9861 + }, "metadata_dict": { "clothes": "tweed suit", "hat": "fez", @@ -117180,11 +146765,14 @@ "eyes": "blue beams", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9862, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9862 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "blue dress", @@ -117192,11 +146780,14 @@ "hat": "police motorcycle helmet", "fur": "blue", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9863, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9863 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "dumbfounded", @@ -117205,11 +146796,14 @@ "clothes": "smoking jacket", "fur": "pink", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9864, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9864 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "grin", @@ -117217,11 +146811,14 @@ "eyes": "bored", "fur": "brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9865, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9865 + }, "metadata_dict": { "mouth": "rage", "eyes": "3d", @@ -117229,11 +146826,14 @@ "earring": "silver hoop", "hat": "faux hawk", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9866, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9866 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "jovial", @@ -117241,11 +146841,14 @@ "hat": "commie hat", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9867, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9867 + }, "metadata_dict": { "eyes": "heart", "clothes": "wool turtleneck", @@ -117254,11 +146857,14 @@ "hat": "bowler", "earring": "cross", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9868, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9868 + }, "metadata_dict": { "mouth": "phoneme oh", "clothes": "black holes t", @@ -117267,11 +146873,14 @@ "fur": "brown", "hat": "safari", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9869, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9869 + }, "metadata_dict": { "mouth": "phoneme vuh", "background": "orange", @@ -117279,11 +146888,14 @@ "eyes": "bored", "fur": "death bot", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9870, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9870 + }, "metadata_dict": { "eyes": "holographic", "fur": "cream", @@ -117291,11 +146903,14 @@ "background": "orange", "clothes": "prom dress", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9871, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9871 + }, "metadata_dict": { "clothes": "bone necklace", "mouth": "phoneme vuh", @@ -117303,11 +146918,14 @@ "background": "yellow", "fur": "death bot", "hat": "commie hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9872, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9872 + }, "metadata_dict": { "hat": "seaman's hat", "mouth": "jovial", @@ -117315,11 +146933,14 @@ "fur": "brown", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9873, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9873 + }, "metadata_dict": { "clothes": "leather punk jacket", "mouth": "grin", @@ -117327,22 +146948,28 @@ "background": "blue", "fur": "dark brown", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9874, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9874 + }, "metadata_dict": { "clothes": "sleeveless t", "background": "gray", "eyes": "hypnotized", "mouth": "jovial", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9875, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9875 + }, "metadata_dict": { "clothes": "lab coat", "mouth": "phoneme vuh", @@ -117350,11 +146977,14 @@ "fur": "noise", "hat": "fisherman's hat", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9876, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9876 + }, "metadata_dict": { "background": "new punk blue", "fur": "noise", @@ -117362,11 +146992,14 @@ "hat": "army hat", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9877, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9877 + }, "metadata_dict": { "eyes": "blindfold", "fur": "gray", @@ -117374,11 +147007,14 @@ "mouth": "phoneme vuh", "earring": "silver stud", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9878, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9878 + }, "metadata_dict": { "hat": "horns", "clothes": "black holes t", @@ -117386,11 +147022,14 @@ "mouth": "jovial", "fur": "black", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9879, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9879 + }, "metadata_dict": { "clothes": "black holes t", "fur": "gray", @@ -117398,11 +147037,14 @@ "mouth": "bored", "hat": "police motorcycle helmet", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9880, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9880 + }, "metadata_dict": { "clothes": "sleeveless t", "mouth": "dumbfounded", @@ -117411,11 +147053,14 @@ "background": "yellow", "earring": "cross", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9881, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9881 + }, "metadata_dict": { "earring": "gold hoop", "mouth": "phoneme vuh", @@ -117424,11 +147069,14 @@ "hat": "army hat", "eyes": "bored", "fur": "death bot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9882, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9882 + }, "metadata_dict": { "eyes": "heart", "clothes": "black holes t", @@ -117436,22 +147084,28 @@ "fur": "brown", "background": "yellow", "earring": "cross" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9883, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9883 + }, "metadata_dict": { "fur": "gray", "clothes": "black t", "background": "orange", "eyes": "bored", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9884, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9884 + }, "metadata_dict": { "fur": "gray", "clothes": "lab coat", @@ -117459,11 +147113,14 @@ "hat": "bowler", "mouth": "bored", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9885, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9885 + }, "metadata_dict": { "eyes": "eyepatch", "fur": "golden brown", @@ -117472,11 +147129,14 @@ "hat": "army hat", "mouth": "bored unshaven cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9886, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9886 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -117484,11 +147144,14 @@ "hat": "army hat", "clothes": "bone necklace", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9887, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9887 + }, "metadata_dict": { "hat": "bayc hat black", "eyes": "closed", @@ -117497,11 +147160,14 @@ "earring": "cross", "mouth": "bored", "clothes": "hip hop" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9888, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9888 + }, "metadata_dict": { "hat": "fez", "eyes": "3d", @@ -117509,11 +147175,14 @@ "clothes": "tuxedo tee", "mouth": "bored unshaven cigar", "background": "gray" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9889, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9889 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "bandolier", @@ -117521,11 +147190,14 @@ "eyes": "3d", "mouth": "small grin", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9890, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9890 + }, "metadata_dict": { "fur": "tan", "clothes": "rainbow suspenders", @@ -117533,11 +147205,14 @@ "background": "purple", "mouth": "bored cigar", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9891, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9891 + }, "metadata_dict": { "hat": "bayc hat black", "mouth": "bored unshaven", @@ -117545,11 +147220,14 @@ "fur": "black", "background": "purple", "eyes": "angry" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9892, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9892 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "party hat 1", @@ -117557,11 +147235,14 @@ "eyes": "bored", "background": "gray", "clothes": "stunt jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9893, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9893 + }, "metadata_dict": { "fur": "gray", "mouth": "jovial", @@ -117569,11 +147250,14 @@ "eyes": "bored", "clothes": "sleeveless logo t", "hat": "police motorcycle helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9894, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9894 + }, "metadata_dict": { "mouth": "grin", "fur": "golden brown", @@ -117581,11 +147265,14 @@ "eyes": "bored", "hat": "commie hat", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9895, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9895 + }, "metadata_dict": { "fur": "blue", "hat": "horns", @@ -117594,11 +147281,14 @@ "earring": "silver hoop", "clothes": "hip hop", "eyes": "cyborg" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9896, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9896 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "prussian helmet", @@ -117606,11 +147296,14 @@ "clothes": "pimp coat", "fur": "brown", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9897, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9897 + }, "metadata_dict": { "background": "new punk blue", "eyes": "x eyes", @@ -117619,11 +147312,14 @@ "earring": "silver stud", "mouth": "bored", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9898, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9898 + }, "metadata_dict": { "background": "aquamarine", "fur": "black", @@ -117632,22 +147328,28 @@ "hat": "fisherman's hat", "mouth": "bored unshaven cigarette", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9899, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9899 + }, "metadata_dict": { "mouth": "phoneme ooo", "background": "aquamarine", "fur": "dark brown", "eyes": "angry", "clothes": "bone tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9900, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9900 + }, "metadata_dict": { "fur": "dark brown", "hat": "bayc flipped brim", @@ -117655,11 +147357,14 @@ "eyes": "bored", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9901, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9901 + }, "metadata_dict": { "clothes": "tie dye", "mouth": "bored unshaven kazoo", @@ -117667,11 +147372,14 @@ "hat": "cowboy hat", "background": "purple", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9902, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9902 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "cream", @@ -117679,11 +147387,14 @@ "hat": "fez", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9903, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9903 + }, "metadata_dict": { "clothes": "kings robe", "fur": "tan", @@ -117691,32 +147402,41 @@ "hat": "cowboy hat", "background": "yellow", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9904, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9904 + }, "metadata_dict": { "eyes": "scumbag", "clothes": "black t", "background": "aquamarine", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9905, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9905 + }, "metadata_dict": { "fur": "brown", "eyes": "sleepy", "background": "purple", "mouth": "phoneme vuh" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9906, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9906 + }, "metadata_dict": { "earring": "silver stud", "fur": "black", @@ -117725,11 +147445,14 @@ "background": "purple", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9907, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9907 + }, "metadata_dict": { "eyes": "x eyes", "fur": "cream", @@ -117737,11 +147460,14 @@ "background": "aquamarine", "earring": "silver hoop", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9908, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9908 + }, "metadata_dict": { "mouth": "grin", "clothes": "work vest", @@ -117749,11 +147475,14 @@ "eyes": "bloodshot", "fur": "dark brown", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9909, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9909 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "hypnotized", @@ -117761,11 +147490,14 @@ "fur": "black", "clothes": "admirals coat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9910, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9910 + }, "metadata_dict": { "eyes": "x eyes", "hat": "seaman's hat", @@ -117774,33 +147506,42 @@ "fur": "dark brown", "earring": "silver hoop", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9911, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9911 + }, "metadata_dict": { "fur": "brown", "background": "aquamarine", "eyes": "bored", "mouth": "bored unshaven cigarette", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9912, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9912 + }, "metadata_dict": { "background": "orange", "fur": "dark brown", "mouth": "bored cigarette", "clothes": "service", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9913, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9913 + }, "metadata_dict": { "eyes": "closed", "hat": "bayc flipped brim", @@ -117808,11 +147549,14 @@ "background": "gray", "mouth": "bored", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9914, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9914 + }, "metadata_dict": { "hat": "sea captain's hat", "clothes": "cowboy shirt", @@ -117820,11 +147564,14 @@ "background": "army green", "fur": "blue", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9915, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9915 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "blindfold", @@ -117833,21 +147580,27 @@ "background": "orange", "hat": "cowboy hat", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9916, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9916 + }, "metadata_dict": { "mouth": "grin", "background": "yellow", "eyes": "bloodshot", "fur": "dark brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9917, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9917 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "seaman's hat", @@ -117855,44 +147608,56 @@ "eyes": "3d", "fur": "brown", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9918, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9918 + }, "metadata_dict": { "hat": "fez", "background": "orange", "eyes": "bored", "mouth": "bored", "fur": "robot" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9919, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9919 + }, "metadata_dict": { "fur": "tan", "eyes": "blindfold", "mouth": "jovial", "background": "blue", "hat": "cowboy hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9920, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9920 + }, "metadata_dict": { "clothes": "kings robe", "background": "gray", "mouth": "jovial", "eyes": "bored", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9921, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9921 + }, "metadata_dict": { "eyes": "3d", "background": "yellow", @@ -117900,11 +147665,14 @@ "clothes": "hip hop", "hat": "halo", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9922, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9922 + }, "metadata_dict": { "eyes": "heart", "clothes": "sleeveless t", @@ -117912,11 +147680,14 @@ "background": "army green", "fur": "blue", "hat": "sea captain's hat" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9923, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9923 + }, "metadata_dict": { "fur": "black", "eyes": "bored", @@ -117924,11 +147695,14 @@ "clothes": "prom dress", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9924, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9924 + }, "metadata_dict": { "hat": "s&m hat", "fur": "golden brown", @@ -117937,22 +147711,28 @@ "mouth": "bored", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9925, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9925 + }, "metadata_dict": { "background": "new punk blue", "mouth": "grin", "eyes": "coins", "clothes": "smoking jacket", "fur": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9926, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9926 + }, "metadata_dict": { "background": "new punk blue", "mouth": "discomfort", @@ -117960,11 +147740,14 @@ "hat": "fez", "clothes": "work vest", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9927, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9927 + }, "metadata_dict": { "eyes": "closed", "mouth": "phoneme oh", @@ -117972,22 +147755,28 @@ "clothes": "black holes t", "background": "aquamarine", "hat": "ww2 pilot helm" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9928, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9928 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "orange", "fur": "dark brown", "eyes": "bored", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9929, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9929 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "horns", @@ -117996,11 +147785,14 @@ "fur": "dark brown", "eyes": "crazy", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9930, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9930 + }, "metadata_dict": { "eyes": "zombie", "background": "blue", @@ -118008,11 +147800,14 @@ "clothes": "smoking jacket", "mouth": "small grin", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9931, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9931 + }, "metadata_dict": { "eyes": "heart", "background": "aquamarine", @@ -118020,11 +147815,14 @@ "mouth": "bored", "fur": "zombie", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9932, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9932 + }, "metadata_dict": { "fur": "cream", "mouth": "grin diamond grill", @@ -118033,11 +147831,14 @@ "earring": "silver hoop", "hat": "bowler", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9933, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9933 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -118045,11 +147846,14 @@ "hat": "cowboy hat", "clothes": "prom dress", "fur": "white" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9934, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9934 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "golden brown", @@ -118058,11 +147862,14 @@ "background": "aquamarine", "eyes": "bloodshot", "hat": "short mohawk" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9935, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9935 + }, "metadata_dict": { "mouth": "bored cigarette", "fur": "black", @@ -118070,11 +147877,14 @@ "hat": "fisherman's hat", "clothes": "navy striped tee", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9936, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9936 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -118083,11 +147893,14 @@ "background": "aquamarine", "eyes": "robot", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9937, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9937 + }, "metadata_dict": { "hat": "horns", "mouth": "grin", @@ -118096,22 +147909,28 @@ "background": "gray", "clothes": "hawaiian", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9938, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9938 + }, "metadata_dict": { "mouth": "bored unshaven", "background": "gray", "fur": "dark brown", "clothes": "sleeveless logo t", "eyes": "crazy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9939, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9939 + }, "metadata_dict": { "mouth": "bored unshaven", "earring": "gold hoop", @@ -118120,11 +147939,14 @@ "clothes": "cowboy shirt", "fur": "pink", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9940, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9940 + }, "metadata_dict": { "hat": "bayc hat black", "clothes": "space suit", @@ -118132,33 +147954,42 @@ "fur": "dark brown", "eyes": "bored", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9941, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9941 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "hat": "stuntman helmet", "eyes": "bloodshot", "mouth": "bored unshaven dagger" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9942, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9942 + }, "metadata_dict": { "hat": "horns", "mouth": "bored unshaven party horn", "fur": "black", "eyes": "bloodshot", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9943, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9943 + }, "metadata_dict": { "clothes": "black suit", "mouth": "rage", @@ -118166,11 +147997,14 @@ "fur": "brown", "hat": "beanie", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9944, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9944 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -118178,33 +148012,42 @@ "eyes": "bored", "background": "yellow", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9945, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9945 + }, "metadata_dict": { "hat": "laurel wreath", "mouth": "grin", "fur": "dark brown", "background": "yellow", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9946, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9946 + }, "metadata_dict": { "background": "new punk blue", "fur": "golden brown", "hat": "sea captain's hat", "mouth": "phoneme vuh", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9947, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9947 + }, "metadata_dict": { "hat": "girl's hair pink", "earring": "silver stud", @@ -118213,11 +148056,14 @@ "clothes": "sleeveless logo t", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9948, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9948 + }, "metadata_dict": { "hat": "trippy captain's hat", "fur": "cream", @@ -118225,11 +148071,14 @@ "mouth": "tongue out", "background": "purple", "clothes": "navy striped tee" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9949, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9949 + }, "metadata_dict": { "mouth": "grin gold grill", "fur": "tan", @@ -118237,22 +148086,28 @@ "eyes": "3d", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9950, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9950 + }, "metadata_dict": { "background": "new punk blue", "fur": "dark brown", "mouth": "bored", "eyes": "crazy", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9951, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9951 + }, "metadata_dict": { "mouth": "bored unshaven", "hat": "s&m hat", @@ -118260,11 +148115,14 @@ "clothes": "biker vest", "fur": "white", "eyes": "sunglasses" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9952, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9952 + }, "metadata_dict": { "clothes": "cowboy shirt", "fur": "black", @@ -118272,11 +148130,14 @@ "eyes": "bored", "hat": "bowler", "background": "purple" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9953, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9953 + }, "metadata_dict": { "eyes": "eyepatch", "mouth": "bored unshaven", @@ -118284,11 +148145,14 @@ "fur": "red", "hat": "fisherman's hat", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9954, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9954 + }, "metadata_dict": { "mouth": "phoneme ooo", "clothes": "sleeveless logo t", @@ -118296,11 +148160,14 @@ "eyes": "robot", "background": "gray", "hat": "beanie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9955, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9955 + }, "metadata_dict": { "clothes": "kings robe", "mouth": "bored cigar", @@ -118308,11 +148175,14 @@ "earring": "silver stud", "eyes": "bored", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9956, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9956 + }, "metadata_dict": { "fur": "golden brown", "earring": "silver stud", @@ -118320,11 +148190,14 @@ "hat": "bayc hat red", "eyes": "sleepy", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9957, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9957 + }, "metadata_dict": { "mouth": "grin", "eyes": "bloodshot", @@ -118332,11 +148205,14 @@ "hat": "beanie", "background": "purple", "clothes": "hawaiian" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9958, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9958 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -118345,11 +148221,14 @@ "background": "blue", "hat": "short mohawk", "clothes": "puffy vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9959, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9959 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "small grin", @@ -118357,11 +148236,14 @@ "background": "yellow", "clothes": "stunt jacket", "fur": "zombie" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9960, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9960 + }, "metadata_dict": { "background": "new punk blue", "fur": "tan", @@ -118369,22 +148251,28 @@ "eyes": "bloodshot", "clothes": "pimp coat", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9961, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9961 + }, "metadata_dict": { "eyes": "closed", "hat": "seaman's hat", "fur": "gray", "background": "aquamarine", "mouth": "bored unshaven cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9962, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9962 + }, "metadata_dict": { "eyes": "closed", "hat": "sushi chef headband", @@ -118393,11 +148281,14 @@ "earring": "silver hoop", "fur": "brown", "clothes": "caveman pelt" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9963, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9963 + }, "metadata_dict": { "eyes": "closed", "mouth": "bored unshaven", @@ -118406,11 +148297,14 @@ "background": "aquamarine", "earring": "gold stud", "clothes": "biker vest" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9964, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9964 + }, "metadata_dict": { "eyes": "x eyes", "fur": "golden brown", @@ -118418,22 +148312,28 @@ "background": "blue", "hat": "fisherman's hat", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9965, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9965 + }, "metadata_dict": { "fur": "golden brown", "mouth": "rage", "eyes": "3d", "background": "orange", "clothes": "service" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9966, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9966 + }, "metadata_dict": { "mouth": "dumbfounded", "fur": "pink", @@ -118441,11 +148341,14 @@ "hat": "army hat", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9967, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9967 + }, "metadata_dict": { "fur": "golden brown", "clothes": "toga", @@ -118453,11 +148356,14 @@ "hat": "army hat", "mouth": "bored pizza", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9968, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9968 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -118465,11 +148371,14 @@ "earring": "silver stud", "background": "blue", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9969, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9969 + }, "metadata_dict": { "eyes": "heart", "hat": "seaman's hat", @@ -118477,11 +148386,14 @@ "fur": "dark brown", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9970, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9970 + }, "metadata_dict": { "fur": "tan", "mouth": "bored unshaven", @@ -118490,11 +148402,14 @@ "hat": "girl's hair short", "background": "gray", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9971, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9971 + }, "metadata_dict": { "eyes": "closed", "fur": "dark brown", @@ -118502,33 +148417,42 @@ "hat": "cowboy hat", "background": "yellow", "mouth": "bored cigarette" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9972, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9972 + }, "metadata_dict": { "eyes": "hypnotized", "mouth": "rage", "background": "aquamarine", "fur": "brown", "hat": "bunny ears" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9973, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9973 + }, "metadata_dict": { "fur": "dmt", "hat": "girl's hair pink", "eyes": "robot", "background": "yellow", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9974, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9974 + }, "metadata_dict": { "eyes": "eyepatch", "hat": "seaman's hat", @@ -118537,22 +148461,28 @@ "fur": "dark brown", "earring": "silver hoop", "mouth": "tongue out" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9975, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9975 + }, "metadata_dict": { "eyes": "scumbag", "mouth": "bored pipe", "background": "blue", "hat": "fisherman's hat", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9976, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9976 + }, "metadata_dict": { "earring": "silver stud", "hat": "spinner hat", @@ -118561,11 +148491,14 @@ "background": "gray", "clothes": "stunt jacket", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9977, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9977 + }, "metadata_dict": { "background": "new punk blue", "eyes": "blindfold", @@ -118573,11 +148506,14 @@ "mouth": "jovial", "clothes": "leather jacket", "earring": "gold stud" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9978, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9978 + }, "metadata_dict": { "fur": "tan", "mouth": "grin multicolored", @@ -118585,33 +148521,42 @@ "hat": "bayc flipped brim", "eyes": "angry", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9979, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9979 + }, "metadata_dict": { "mouth": "bored bubblegum", "hat": "bunny ears", "fur": "white", "background": "army green", "eyes": "wide eyed" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9980, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9980 + }, "metadata_dict": { "eyes": "heart", "fur": "golden brown", "mouth": "bored unshaven party horn", "earring": "silver stud", "background": "blue" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9981, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9981 + }, "metadata_dict": { "mouth": "discomfort", "clothes": "sleeveless t", @@ -118620,11 +148565,14 @@ "background": "blue", "hat": "short mohawk", "fur": "brown" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9982, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9982 + }, "metadata_dict": { "mouth": "bored unshaven", "clothes": "sleeveless t", @@ -118632,11 +148580,14 @@ "fur": "golden brown", "background": "yellow", "eyes": "sleepy" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9983, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9983 + }, "metadata_dict": { "mouth": "bored unshaven", "fur": "gray", @@ -118644,22 +148595,28 @@ "hat": "beanie", "clothes": "guayabera", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9984, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9984 + }, "metadata_dict": { "eyes": "hypnotized", "background": "aquamarine", "hat": "bayc flipped brim", "fur": "cheetah", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9985, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9985 + }, "metadata_dict": { "hat": "bayc hat black", "fur": "tan", @@ -118667,11 +148624,14 @@ "background": "aquamarine", "earring": "silver hoop", "mouth": "bored cigar" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9986, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9986 + }, "metadata_dict": { "background": "new punk blue", "mouth": "phoneme oh", @@ -118679,22 +148639,28 @@ "eyes": "bored", "fur": "brown", "hat": "vietnam era helmet" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9987, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9987 + }, "metadata_dict": { "hat": "horns", "fur": "dmt", "background": "aquamarine", "eyes": "bored", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9988, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9988 + }, "metadata_dict": { "background": "yellow", "fur": "black", @@ -118702,11 +148668,14 @@ "mouth": "bored", "clothes": "hip hop", "eyes": "sad" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9989, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9989 + }, "metadata_dict": { "background": "new punk blue", "fur": "red", @@ -118714,11 +148683,14 @@ "hat": "faux hawk", "eyes": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9990, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9990 + }, "metadata_dict": { "background": "new punk blue", "eyes": "zombie", @@ -118727,11 +148699,14 @@ "earring": "cross", "mouth": "bored", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9991, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9991 + }, "metadata_dict": { "hat": "laurel wreath", "fur": "golden brown", @@ -118739,11 +148714,14 @@ "background": "blue", "mouth": "bored", "clothes": "vietnam jacket" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9992, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9992 + }, "metadata_dict": { "hat": "king's crown", "clothes": "tuxedo tee", @@ -118751,21 +148729,27 @@ "fur": "cheetah", "background": "purple", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9993, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9993 + }, "metadata_dict": { "background": "gray", "mouth": "bored", "fur": "white", "eyes": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9994, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9994 + }, "metadata_dict": { "eyes": "closed", "clothes": "striped tee", @@ -118774,22 +148758,28 @@ "hat": "vietnam era helmet", "mouth": "bored cigarette", "background": "army green" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9995, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9995 + }, "metadata_dict": { "eyes": "closed", "clothes": "smoking jacket", "fur": "pink", "background": "gray", "mouth": "bored" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9996, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9996 + }, "metadata_dict": { "background": "new punk blue", "mouth": "dumbfounded", @@ -118797,11 +148787,14 @@ "fur": "dark brown", "earring": "silver hoop", "clothes": "guayabera" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9997, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9997 + }, "metadata_dict": { "mouth": "grin multicolored", "clothes": "sailor shirt", @@ -118809,22 +148802,28 @@ "eyes": "bored", "background": "purple", "hat": "halo" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9998, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9998 + }, "metadata_dict": { "eyes": "heart", "clothes": "bayc t red", "mouth": "bored unshaven cigarette", "fur": "brown", "background": "yellow" - } + }, + "token_standard": "ERC721" }, { - "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "token_id": 9999, + "token_identifier": { + "contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", + "token_id": 9999 + }, "metadata_dict": { "mouth": "bored unshaven", "eyes": "scumbag", @@ -118832,6 +148831,7 @@ "fur": "gray", "hat": "army hat", "background": "purple" - } + }, + "token_standard": "ERC721" } ] diff --git a/open_rarity/models/token_identifier.py b/open_rarity/models/token_identifier.py index 2957d5e..3c11716 100644 --- a/open_rarity/models/token_identifier.py +++ b/open_rarity/models/token_identifier.py @@ -70,6 +70,6 @@ def to_dict(self) -> dict: def get_identifier_class_from_dict(data_dict: dict) -> TokenIdentifier: return ( EVMContractTokenIdentifier - if "token_id" in data_dict["token_identifier"] + if "token_id" in data_dict else SolanaMintAddressTokenIdentifier ) diff --git a/open_rarity/resolver/rarity_providers/external_rarity_provider.py b/open_rarity/resolver/rarity_providers/external_rarity_provider.py index 95d89e1..2b78802 100644 --- a/open_rarity/resolver/rarity_providers/external_rarity_provider.py +++ b/open_rarity/resolver/rarity_providers/external_rarity_provider.py @@ -398,7 +398,7 @@ def _add_rarity_sniffer_rarity_data( self._rarity_sniffer_state[contract_address] ) logger.debug( - f"Fetched {num_tokens} token ranks from rarity sniffer" + f"Fetched {num_tokens} token ranks from rarity sniffer API" ) except Exception: logger.exception("Failed to resolve token_ids Rarity Sniffer") @@ -423,9 +423,6 @@ def _add_rarity_sniffer_rarity_data( token_with_rarity.rarities.append( RarityData(provider=rank_provider, rank=rank) ) - logger.debug( - f"Fetched Rarity Sniffer rank for {slug=} {token_id}: {rank}" - ) return tokens_with_rarity @@ -440,7 +437,9 @@ def _add_rarity_sniper_rarity_data( slug = get_rarity_sniper_slug(opensea_slug=opensea_slug) rank_provider = RankProvider.RARITY_SNIPER if cache_external_ranks: - self._load_cache_from_file(slug=slug, rank_provider=rank_provider) + self._load_cache_from_file( + slug=opensea_slug, rank_provider=rank_provider + ) for token_with_rarity in tokens_with_rarity: token = token_with_rarity.token @@ -451,7 +450,9 @@ def _add_rarity_sniper_rarity_data( try: rank = self._get_cached_rank( - slug=slug, rank_provider=rank_provider, token_id=token_id + slug=opensea_slug, + rank_provider=rank_provider, + token_id=token_id, ) or fetch_rarity_sniper_rank_for_evm_token( collection_slug=slug, token_id=token_id ) @@ -460,7 +461,8 @@ def _add_rarity_sniper_rarity_data( continue logger.debug( - f"Resolved rarity sniper rarity for {slug=} {token_id=}: {rank}" + "Resolved rarity sniper rarity for " + f"{opensea_slug=}/{slug=} {token_id=}: {rank}" ) token_with_rarity.rarities.append( RarityData(provider=rank_provider, rank=rank) @@ -468,7 +470,7 @@ def _add_rarity_sniper_rarity_data( # Write to cache if cache_external_ranks: - self._get_provider_rank_cache(slug, rank_provider)[ + self._get_provider_rank_cache(opensea_slug, rank_provider)[ str(token_id) ] = rank diff --git a/open_rarity/resolver/testset_resolver.py b/open_rarity/resolver/testset_resolver.py index b18c7b5..ebe1c61 100644 --- a/open_rarity/resolver/testset_resolver.py +++ b/open_rarity/resolver/testset_resolver.py @@ -74,6 +74,12 @@ default=True, help="Whether we use local data files to cache external trait + rank data", ) +parser.add_argument( + "--filename", + dest="filename", + default="test_collections.json", + help="File in /data folder containing collections to resolve.", +) @dataclass @@ -580,5 +586,5 @@ def serialize_to_csv( resolve_collection_data( resolve_remote_rarity, use_cache=args.cache_fetched_data, - filename="test_bayc.json", + filename=args.filename, ) From 5ed4ea3d6d50c7e22eb53c83a145e694dc454f73 Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Wed, 5 Oct 2022 10:59:35 -0700 Subject: [PATCH 16/17] bump up package version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7567ae0..3cb156e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "open-rarity" -version = "0.5.0-beta" +version = "0.5.1-beta" description = "Open-Rarity library is an open standard that provides an easy, explanable and reproducible computation for NFT rarity" authors = ["Dan Meshkov ", "Vicky Gong "] license = "Apache-2.0" From 8b6e0dce218056a18fdab02d496efc161465d4ed Mon Sep 17 00:00:00 2001 From: vickygos <93538907+vickygos@users.noreply.github.com> Date: Wed, 5 Oct 2022 11:02:39 -0700 Subject: [PATCH 17/17] undo test collections json --- open_rarity/data/test_collections.json | 264 ++++++++++++++++--------- 1 file changed, 172 insertions(+), 92 deletions(-) diff --git a/open_rarity/data/test_collections.json b/open_rarity/data/test_collections.json index e42c1ba..701598d 100644 --- a/open_rarity/data/test_collections.json +++ b/open_rarity/data/test_collections.json @@ -1,94 +1,174 @@ [ - { - "collection_name": "Creature World", - "collection_slug": "creatureworld" - }, - { - "collection_name": "Phanta Bear", - "collection_slug": "creatureworld" - }, - { - "collection_name": "3 Landers", - "collection_slug": "3landers" - }, - { - "collection_name": "Lazy Lions", - "collection_slug": "lazy-lions" - }, - { - "collection_name": "Genesis Creepz", - "collection_slug": "genesis-creepz" - }, - { - "collection_name": "Kawmi", - "collection_slug": "kiwami-genesis" - }, - { - "collection_name": "Degentoonz", - "collection_slug": "degentoonz-collection" - }, - { - "collection_name": "Doge Pound", - "collection_slug": "the-doge-pound" - }, - { - "collection_name": "Everai", - "collection_slug": "everai-heroes-duo" - }, - { - "collection_name": "Los Muertos World", - "collection_slug": "los-muertos-world" - }, - { - "collection_name": "Bonji", - "collection_slug": "boonjiproject" - }, - { - "collection_name": "fanggangnft", - "collection_slug": "fanggangnft" - }, - { - "collection_name": "deadheads", - "collection_slug": "deadheads" - }, - { - "collection_name": "wolf-game-farmer", - "collection_slug": "wolf-game-farmer" - }, - { - "collection_name": "yoloholiday", - "collection_slug": "yoloholiday" - }, - { - "collection_name": "the-weirdo-ghost-gang", - "collection_slug": "the-weirdo-ghost-gang" - }, - { - "collection_name": "woodies-generative", - "collection_slug": "woodies-generative" - }, - { - "collection_name": "nostalgia-key", - "collection_slug": "nostalgia-key" - }, - { - "collection_name": "y00ts-yacht-club", - "collection_slug": "y00ts-yacht-club" - }, - { - "collection_name": "50yearsofatari", - "collection_slug": "50yearsofatari" - }, - { - "collection_name": "ctomgkirby", - "collection_slug": "ctomgkirby" - }, - { - "collection_name": "proofofpepe", - "collection_slug": "proofofpepe" - }, - { - "collection_name": "fat-rat-mafia", - "collection_slug": "fat-rat-mafia" - } + { + "collection_name": "Cool Cats", + "collection_slug": "cool-cats-nft" + }, + { + "collection_name": "Azuki", + "collection_slug": "azuki" + }, + { + "collection_name": "Bored Ape Yacht Club", + "collection_slug": "boredapeyachtclub" + }, + { + "collection_name": "Moonbirds", + "collection_slug": "proof-moonbirds" + }, + { + "collection_name": "Invisible Friends", + "collection_slug": "invisiblefriends" + }, + { + "collection_name": "Mutant Ape Yacht Club", + "collection_slug": "mutant-ape-yacht-club" + }, + { + "collection_name": "Doodles", + "collection_slug": "doodles-official" + }, + { + "collection_name": "goblintown.wtf", + "collection_slug": "goblintownwtf" + }, + { + "collection_name": "Mfers", + "collection_slug": "mfers" + }, + { + "collection_name": "Meebits", + "collection_slug": "meebits" + }, + { + "collection_name": "World of Women", + "collection_slug": "world-of-women-nft" + }, + { + "collection_name": "Moonbirds", + "collection_slug": "moonbirds-oddities" + }, + { + "collection_name": "Clonex", + "collection_slug": "clonex" + }, + { + "collection_name": "Beanz", + "collection_slug": "beanzofficial" + }, + { + "collection_name": "PudgyPenguins", + "collection_slug": "pudgypenguins" + }, + { + "collection_name": "Fidenza", + "collection_slug": "fidenza-by-tyler-hobbs" + }, + { + "collection_name": "PXN: Ghost Division", + "collection_slug": "pxnghostdivision" + }, + { + "collection_name": "Karafuru", + "collection_slug": "karafuru" + }, + { + "collection_name": "Hashmasks", + "collection_slug": "hashmasks" + }, + { + "collection_name": "FLUF World", + "collection_slug": "fluf" + }, + { + "collection_name": "Creature World", + "collection_slug": "creatureworld" + }, + { + "collection_name": "Phanta Bear", + "collection_slug": "creatureworld" + }, + { + "collection_name": "3 Landers", + "collection_slug": "3landers" + }, + { + "collection_name": "Lazy Lions", + "collection_slug": "lazy-lions" + }, + { + "collection_name": "Genesis Creepz", + "collection_slug": "genesis-creepz" + }, + { + "collection_name": "Kawmi", + "collection_slug": "kiwami-genesis" + }, + { + "collection_name": "Degentoonz", + "collection_slug": "degentoonz-collection" + }, + { + "collection_name": "Doge Pound", + "collection_slug": "the-doge-pound" + }, + { + "collection_name": "Everai", + "collection_slug": "everai-heroes-duo" + }, + { + "collection_name": "Los Muertos World", + "collection_slug": "los-muertos-world" + }, + { + "collection_name": "Bonji", + "collection_slug": "boonjiproject" + }, + { + "collection_name": "fanggangnft", + "collection_slug": "fanggangnft" + }, + { + "collection_name": "deadheads", + "collection_slug": "deadheads" + }, + { + "collection_name": "wolf-game-farmer", + "collection_slug": "wolf-game-farmer" + }, + { + "collection_name": "yoloholiday", + "collection_slug": "yoloholiday" + }, + { + "collection_name": "the-weirdo-ghost-gang", + "collection_slug": "the-weirdo-ghost-gang" + }, + { + "collection_name": "woodies-generative", + "collection_slug": "woodies-generative" + }, + { + "collection_name": "nostalgia-key", + "collection_slug": "nostalgia-key" + }, + { + "collection_name": "y00ts-yacht-club", + "collection_slug": "y00ts-yacht-club" + }, + { + "collection_name": "50yearsofatari", + "collection_slug": "50yearsofatari" + }, + { + "collection_name": "ctomgkirby", + "collection_slug": "ctomgkirby" + }, + { + "collection_name": "proofofpepe", + "collection_slug": "proofofpepe" + }, + { + "collection_name": "fat-rat-mafia", + "collection_slug": "fat-rat-mafia" + } ]